From ea7fcc7f67a28fb19597f9da6ff9d8bc6c9e549e Mon Sep 17 00:00:00 2001 From: ashfame Date: Mon, 6 Jan 2025 12:31:17 +0400 Subject: [PATCH 1/3] Release 2.0.0 --- README.md | 2 +- composer.json | 2 +- openid-connect-server.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4cc51f1..445ca62 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ - Tested up to: 6.5 - Requires PHP: 7.4 - License: [GPLv2](http://www.gnu.org/licenses/gpl-2.0.html) -- Stable tag: 1.3.4 +- Stable tag: 2.0.0 - GitHub Plugin URI: https://github.com/Automattic/wp-openid-connect-server Use OpenID Connect to log in to other webservices using your own WordPress. diff --git a/composer.json b/composer.json index 8410c4c..251e6f7 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "version": "1.3.4", + "version": "2.0.0", "require": { "ext-json": "*", "ext-openssl": "*", diff --git a/openid-connect-server.php b/openid-connect-server.php index e8d94b4..10ba44d 100644 --- a/openid-connect-server.php +++ b/openid-connect-server.php @@ -3,7 +3,7 @@ * Plugin Name: OpenID Connect Server * Plugin URI: https://github.com/Automattic/wp-openid-connect-server * Description: Use OpenID Connect to log in to other webservices using your own WordPress. - * Version: 1.3.4 + * Version: 2.0.0 * Requires at least: 6.0 * Requires PHP: 7.4 * Author: WordPress.Org Community From 1c56e6b1d24d72046ab54fa7571a0f2e2d5c940f Mon Sep 17 00:00:00 2001 From: ashfame Date: Mon, 6 Jan 2025 14:29:24 +0400 Subject: [PATCH 2/3] add changelog --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 445ca62..8b63e19 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,14 @@ You can report any issues you encounter directly on [Github repo: Automattic/wp- ## Changelog +### 2.0.0 + +- Make client_id and client_secret optional for the token endpoint [#116](https://github.com/Automattic/wp-openid-connect-server/pull/116) props @lart2150 +- Update expected args specs for token endpoint as per OIDC spec [#117](https://github.com/Automattic/wp-openid-connect-server/pull/117) +- [Breaking] Add a configuration option to support clients that don't require consent [#118](https://github.com/Automattic/wp-openid-connect-server/pull/118) props @lart2150 + ### 1.3.4 + - Add the autoloader to the uninstall script [#111](https://github.com/Automattic/wp-openid-connect-server/pull/111) props @MariaMozgunova ### 1.3.3 From 7477394475bf7382261433141ceef19a724f7b0f Mon Sep 17 00:00:00 2001 From: ashfame Date: Mon, 6 Jan 2025 14:31:32 +0400 Subject: [PATCH 3/3] highlight breaking change in changelog first --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8b63e19..e33a7e7 100644 --- a/README.md +++ b/README.md @@ -77,9 +77,9 @@ You can report any issues you encounter directly on [Github repo: Automattic/wp- ### 2.0.0 +- [Breaking] Add a configuration option to support clients that don't require consent [#118](https://github.com/Automattic/wp-openid-connect-server/pull/118) props @lart2150 - Make client_id and client_secret optional for the token endpoint [#116](https://github.com/Automattic/wp-openid-connect-server/pull/116) props @lart2150 - Update expected args specs for token endpoint as per OIDC spec [#117](https://github.com/Automattic/wp-openid-connect-server/pull/117) -- [Breaking] Add a configuration option to support clients that don't require consent [#118](https://github.com/Automattic/wp-openid-connect-server/pull/118) props @lart2150 ### 1.3.4