Skip to content

Commit

Permalink
release: v2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jrchamp committed Aug 27, 2021
1 parent 00fcd60 commit e3311f2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: shibboleth, authentication, login, saml
Requires at least: 4.0
Tested up to: 5.8
Requires PHP: 5.6
Stable tag: 2.3
Stable tag: 2.4

Allows WordPress to externalize user authentication and account creation to a Shibboleth Service Provider.

Expand Down Expand Up @@ -197,6 +197,12 @@ This update brings with it a major change to the way Shibboleth attributes are a
This update brings with it a major change to the way Shibboleth attributes are accessed. For most users, no additional configuration will be necessary. If you are using a specialized server configuration, such as a Shibboleth Service Provider on a reverse proxy or a server configuration that results in environment variables being sent with the prefix REDIRECT_, you should see the changelog for additional details: https://wordpress.org/plugins/shibboleth/#developers

== Changelog ==
= version 2.4 (2021-08-27) =
- Added hooks for hopefully rare cases where user overrides are necessary; thanks @dsXLII [#74](https://github.com/michaelryanmcneill/shibboleth/issues/74)
- Better login form support for WordPress 5.3; thanks @jakeparis [#76](https://github.com/michaelryanmcneill/shibboleth/issues/76)
- Spelling fixes; thanks @junaidkbr [#72](https://github.com/michaelryanmcneill/shibboleth/pull/72)
- General cleanup to better align with the WordPress Coding Standards [#80](https://github.com/michaelryanmcneill/shibboleth/pull/80)

= version 2.3 (2020-08-17) =
- Implementing a fallback option for the "Shibboleth Attribute Access Method". For example, if your web server returns redirected environment variables, but occasionally returns standard environment variables, you would want to enable this option.
- Removing deprecated `create_function()` from use.
Expand Down
4 changes: 2 additions & 2 deletions shibboleth.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Plugin URI: https://wordpress.org/plugins/shibboleth/
* Description: Easily externalize user authentication to a <a href="https://www.incommon.org/software/shibboleth/">Shibboleth</a> Service Provider
* Author: Michael McNeill, mitcho (Michael 芳貴 Erlewine), Will Norris
* Version: 2.3
* Version: 2.4
* Requires PHP: 5.6
* Requires at least: 4.0
* License: Apache 2 (https://www.apache.org/licenses/LICENSE-2.0.html)
Expand All @@ -18,7 +18,7 @@

define( 'SHIBBOLETH_MINIMUM_WP_VERSION', '4.0' );
define( 'SHIBBOLETH_MINIMUM_PHP_VERSION', '5.6' );
define( 'SHIBBOLETH_PLUGIN_VERSION', '2.3' );
define( 'SHIBBOLETH_PLUGIN_VERSION', '2.4' );

/**
* Determine if this is a new install or upgrade and, if so, run the
Expand Down

0 comments on commit e3311f2

Please sign in to comment.