From d541b21bc9c19b6a7e0ffd9cd5293598d1bd4d06 Mon Sep 17 00:00:00 2001 From: Snehil Kishore Date: Mon, 30 Mar 2026 16:47:19 +0530 Subject: [PATCH 1/2] Release 5.2.0 --- .version | 2 +- CHANGELOG.md | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.version b/.version index acf69b48..7cbea073 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -5.1.0 \ No newline at end of file +5.2.0 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 3214334c..4bf78499 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## [5.2.0](https://github.com/auth0/auth0-python/tree/5.2.0) (2026-03-30) +[Full Changelog](https://github.com/auth0/auth0-python/compare/5.1.0...5.2.0) + +**Added** +- chore: Update ruff, aiohttp, cryptography, urllib3, codecov-action; drop Python 3.8; replace Snyk with SCA scan [\#808](https://github.com/auth0/auth0-python/pull/808) ([kishore7snehil](https://github.com/kishore7snehil)) +- feat: Add default domain endpoints, connection key provisioning, tenant SCIM listing; remove MiiCard/Renren providers [\#801](https://github.com/auth0/auth0-python/pull/801) ([fern-api[bot]](https://github.com/apps/fern-api)) +- feat: Add client_info support for custom telemetry in Authentication and Management clients [\#802](https://github.com/auth0/auth0-python/pull/802) ([kishore7snehil](https://github.com/kishore7snehil)) + +**Fixed** +- feat+fix: Pagination fix, SDK logging, OAuth1/DPoP types [\#785](https://github.com/auth0/auth0-python/pull/785) ([fern-api[bot]](https://github.com/apps/fern-api)) + ## [5.1.0](https://github.com/auth0/auth0-python/tree/5.1.0) (2026-02-11) [Full Changelog](https://github.com/auth0/auth0-python/compare/5.0.0...5.1.0) From 16aa22a63382d4f38f83b95b4e695bd21271e6e2 Mon Sep 17 00:00:00 2001 From: Snehil Kishore Date: Mon, 30 Mar 2026 17:00:32 +0530 Subject: [PATCH 2/2] chore: Update CHANGELOG for Python 3.8 support drop, SDK logging addition, and pagination fix --- CHANGELOG.md | 10 ++++++++-- pyproject.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bf78499..8dbe4a77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,19 @@ ## [5.2.0](https://github.com/auth0/auth0-python/tree/5.2.0) (2026-03-30) [Full Changelog](https://github.com/auth0/auth0-python/compare/5.1.0...5.2.0) +**⚠️ Breaking: Python 3.8 support dropped** +- Python 3.8 reached end-of-life in October 2024. This release requires **Python >=3.9.2**. Users on Python 3.8 should remain on v5.1.0 until they upgrade their Python version. [\#808](https://github.com/auth0/auth0-python/pull/808) ([kishore7snehil](https://github.com/kishore7snehil)) + **Added** -- chore: Update ruff, aiohttp, cryptography, urllib3, codecov-action; drop Python 3.8; replace Snyk with SCA scan [\#808](https://github.com/auth0/auth0-python/pull/808) ([kishore7snehil](https://github.com/kishore7snehil)) - feat: Add default domain endpoints, connection key provisioning, tenant SCIM listing; remove MiiCard/Renren providers [\#801](https://github.com/auth0/auth0-python/pull/801) ([fern-api[bot]](https://github.com/apps/fern-api)) - feat: Add client_info support for custom telemetry in Authentication and Management clients [\#802](https://github.com/auth0/auth0-python/pull/802) ([kishore7snehil](https://github.com/kishore7snehil)) +- feat: Add SDK logging infrastructure with configurable log levels and header redaction [\#785](https://github.com/auth0/auth0-python/pull/785) ([fern-api[bot]](https://github.com/apps/fern-api)) **Fixed** -- feat+fix: Pagination fix, SDK logging, OAuth1/DPoP types [\#785](https://github.com/auth0/auth0-python/pull/785) ([fern-api[bot]](https://github.com/apps/fern-api)) +- fix: Pagination page advancement incorrectly skipping pages [\#785](https://github.com/auth0/auth0-python/pull/785) ([fern-api[bot]](https://github.com/apps/fern-api)) + +**Changed** +- chore: Update ruff, aiohttp, cryptography, urllib3, codecov-action; replace Snyk with SCA scan [\#808](https://github.com/auth0/auth0-python/pull/808) ([kishore7snehil](https://github.com/kishore7snehil)) ## [5.1.0](https://github.com/auth0/auth0-python/tree/5.1.0) (2026-02-11) [Full Changelog](https://github.com/auth0/auth0-python/compare/5.0.0...5.1.0) diff --git a/pyproject.toml b/pyproject.toml index eaf60569..6c663ae1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "auth0-python" [tool.poetry] name = "auth0-python" -version = "5.1.0" +version = "5.2.0" description = "Auth0 Python SDK - Management and Authentication APIs" readme = "README.md" authors = ["Auth0 "]