From d9d9551bbd2a5fd20e426e3cee4a0860f8cefebf Mon Sep 17 00:00:00 2001 From: Daniel Bachhuber Date: Tue, 12 Oct 2021 10:31:39 -0700 Subject: [PATCH 1/2] Update README for v1.2.6 --- README.md | 5 ++++- readme.txt | 5 ++++- wp-saml-auth.php | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0ef4748..0e8d950 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ **Tags:** authentication, SAML **Requires at least:** 4.4 **Tested up to:** 5.8 -**Stable tag:** 1.2.5 +**Stable tag:** 1.2.6 **License:** GPLv2 or later **License URI:** http://www.gnu.org/licenses/gpl-2.0.html @@ -277,6 +277,9 @@ There is no third step. Because SimpleSAMLphp loads WordPress, which has WP Nati ## Changelog ## +### 1.2.6 (October 12, 2021) ### +* Adds a `wp_saml_auth_login_parameters` filter to allow login parameters to be filtered [[#262](https://github.com/pantheon-systems/wp-saml-auth/pull/262)]. + ### 1.2.5 (August 18, 2021) ### * Fixes undefined index notice introduced in 1.2.4 [[#257](https://github.com/pantheon-systems/wp-saml-auth/pull/257)]. diff --git a/readme.txt b/readme.txt index be21112..bc6171b 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: getpantheon, danielbachhuber, Outlandish Josh Tags: authentication, SAML Requires at least: 4.4 Tested up to: 5.8 -Stable tag: 1.2.5 +Stable tag: 1.2.6 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -277,6 +277,9 @@ There is no third step. Because SimpleSAMLphp loads WordPress, which has WP Nati == Changelog == += 1.2.6 (October 12, 2021) = +* Adds a `wp_saml_auth_login_parameters` filter to allow login parameters to be filtered [[#262](https://github.com/pantheon-systems/wp-saml-auth/pull/262)]. + = 1.2.5 (August 18, 2021) = * Fixes undefined index notice introduced in 1.2.4 [[#257](https://github.com/pantheon-systems/wp-saml-auth/pull/257)]. diff --git a/wp-saml-auth.php b/wp-saml-auth.php index 19d5f7e..4779175 100644 --- a/wp-saml-auth.php +++ b/wp-saml-auth.php @@ -1,7 +1,7 @@ Date: Tue, 12 Oct 2021 10:34:26 -0700 Subject: [PATCH 2/2] Fix linting issue --- inc/class-wp-saml-auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/class-wp-saml-auth.php b/inc/class-wp-saml-auth.php index 6e94fe2..db2bce8 100644 --- a/inc/class-wp-saml-auth.php +++ b/inc/class-wp-saml-auth.php @@ -286,7 +286,7 @@ function() use ( $redirect_to ) { /** * Allows login parameters to be customized. * - * @param array $parameters + * @param array $parameters */ $parameters = apply_filters( 'wp_saml_auth_login_parameters', array() );