From 99929607525fbed7393f7d00bcf4e668f6278c6d Mon Sep 17 00:00:00 2001 From: Jonathan Daggerhart Date: Wed, 23 Nov 2016 09:51:21 -0500 Subject: [PATCH] updating plugin version and readme files --- openid-connect-generic.php | 5 +++-- readme.md | 10 ++++++++++ readme.txt | 9 +++++++++ 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/openid-connect-generic.php b/openid-connect-generic.php index 07775c4..ac3a7d6 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.0.6 +Version: 3.0.9 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.0.3'; + const VERSION = '3.0.9'; // plugin settings private $settings; @@ -184,6 +184,7 @@ class OpenID_Connect_Generic { 'endpoint_login' => '', 'endpoint_userinfo' => '', 'endpoint_token' => '', + 'endpoint_end_session' => '', // non-standard settings 'no_sslverify' => 0, diff --git a/readme.md b/readme.md index 3130064..4426ae8 100644 --- a/readme.md +++ b/readme.md @@ -32,6 +32,16 @@ by this client is like so: `https://example.com/wp-admin/admin-ajax.php?action= Replace `example.com` with your domain name and path to WordPress. ### Changelog + +**3.0.9** +* Feature: Refresh tokens +* Feature: Integrated logout support with end_session endpoint +* 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 + **3.0.8** * 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. diff --git a/readme.txt b/readme.txt index aaca4ea..3f4fc3f 100644 --- a/readme.txt +++ b/readme.txt @@ -39,6 +39,15 @@ Replace `example.com` with your domain name and path to WordPress. == Changelog == += 3.0.9 = +* Feature: Refresh tokens +* Feature: Integrated logout support with end_session endpoint +* 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 + = 3.0.8 = * 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.