Skip to content

Commit cf53efe

Browse files
committed
Release 5.2.1
1 parent 1325f56 commit cf53efe

File tree

2 files changed

+23
-16
lines changed

2 files changed

+23
-16
lines changed

CHANGELOG.md

+20-13
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
# Change Log
22

3-
## [5.2.0](https://github.com/auth0/wp-auth0/tree/5.1.0) (2023-12-11)
3+
## [5.2.1](https://github.com/auth0/wp-auth0/tree/5.2.1) (2024-06-03)
4+
5+
### Fixed
6+
7+
- Resolves an issue in which the fallback URI secret isn't shown. [\#903](https://github.com/auth0/wordpress/pull/903) ([HPiirainen](https://github.com/HPiirainen))
8+
- Resolves a compatibility issue with changes in WordPress 6.5 causing invalidated sessions. ([evansims](https://github.com/evansims))
9+
10+
## [5.2.0](https://github.com/auth0/wp-auth0/tree/5.2.0) (2023-12-11)
411

512
### Added
613

7-
- feat(SDK-4734): Implement support for Back-Channel Logout [\#882](https://github.com/auth0/wordpress/pull/882) ([evansims](https://github.com/evansims))
14+
- feat(SDK-4734): Implement support for Back-Channel Logout [\#882](https://github.com/auth0/wordpress/pull/882) ([evansims](https://github.com/evansims))
815

916
> **Note**
1017
> ¹ To use this feature, an Auth0 tenant must have support for it enabled.
@@ -13,13 +20,13 @@
1320

1421
### Added
1522

16-
- Organization Name support was added for Authentication API and token handling ¹
23+
- Organization Name support was added for Authentication API and token handling ¹
1724

1825
### Updated
1926

20-
- Bumped tested WordPress version to forthcoming 6.3.0 release.
21-
- Bumped `auth0-php` dependency version range to `^8.7`.
22-
- Updated telemetry to indicate `wordpress` package (previously `wp-auth0`.)
27+
- Bumped tested WordPress version to forthcoming 6.3.0 release.
28+
- Bumped `auth0-php` dependency version range to `^8.7`.
29+
- Updated telemetry to indicate `wordpress` package (previously `wp-auth0`.)
2330

2431
> **Note**
2532
> ¹ To use this feature, an Auth0 tenant must have support for it enabled. This feature is not yet available to all tenants.
@@ -28,18 +35,18 @@
2835

2936
### Fixed
3037

31-
- Resolves an issue that sometimes prevented the plugin from being activated on WordPress 6
38+
- Resolves an issue that sometimes prevented the plugin from being activated on WordPress 6
3239

3340
## [5.0.0](https://github.com/auth0/wp-auth0/tree/5.0.0) (2022-10-28)
3441

3542
Introducing V5 of WP-Auth0 ("Login by Auth0"), a major redesign and upgrade to our WordPress integration plugin. V5 includes many new features and changes:
3643

37-
- [WordPress 6](https://wordpress.org/support/wordpress-version/version-6-0/) and [PHP 8](https://www.php.net/releases/8.0/en.php) support
38-
- Integration with the [Auth0-PHP SDK](https://github.com/auth0/auth0-php), and access to its entire API (including Management API calls)
39-
High-performance background sync using [WordPress' Cron](https://developer.wordpress.org/plugins/cron/) feature
40-
- "Flexible identifier" support, allowing users to sign in using multiple connection types without requiring extra configuration
41-
- Expanded control over how sign-ins without matching existing WordPress accounts are handled
42-
- Enhanced session pairing between WordPress and Auth0, including session invalidation, access token refresh, and more.
44+
- [WordPress 6](https://wordpress.org/support/wordpress-version/version-6-0/) and [PHP 8](https://www.php.net/releases/8.0/en.php) support
45+
- Integration with the [Auth0-PHP SDK](https://github.com/auth0/auth0-php), and access to its entire API (including Management API calls)
46+
High-performance background sync using [WordPress' Cron](https://developer.wordpress.org/plugins/cron/) feature
47+
- "Flexible identifier" support, allowing users to sign in using multiple connection types without requiring extra configuration
48+
- Expanded control over how sign-ins without matching existing WordPress accounts are handled
49+
- Enhanced session pairing between WordPress and Auth0, including session invalidation, access token refresh, and more.
4350

4451
V5 represents a major step forward for our WordPress plugin, and we're excited to see what you build with it!
4552

wpAuth0.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
* Plugin Name: Auth0
55
* Plugin URL: https://github.com/auth0/wordpress
66
* Description: Supercharge your WordPress website with Auth0. Improve account security, add support for multifactor, enable social, passwordless and enterprise connections, and much more.
7-
* Version: 5.2.0
7+
* Version: 5.2.1
88
* Requires at least: 6.0
99
* Tested up to: 6.5.3
10-
* Stable tag: 5.2.0
10+
* Stable tag: 5.2.1
1111
* Requires PHP: 8.1
1212
* Author: Auth0
1313
* Author URI: https://auth0.com
@@ -23,7 +23,7 @@
2323
use Auth0\SDK\Auth0 as Sdk;
2424
use Auth0\SDK\Configuration\SdkConfiguration as Configuration;
2525

26-
define('WP_AUTH0_VERSION', '5.2.0');
26+
define('WP_AUTH0_VERSION', '5.2.1');
2727

2828
// Require loading through WordPress
2929
if (! defined('ABSPATH')) {

0 commit comments

Comments
 (0)