Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #911 +/- ##
==========================================
- Coverage 79.18% 4.52% -74.66%
==========================================
Files 458 1779 +1321
Lines 5932 68079 +62147
Branches 278 4078 +3800
==========================================
- Hits 4697 3080 -1617
- Misses 1140 64884 +63744
- Partials 95 115 +20
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This was referenced Feb 4, 2026
Merged
This was referenced Apr 2, 2026
This was referenced Apr 12, 2026
This was referenced Apr 20, 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.
Changes
This PR introduces v8 of the Management API SDK, a major version update that represents a complete modernization of the SDK architecture and developer experience.
What's New:
OpenAPI-Generated SDK: The Management API SDK is now generated from Auth0's OpenAPI specifications using Fern, ensuring consistency, accuracy, and easier maintenance going forward.
Automatic Token Management: Introduced a new
ManagementClientwrapper that handles token acquisition and refresh automatically using client credentials, eliminating the need for manual token management.Improved Type Safety: All API operations now use strongly typed request and response models with proper validation and clear naming conventions (
*RequestContent,*ResponseContent,*RequestParameters).Better Organization: API operations are now organized into logical hierarchical sub-clients (e.g.,
client.Users.Permissions,client.Users.Roles,client.Organizations.Members) for better discoverability and cleaner code.Enhanced Exception Handling: Unified exception hierarchy based on
ManagementApiExceptionwith specific exception types for different HTTP status codes (NotFoundError,BadRequestError,TooManyRequestsError, etc.).New Features:
.WithRawResponse()for accessing status codes, headers, and other HTTP metadataOptional<T>type for distinguishing between undefined and explicitly null values in PATCH operationsMigration Support: Comprehensive migration guide (
V8_MIGRATION_GUIDE.md) with side-by-side examples and detailed mappings from v7 to v8.Breaking Changes:
This is a major version with breaking changes to client initialization, request/response types, method signatures, and exception handling. All existing v7 Management API code will require updates to work with v8.
The Authentication API (
Auth0.AuthenticationApi) remains unchanged and fully compatible.References
Please include relevant links supporting this change such as a:
Testing
Please describe how this can be tested by reviewers. Be specific about anything not tested and reasons why. If this library has unit and/or integration testing, tests should be added for new functionality and existing tests should complete without errors.
This change adds unit test coverage
This change adds integration test coverage
This change has been tested on the latest version of the platform/language or why not
Checklist
I have read the Auth0 general contribution guidelines
I have read the Auth0 Code of Conduct
All existing and new tests complete without errors