Release 6.0.0-beta.0 - #961
Merged
Merged
Conversation
nandan-bhat
approved these changes
Aug 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🚀 What's New
This release makes the Auth0 WordPress plugin compatible with auth0-php v9. The plugin's login flow uses the Authentication API, which is unchanged in v9, so authentication requires no changes. The migration is confined to the Management API surface used by background user sync.
✨ Highlights
getManagement()accessor -Plugin::getManagement()returns a v9ManagementClientbuilt from your existing plugin configuration (Domain, Client ID, Client Secret), with automatic client credentials token management and caching. It is also available as$this->getManagement()from action and filter classes$management->users->list()), and built-inPager<T>pagination🔄 What's Changed
The Authentication surface is completely unchanged. Login, logout, callback, and session handling work exactly as before.
The Management API entry point has changed for any custom code that calls it:
wpAuth0()->getSdk()->management()wpAuth0()->getManagement()->users()->getAll()->users->list()ListUsersRequestParameters)ResponseInterface+HttpResponse::decodeContent()$user->getEmail())HttpResponsePaginatorforeach ($pager as $user)📦 Installation
This beta is distributed as a signed zip on the GitHub release, not through the WordPress.org plugin directory. Download
Auth0_WordPress_6.0.0-beta.0.zipfrom the release assets and upload it via Plugins → Add New → Upload Plugin in wp-admin. It is also resolvable through Composer:auth0/auth0-phpdependency from^8.19to^9.08.1to8.2getSdk()->management()is non-functional with auth0-php v9. Use the newgetManagement()accessor instead📚 Resources
🙏 Feedback
This is a beta release - we would love your feedback! Please open an issue if you encounter any problems or have suggestions.