Skip to content

Commit 112bc51

Browse files
Release 6.0.0-beta.0 (#961)
1 parent 47a985d commit 112bc51

3 files changed

Lines changed: 28 additions & 4 deletions

File tree

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.6.1
1+
6.0.0-beta.0

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Change Log
22

3+
## [6.0.0-beta.0](https://github.com/auth0/wp-auth0/tree/6.0.0-beta.0) (2026-08-07)
4+
[Full Changelog](https://github.com/auth0/wp-auth0/compare/5.6.1...6.0.0-beta.0)
5+
6+
This is a pre-release for the upcoming 6.x major. It moves the plugin onto auth0-php v9, which rewrites the Management API. The authentication flow is unchanged, and the migration is confined to the Management API surface used by background user sync.
7+
8+
**Breaking Changes**
9+
10+
- Bumped the `auth0/auth0-php` dependency from `^8.19` to `^9.0`, which rewrites the Management API
11+
- Raised the minimum PHP version from `8.1` to `8.2`
12+
- `getSdk()->management()` is non-functional with auth0-php v9 and throws a `TypeError`. Use the new `getManagement()` accessor instead
13+
14+
**Added**
15+
16+
- `Plugin::getManagement()` accessor returning a v9 `ManagementClient` built from the existing plugin configuration, with automatic client credentials token management and caching
17+
- `UPGRADING.md` 5.x to 6.x migration guide
18+
19+
**Fixed**
20+
21+
- Background user sync now retries transient Management API failures (429, 5xx) on the next cron pass instead of dropping the queued event
22+
23+
**Unchanged**
24+
25+
- The authentication flow (login, logout, callback, session handling) behaves exactly as in 5.x
26+
327
## [5.6.1](https://github.com/auth0/wp-auth0/tree/5.6.1) (2026-05-05)
428

529
### Fixed

wpAuth0.php

Lines changed: 3 additions & 3 deletions
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.6.1
7+
* Version: 6.0.0-beta.0
88
* Requires at least: 6.0
99
* Tested up to: 7.0
10-
* Stable tag: 5.6.1
10+
* Stable tag: 6.0.0-beta.0
1111
* Requires PHP: 8.2
1212
* Author: Auth0
1313
* Author URI: https://auth0.com
@@ -22,7 +22,7 @@
2222
use Auth0\SDK\Auth0 as Sdk;
2323
use Auth0\SDK\Configuration\SdkConfiguration as Configuration;
2424

25-
define('WP_AUTH0_VERSION', '5.6.1');
25+
define('WP_AUTH0_VERSION', '6.0.0-beta.0');
2626

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

0 commit comments

Comments
 (0)