Release v6.0.0 - #784
Merged
Merged
Conversation
kailash-b
approved these changes
Aug 13, 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 marks a major milestone for the Auth0 Ruby SDK. The Management API client has been completely rewritten using the Fern code generation tool, built directly from the Auth0 OpenAPI specification. This delivers complete, always-up-to-date API coverage with full type safety. The Authentication API is ported from v5 and maintains full feature parity.
✨ Highlights
eachAuth0::Clienthandles the OAuth 2.0 client credentials grant, token caching, and a newtoken_provideroption for supplying tokens from an external sourceAuth0::Errors::NotFoundError, etc.) instead of returning error hashesbin/,test/,spec/,features/are excluded), reducing package size and scanner false positives🔄 What's Changed
The Management API has breaking changes:
Auth0Client.new(...)Auth0::Client.new(...)(aliasAuth0Clientretained)client.users(per_page: 10)client.users.list(per_page: 10)client.user('auth0|123')client.users.get(id: 'auth0|123')client.get_user_roles(user_id)client.users.roles.list(id:)user.email)rescue Auth0::Errors::NotFoundErrorapi_version: 2rest-clientnet/http(built-in)>= 2.5>= 3.3The Authentication API is unchanged - code written against it in v5 works in v6 with no changes.
📦 Installation
🔧 Quick Start
📚 Resources