version update along with readmes. new composer.json to place on packagist

isekai
Jonathan Daggerhart 7 years ago
parent f3096b6f14
commit ef6fac4e41

@ -1,6 +1,19 @@
# OpenId Connect Generic Changelog
**3.4.0**
* Feature: @drzraf - New filter hook: ability to filter claim and derived user data before user creation.
* Feature: @anttileppa - State time limit can now be changed on the settings page.
* Fix: @drzraf - Fix PHP notice when using traditional login, $token_response may be empty.
* Fix: @drzraf - Fixed a notice when cookie does not contain expected redirect_url
**3.3.1**
* Prefixing classes for more efficient autoloading.
* Avoid altering global wp_remote_post() parameters.
* Minor metadata updates for wp.org
**3.3.0**
* Fix: @pjeby - Handle multiple user sessions better by using the `WP_Session_Tokens` object. Predecessor to fixes for multiple other issues: #49, #50, #51

@ -0,0 +1,25 @@
{
"name": "daggerhart/openid-connect-generic-wordpress",
"type": "wordpress-plugin",
"license": "GPL",
"description": "",
"homepage": "https://github.com/daggerhart/openid-connect-generic",
"authors": [
{
"name": "Jonathan Daggerhart",
"email": "jonathan@daggerhart.com",
"homepage": "https://github.com/daggerhart"
}
],
"keywords": [
"wordpress",
"openid"
],
"support": {
"issues": "https://github.com/daggerhart/openid-connect-generic/issues"
},
"require": {
"php": ">=5.3.3",
"composer/installers": "~1.0",
}
}

@ -3,7 +3,7 @@
Plugin Name: OpenID Connect Generic
Plugin URI: https://github.com/daggerhart/openid-connect-generic
Description: Connect to an OpenID Connect generic client using Authorization Code Flow
Version: 3.3.1
Version: 3.4.0
Author: daggerhart
Author URI: http://www.daggerhart.com
License: GPLv2 Copyright (c) 2015 daggerhart
@ -41,7 +41,7 @@ Notes
class OpenID_Connect_Generic {
// plugin version
const VERSION = '3.3.1';
const VERSION = '3.4.0';
// plugin settings
private $settings;

@ -39,6 +39,13 @@ Replace `example.com` with your domain name and path to WordPress.
== Changelog ==
= 3.4.0 =
* Feature: @drzraf - New filter hook: ability to filter claim and derived user data before user creation.
* Feature: @anttileppa - State time limit can now be changed on the settings page.
* Fix: @drzraf - Fix PHP notice when using traditional login, $token_response may be empty.
* Fix: @drzraf - Fixed a notice when cookie does not contain expected redirect_url
= 3.3.1 =
* Prefixing classes for more efficient autoloading.

Loading…
Cancel
Save