From b8ad2dd5604416b96eafa5f40e3ba48f7470195b Mon Sep 17 00:00:00 2001 From: Jonathan Daggerhart Date: Wed, 19 Apr 2017 16:22:45 -0400 Subject: [PATCH] updating version and readmes --- openid-connect-generic.php | 4 ++-- readme.md | 34 +++++++++++++++++++--------------- readme.txt | 7 ++++++- 3 files changed, 27 insertions(+), 18 deletions(-) diff --git a/openid-connect-generic.php b/openid-connect-generic.php index d6437d3..84ea43f 100644 --- a/openid-connect-generic.php +++ b/openid-connect-generic.php @@ -3,7 +3,7 @@ Plugin Name: OpenID Connect - Generic Client Plugin URI: https://github.com/daggerhart/openid-connect-generic Description: Connect to an OpenID Connect identity provider with Authorization Code Flow -Version: 3.1.0 +Version: 3.2.0 Author: daggerhart Author URI: http://www.daggerhart.com License: GPLv2 Copyright (c) 2015 daggerhart @@ -39,7 +39,7 @@ Notes class OpenID_Connect_Generic { // plugin version - const VERSION = '3.1.0'; + const VERSION = '3.2.0'; // plugin settings private $settings; diff --git a/readme.md b/readme.md index f014648..c1686d2 100644 --- a/readme.md +++ b/readme.md @@ -37,37 +37,41 @@ Replace `example.com` with your domain name and path to WordPress. ### Changelog +**3.2.0** +* Feature: #27 Determine the WP_User display name with replacement tokens on the settings page. Tokens can be any property of the user_claim. +* Bug fix: #30 Provide port to the request header when requesting the user_claim + **3.1.0** -* Feature: Refresh tokens -* Feature: Integrated logout support with end_session endpoint -* Feature: May use an alternate redirect_uri that doesn't rely on admin-ajax -* Feature: Support for IDP behind reverse proxy -* Bug fix: case insensitive check for Bearer token -* Bug fix: "redirect to origin when auto-sso" cookie issue -* Bug fix: PHP Warnings headers already sent due to attempts to redirect and set cookies during login form message -* Bug fix: expire session when access_token expires if no refresh token found -* UX fix: Show login button on error redirect when using auto-sso +* Feature: #18 Refresh tokens +* Feature: #24 Integrated logout support with end_session endpoint +* Feature: #14 May use an alternate redirect_uri that doesn't rely on admin-ajax +* Feature: #25 Support for IDP behind reverse proxy +* Bug fix: #17 case insensitive check for Bearer token +* Bug fix: #20 "redirect to origin when auto-sso" cookie issue +* Bug fix: #12 PHP Warnings headers already sent due to attempts to redirect and set cookies during login form message +* Bug fix: #22 expire session when access_token expires if no refresh token found +* UX fix: #20 Show login button on error redirect when using auto-sso **3.0.8** -* Added [openid-connect-generic-update-user-using-current-claim] action hook allowing other plugins/themes +* Feature: #10 Added `openid-connect-generic-update-user-using-current-claim` action hook allowing other plugins/themes to take action using the fresh claims received when an existing user logs in. **3.0.7** -* When requesting userinfo, send the access token using the Authorization header field as recommended in +* Bug fix: #9 When requesting userinfo, send the access token using the Authorization header field as recommended in section 5.3.1 of the specs. **3.0.6** -* If "Link Existing Users" is enabled, allow users who login with OpenID Connect to also log in with WordPress credentials +* Bug fix: #8 If "Link Existing Users" is enabled, allow users who login with OpenID Connect to also log in with WordPress credentials **3.0.5** -* Added [openid_connect_generic_login_button] shortcode to allow the login button to be placed anywhere -* Added setting to "Redirect Back to Origin Page" after a successful login instead of redirecting to the home page. +* Feature: #6 Added [openid_connect_generic_login_button] shortcode to allow the login button to be placed anywhere +* Feature: #6 Added setting to "Redirect Back to Origin Page" after a successful login instead of redirecting to the home page. **3.0.4** -* Added setting to allow linking existing WordPress user accounts with newly-authenticated OpenID Connect login +* Feature: #5 Added setting to allow linking existing WordPress user accounts with newly-authenticated OpenID Connect login **3.0.3** diff --git a/readme.txt b/readme.txt index 3a893f3..e20ec19 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: daggerhart Donate link: http://www.daggerhart.com/ Tags: security, login, oauth2, openidconnect, apps, authentication, autologin, sso Requires at least: 4 -Tested up to: 4.6.1 +Tested up to: 4.7.3 Stable tag: trunk License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -43,6 +43,11 @@ Replace `example.com` with your domain name and path to WordPress. == Changelog == + += 3.2.0 = +* Feature: Determine the WP_User display name with replacement tokens on the settings page. Tokens can be any property of the user_claim. @moriyoshi +* Bug fix: Provide port to the request header when requesting the user_claim + = 3.1.0 = * Feature: Refresh tokens * Feature: Integrated logout support with end_session endpoint