From 9a1c83fbb20b5487b4c27afd8f217d8bb0649f15 Mon Sep 17 00:00:00 2001 From: Sourav Basu Date: Wed, 20 May 2026 21:13:08 +0530 Subject: [PATCH] Create release branch v5.5.0 --- .version | 2 +- CHANGELOG.md | 16 ++++++++++++++++ pyproject.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/.version b/.version index 1e20ec35..c7ba1e87 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -5.4.0 \ No newline at end of file +5.5.0 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 025b7318..db36d021 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## [5.5.0](https://github.com/auth0/auth0-python/tree/5.5.0) (2026-05-20) +[Full Changelog](https://github.com/auth0/auth0-python/compare/5.4.0...5.5.0) + +**⚠️ Breaking: Python 3.9 support dropped** +- Python 3.9 reached end-of-life in October 2025. This release requires **Python >=3.10**. Users on Python 3.9 should remain on v5.4.0 until they upgrade their Python version. [\#843](https://github.com/auth0/auth0-python/pull/843) ([developerkunal](https://github.com/developerkunal)) + +**Added** +- feat: configurable max_retries parameter to Auth0 and AsyncAuth0 clients (defaults to 2 with exponential backoff) [\#841](https://github.com/auth0/auth0-python/pull/841) ([fern-api[bot]](https://github.com/apps/fern-api)) +- feat: New error types: BadRequestSchema, ForbiddenSchema, UnauthorizedSchema, TooManyRequestsSchema [\#841](https://github.com/auth0/auth0-python/pull/841) ([fern-api[bot]](https://github.com/apps/fern-api)) +- feat: New types: FedCmLogin, FedCmLoginGoogle, CredentialDeviceTypeEnum [\#841](https://github.com/auth0/auth0-python/pull/841) ([fern-api[bot]](https://github.com/apps/fern-api)) +- Extended user_authentication_method and resource_server response types with additional fields [\#841](https://github.com/auth0/auth0-python/pull/841) ([fern-api[bot]](https://github.com/apps/fern-api)) +- Expanded clients, refresh_tokens, resource_servers, tickets, and users/authentication_methods endpoint parameters + +**Changed** +- Updated connection types with additional validation fields [\#841](https://github.com/auth0/auth0-python/pull/841) ([fern-api[bot]](https://github.com/apps/fern-api)) + ## [5.4.0](https://github.com/auth0/auth0-python/tree/5.4.0) (2026-05-04) [Full Changelog](https://github.com/auth0/auth0-python/compare/5.3.0...5.4.0) diff --git a/pyproject.toml b/pyproject.toml index 680efe06..7c21505f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "auth0-python" [tool.poetry] name = "auth0-python" -version = "5.4.0" +version = "5.5.0" description = "Auth0 Python SDK - Management and Authentication APIs" readme = "README.md" authors = ["Auth0 "]