Skip to content

Commit

Permalink
release: v2.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jrchamp committed Oct 31, 2023
1 parent d64dd2b commit cc1acc4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
10 changes: 6 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
=== Shibboleth ===
Contributors: michaelryanmcneill, willnorris, mitchoyoshitaka, jrchamp, dericcrago, bshelton229, Alhrath, dandalpiaz
Contributors: michaelryanmcneill, willnorris, mitchoyoshitaka, jrchamp, dericcrago, bshelton229, Alhrath, dandalpiaz, masteradhoc, junaidkbr
Tags: shibboleth, authentication, login, saml
Requires at least: 4.0
Tested up to: 6.3
Tested up to: 6.4
Requires PHP: 5.6
Stable tag: 2.4.2
Stable tag: 2.4.3

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

Expand Down Expand Up @@ -197,8 +197,10 @@ 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.3 (not yet released) =
= version 2.4.3 (2023-10-31) =
- Compatibility: Check for Shibboleth username instead of Shib-Session-ID; thanks @spfncer [#97](https://github.com/michaelryanmcneill/shibboleth/pull/97)
- CI: Update GitHub Action workflows and code for WordPress coding standard v3 [#94](https://github.com/michaelryanmcneill/shibboleth/pull/94)
- Cleanup: Reduced duplication via a logging helper function [#95](https://github.com/michaelryanmcneill/shibboleth/pull/95)

= version 2.4.2 (2023-04-07) =
- Documentation: Updated Shibboleth documentation external links [#92](https://github.com/michaelryanmcneill/shibboleth/pull/92)
Expand Down
7 changes: 4 additions & 3 deletions shibboleth.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
* Plugin Name: Shibboleth
* 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.4.2
* Author: Michael McNeill, Jonathan Champ, Michael Erlewine, Will Norris
* Version: 2.4.3
* 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.4.2' );
define( 'SHIBBOLETH_PLUGIN_VERSION', '2.4.3' );

/**
* Determine if this is a new install or upgrade and, if so, run the
Expand Down Expand Up @@ -552,6 +552,7 @@ function shibboleth_session_initiator_url( $redirect = null ) {
*
* @param string $message_type Message type.
* @param string $message Message.
* @since 2.4.3
*/
function shibboleth_log_message( $message_type, $message ) {
static $shib_logging;
Expand Down

0 comments on commit cc1acc4

Please sign in to comment.