From ef6fac4e41e86c53e159be9f1c81dfff1978af3b Mon Sep 17 00:00:00 2001 From: Jonathan Daggerhart Date: Tue, 29 May 2018 20:52:15 -0400 Subject: [PATCH] version update along with readmes. new composer.json to place on packagist --- changelog.md | 13 +++++++++++++ composer.json | 25 +++++++++++++++++++++++++ openid-connect-generic.php | 4 ++-- readme.txt | 7 +++++++ 4 files changed, 47 insertions(+), 2 deletions(-) create mode 100644 composer.json diff --git a/changelog.md b/changelog.md index 3e92c2e..9a16b93 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..c93337b --- /dev/null +++ b/composer.json @@ -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", + } +} diff --git a/openid-connect-generic.php b/openid-connect-generic.php index b8a4d73..29d7a62 100644 --- a/openid-connect-generic.php +++ b/openid-connect-generic.php @@ -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; diff --git a/readme.txt b/readme.txt index 44b6608..ffae0c2 100644 --- a/readme.txt +++ b/readme.txt @@ -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.