Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Change Log

## [1.0.0-beta.0](https://github.com/auth0/aspnetcore-api/tree/1.0.0-beta.0) (2025-11-20)

### Installation
```bash
dotnet add package Auth0.AspNetCore.Authentication.Api
```

### Usage
```csharp
builder.Services.AddAuth0ApiAuthentication(options =>
{
options.Domain = builder.Configuration["Auth0:Domain"];
options.JwtBearerOptions = new JwtBearerOptions
{
Audience = builder.Configuration["Auth0:Audience"]
};
});
```

### Added
- JWT Bearer authentication with Auth0-specific configuration
- Built-in DPoP (RFC 9449) support with three enforcement modes: `Allowed`, `Required`, `Disabled`
- Fluent configuration API via `AddAuth0ApiAuthentication()` and `WithDPoP()`
- Comprehensive documentation with examples and migration guide
- Playground application with Postman collection

### Dependencies
- `Microsoft.AspNetCore.Authentication.JwtBearer` 8.0.21
- `Microsoft.Extensions.Logging.Abstractions` 8.0.0
- Target framework: .NET 8.0+


2 changes: 1 addition & 1 deletion build/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</PropertyGroup>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>0.0.0</Version>
<Version>1.0.0-beta.0</Version>
</PropertyGroup>
<PropertyGroup>
<AssemblyVersion>$(Version)</AssemblyVersion>
Expand Down
Loading