File tree Expand file tree Collapse file tree 3 files changed +36
-2
lines changed Expand file tree Collapse file tree 3 files changed +36
-2
lines changed Original file line number Diff line number Diff line change 1- 1.0.0-beta.0
1+ 1.0.0-beta.1
Original file line number Diff line number Diff line change 1+ # Change Log
2+
3+ ## [ 1.0.0-beta.1] ( https://github.com/auth0/aspnetcore-api/tree/1.0.0-beta.1 ) (2025-11-20)
4+
5+ ### Installation
6+ ``` bash
7+ dotnet add package Auth0.AspNetCore.Authentication.Api
8+ ```
9+
10+ ### Usage
11+ ``` csharp
12+ builder .Services .AddAuth0ApiAuthentication (options =>
13+ {
14+ options .Domain = builder .Configuration [" Auth0:Domain" ];
15+ options .JwtBearerOptions = new JwtBearerOptions
16+ {
17+ Audience = builder .Configuration [" Auth0:Audience" ]
18+ };
19+ });
20+ ```
21+
22+ ### Added
23+ - JWT Bearer authentication with Auth0-specific configuration
24+ - Built-in DPoP (RFC 9449) support with three enforcement modes: ` Allowed ` , ` Required ` , ` Disabled `
25+ - Fluent configuration API via ` AddAuth0ApiAuthentication() ` and ` WithDPoP() `
26+ - Comprehensive documentation with examples and migration guide
27+ - Playground application with Postman collection
28+
29+ ### Dependencies
30+ - ` Microsoft.AspNetCore.Authentication.JwtBearer ` 8.0.21
31+ - ` Microsoft.Extensions.Logging.Abstractions ` 8.0.0
32+ - Target framework: .NET 8.0+
33+
34+
Original file line number Diff line number Diff line change 2020 </PropertyGroup >
2121 <PropertyGroup >
2222 <LangVersion >latest</LangVersion >
23- <Version >0 .0.0</Version >
23+ <Version >1 .0.0-beta.1 </Version >
2424 </PropertyGroup >
2525 <PropertyGroup >
2626 <AssemblyVersion >$(Version)</AssemblyVersion >
You can’t perform that action at this time.
0 commit comments