Skip to content

Commit 01aae2d

Browse files
authored
Merge pull request #98 from jrchamp/release/v2.4.3
release: v2.4.3
2 parents d64dd2b + cc1acc4 commit 01aae2d

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

readme.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
=== Shibboleth ===
2-
Contributors: michaelryanmcneill, willnorris, mitchoyoshitaka, jrchamp, dericcrago, bshelton229, Alhrath, dandalpiaz
2+
Contributors: michaelryanmcneill, willnorris, mitchoyoshitaka, jrchamp, dericcrago, bshelton229, Alhrath, dandalpiaz, masteradhoc, junaidkbr
33
Tags: shibboleth, authentication, login, saml
44
Requires at least: 4.0
5-
Tested up to: 6.3
5+
Tested up to: 6.4
66
Requires PHP: 5.6
7-
Stable tag: 2.4.2
7+
Stable tag: 2.4.3
88

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

@@ -197,8 +197,10 @@ This update brings with it a major change to the way Shibboleth attributes are a
197197
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
198198

199199
== Changelog ==
200-
= version 2.4.3 (not yet released) =
200+
= version 2.4.3 (2023-10-31) =
201+
- Compatibility: Check for Shibboleth username instead of Shib-Session-ID; thanks @spfncer [#97](https://github.com/michaelryanmcneill/shibboleth/pull/97)
201202
- CI: Update GitHub Action workflows and code for WordPress coding standard v3 [#94](https://github.com/michaelryanmcneill/shibboleth/pull/94)
203+
- Cleanup: Reduced duplication via a logging helper function [#95](https://github.com/michaelryanmcneill/shibboleth/pull/95)
202204

203205
= version 2.4.2 (2023-04-07) =
204206
- Documentation: Updated Shibboleth documentation external links [#92](https://github.com/michaelryanmcneill/shibboleth/pull/92)

shibboleth.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* Plugin Name: Shibboleth
99
* Plugin URI: https://wordpress.org/plugins/shibboleth/
1010
* Description: Easily externalize user authentication to a <a href="https://www.incommon.org/software/shibboleth/">Shibboleth</a> Service Provider
11-
* Author: Michael McNeill, mitcho (Michael 芳貴 Erlewine), Will Norris
12-
* Version: 2.4.2
11+
* Author: Michael McNeill, Jonathan Champ, Michael Erlewine, Will Norris
12+
* Version: 2.4.3
1313
* Requires PHP: 5.6
1414
* Requires at least: 4.0
1515
* License: Apache 2 (https://www.apache.org/licenses/LICENSE-2.0.html)
@@ -18,7 +18,7 @@
1818

1919
define( 'SHIBBOLETH_MINIMUM_WP_VERSION', '4.0' );
2020
define( 'SHIBBOLETH_MINIMUM_PHP_VERSION', '5.6' );
21-
define( 'SHIBBOLETH_PLUGIN_VERSION', '2.4.2' );
21+
define( 'SHIBBOLETH_PLUGIN_VERSION', '2.4.3' );
2222

2323
/**
2424
* Determine if this is a new install or upgrade and, if so, run the
@@ -552,6 +552,7 @@ function shibboleth_session_initiator_url( $redirect = null ) {
552552
*
553553
* @param string $message_type Message type.
554554
* @param string $message Message.
555+
* @since 2.4.3
555556
*/
556557
function shibboleth_log_message( $message_type, $message ) {
557558
static $shib_logging;

0 commit comments

Comments
 (0)