Skip to content

Commit

Permalink
Release 5.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Jun 4, 2024
1 parent 1325f56 commit cf53efe
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 16 deletions.
33 changes: 20 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# Change Log

## [5.2.0](https://github.com/auth0/wp-auth0/tree/5.1.0) (2023-12-11)
## [5.2.1](https://github.com/auth0/wp-auth0/tree/5.2.1) (2024-06-03)

### Fixed

- 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))
- Resolves a compatibility issue with changes in WordPress 6.5 causing invalidated sessions. ([evansims](https://github.com/evansims))

## [5.2.0](https://github.com/auth0/wp-auth0/tree/5.2.0) (2023-12-11)

### Added

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

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

### Added

- Organization Name support was added for Authentication API and token handling ¹
- Organization Name support was added for Authentication API and token handling ¹

### Updated

- Bumped tested WordPress version to forthcoming 6.3.0 release.
- Bumped `auth0-php` dependency version range to `^8.7`.
- Updated telemetry to indicate `wordpress` package (previously `wp-auth0`.)
- Bumped tested WordPress version to forthcoming 6.3.0 release.
- Bumped `auth0-php` dependency version range to `^8.7`.
- Updated telemetry to indicate `wordpress` package (previously `wp-auth0`.)

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

### Fixed

- Resolves an issue that sometimes prevented the plugin from being activated on WordPress 6
- Resolves an issue that sometimes prevented the plugin from being activated on WordPress 6

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

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:

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

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

Expand Down
6 changes: 3 additions & 3 deletions wpAuth0.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
* Plugin Name: Auth0
* Plugin URL: https://github.com/auth0/wordpress
* Description: Supercharge your WordPress website with Auth0. Improve account security, add support for multifactor, enable social, passwordless and enterprise connections, and much more.
* Version: 5.2.0
* Version: 5.2.1
* Requires at least: 6.0
* Tested up to: 6.5.3
* Stable tag: 5.2.0
* Stable tag: 5.2.1
* Requires PHP: 8.1
* Author: Auth0
* Author URI: https://auth0.com
Expand All @@ -23,7 +23,7 @@
use Auth0\SDK\Auth0 as Sdk;
use Auth0\SDK\Configuration\SdkConfiguration as Configuration;

define('WP_AUTH0_VERSION', '5.2.0');
define('WP_AUTH0_VERSION', '5.2.1');

// Require loading through WordPress
if (! defined('ABSPATH')) {
Expand Down

0 comments on commit cf53efe

Please sign in to comment.