Release 1.0.0#76
Merged
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #76 +/- ##
=======================================
Coverage 92.50% 92.50%
=======================================
Files 29 29
Lines 1427 1427
Branches 163 163
=======================================
Hits 1320 1320
Misses 76 76
Partials 31 31 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
pmathew92
approved these changes
Jun 29, 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.
First general availability (GA) release of
Auth0.AspNetCore.Authentication.Api— a production-ready library for securing ASP.NET Core APIs with Auth0-issued tokens. It provides everything the standardMicrosoft.AspNetCore.Authentication.JwtBearerpackage offers, with first-class Auth0 configuration, built-in DPoP, and Multiple Custom Domains support, in a single dependency.Highlights
Microsoft.AspNetCore.Authentication.JwtBearer. All standard options, events, validation, and authorization policies continue to work unchanged..WithDPoP()call. Three enforcement modes:Allowed(default),Required, andDisabled..WithCustomDomains(), with static or dynamic (runtime) domain resolution, automatic OIDC/JWKS discovery, in-memory caching, and issuer validation before any network call.DomainandAudiencedirectly, bind from anIConfigurationSection(appsettings.json, environment variables), or customize the underlying JWT Bearer pipeline via theconfigureJwtBearercallback.Domain, missing audience, or unsupportedEventsTypeusage are caught at startup with clear error messages.Getting Started
See the README, EXAMPLES.md, and MIGRATION.md for full documentation.
Changes since
1.0.0-beta.6Security
Notable changes during the beta cycle
If you are upgrading from an earlier
1.0.0-beta.*release, please review the breaking changes introduced in1.0.0-beta.6below — most notably:Auth0ApiOptions.JwtBearerOptionswas removed in favor of a first-classAudienceproperty.configureJwtBearercallback, and directIConfigurationSectionbinding was added.WithDPoP(...)no longer accepts an authentication scheme argument.