updating plugin version and readme files

isekai
Jonathan Daggerhart 8 years ago
parent 37579f7a90
commit 9992960752

@ -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,

@ -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.

@ -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.

Loading…
Cancel
Save