Skip to content
Merged
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
3 changes: 2 additions & 1 deletion .shiprc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"files": {
".version": []
".version": [],
"pyproject.toml": ["version = \"{MAJOR}.{MINOR}.{PATCH}{PRERELEASE_LABEL}{PRERELEASE_COUNTER}\""]
},
"prefixVersion": false
}
12 changes: 6 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# Change Log

## [1.0.0.b7](https://github.com/auth0/auth0-api-python/tree/1.0.0b7) (2026-04-02)
## [1.0.0b7](https://github.com/auth0/auth0-api-python/tree/1.0.0b7) (2026-04-02)
[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0b6...1.0.0b7)

**Changed**
- chore: bump ada-url for Python 3.14, update deps, and fix CI [\#73](https://github.com/auth0/auth0-api-python/pull/73) ([kishore7snehil](https://github.com/kishore7snehil))

## [1.0.0.b6](https://github.com/auth0/auth0-api-python/tree/1.0.0b6) (2025-10-29)
## [1.0.0b6](https://github.com/auth0/auth0-api-python/tree/1.0.0b6) (2025-10-29)
[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0b5...1.0.0b6)

**Added**
- feat: Add Custom Token Exchange support (RFC 8693) [\#51](https://github.com/auth0/auth0-api-python/pull/51) ([btiernay](https://github.com/btiernay))

## [1.0.0.b5](https://github.com/auth0/auth0-api-python/tree/1.0.0.b5) (2025-09-11)
[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0.b4...1.0.0.b5)
## [1.0.0b5](https://github.com/auth0/auth0-api-python/tree/1.0.0b5) (2025-09-11)
[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0b4...1.0.0b5)

**Added**
- feat: Add token vault subject_token_type access_token to api sdk [\#28](https://github.com/auth0/auth0-api-python/pull/28) ([adamjmcgrath](https://github.com/adamjmcgrath))

## [1.0.0.b4](https://github.com/auth0/auth0-api-python/tree/1.0.0.b4) (2025-08-28)
[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0.b3...1.0.0.b4)
## [1.0.0b4](https://github.com/auth0/auth0-api-python/tree/1.0.0b4) (2025-08-28)
[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0b3...1.0.0b4)

**Added**
- feat: add DPoP support [\#16](https://github.com/auth0/auth0-api-python/pull/16) ([kishore7snehil](https://github.com/kishore7snehil))
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,6 @@ If the token lacks `my_custom_claim` or fails any standard check (issuer mismatc

### 6. DPoP Authentication

> [!NOTE]
> This feature is currently available in [Early Access](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access). Please reach out to Auth0 support to get it enabled for your tenant.

This library supports **DPoP (Demonstrating Proof-of-Possession)** for enhanced security, allowing clients to prove possession of private keys bound to access tokens.

#### Allowed Mode (Default)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "auth0-api-python"
version = "1.0.0.b7"
version = "1.0.0b7"
description = "SDK for verifying access tokens and securing APIs with Auth0, using Authlib."
authors = ["Auth0 <support@auth0.com>"]
license = "MIT"
Expand Down
Loading