Skip to content

Commit 9ba6116

Browse files
committed
Release 1.0.0-beta.1
1 parent b016202 commit 9ba6116

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0-beta.0
1+
1.0.0-beta.1

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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+

build/common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
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>

0 commit comments

Comments
 (0)