From 5a2ecd0c7b117e635b36ca1f3954ba56e4ef7729 Mon Sep 17 00:00:00 2001 From: Sourav Basu Date: Wed, 5 Aug 2026 15:37:52 +0530 Subject: [PATCH 1/3] Release 6.2.0 --- .version | 2 +- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.version b/.version index 358e78e6..4ac4fded 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -6.1.0 \ No newline at end of file +6.2.0 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 09a38aed..04ce09fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## [6.2.0](https://github.com/auth0/auth0-python/tree/6.2.0) (2026-08-05) +[Full Changelog](https://github.com/auth0/auth0-python/compare/6.1.0...6.2.0) + +⚠️ **Breaking Changes** +- `EventStreamCloudEvent.data` changed from `Optional[str]` to `Optional[Dict[str, Any]]` (new `EventStreamCloudEventData` type). Code that previously parsed `.data` as a JSON-encoded string (e.g. `json.loads(event.data)`) will now receive a dict directly [\#881](https://github.com/auth0/auth0-python/pull/881) ([fern-api[bot]](https://github.com/apps/fern-api)) + +**Added** +- feat: Add agents management, organization-client associations, organization-level roles (groups/members), network ACL keys, and directory provisioning group sync selections [\#881](https://github.com/auth0/auth0-python/pull/881) ([fern-api[bot]](https://github.com/apps/fern-api)) + +**Fixed** +- fix: `EventStreamCloudEvent.data` now deserializes as its actual object shape (`Dict[str, Any]`) instead of an opaque JSON-encoded string that callers had to `json.loads()` themselves. See Breaking Changes above for the migration impact [\#881](https://github.com/auth0/auth0-python/pull/881) ([fern-api[bot]](https://github.com/apps/fern-api)) + ## [6.1.0](https://github.com/auth0/auth0-python/tree/6.1.0) (2026-07-22) [Full Changelog](https://github.com/auth0/auth0-python/compare/6.0.0...6.1.0) diff --git a/pyproject.toml b/pyproject.toml index 362d0cb7..d0d956bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "auth0-python" [tool.poetry] name = "auth0-python" -version = "6.1.0" +version = "6.2.0" description = "Auth0 Python SDK - Management and Authentication APIs" readme = "README.md" authors = ["Auth0 "] From 9c058b3b62ef79df9a6b71c20a84ac375f70ed49 Mon Sep 17 00:00:00 2001 From: Sourav Basu Date: Wed, 5 Aug 2026 16:11:10 +0530 Subject: [PATCH 2/3] Updated changelog --- CHANGELOG.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04ce09fe..8272ba8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,14 +3,11 @@ ## [6.2.0](https://github.com/auth0/auth0-python/tree/6.2.0) (2026-08-05) [Full Changelog](https://github.com/auth0/auth0-python/compare/6.1.0...6.2.0) -⚠️ **Breaking Changes** -- `EventStreamCloudEvent.data` changed from `Optional[str]` to `Optional[Dict[str, Any]]` (new `EventStreamCloudEventData` type). Code that previously parsed `.data` as a JSON-encoded string (e.g. `json.loads(event.data)`) will now receive a dict directly [\#881](https://github.com/auth0/auth0-python/pull/881) ([fern-api[bot]](https://github.com/apps/fern-api)) - **Added** - feat: Add agents management, organization-client associations, organization-level roles (groups/members), network ACL keys, and directory provisioning group sync selections [\#881](https://github.com/auth0/auth0-python/pull/881) ([fern-api[bot]](https://github.com/apps/fern-api)) **Fixed** -- fix: `EventStreamCloudEvent.data` now deserializes as its actual object shape (`Dict[str, Any]`) instead of an opaque JSON-encoded string that callers had to `json.loads()` themselves. See Breaking Changes above for the migration impact [\#881](https://github.com/auth0/auth0-python/pull/881) ([fern-api[bot]](https://github.com/apps/fern-api)) +- fix: `EventStreamCloudEvent.data` now deserializes as its actual object shape (`Dict[str, Any]`) instead of an opaque JSON-encoded string that callers had to `json.loads()` themselves. ## [6.1.0](https://github.com/auth0/auth0-python/tree/6.1.0) (2026-07-22) [Full Changelog](https://github.com/auth0/auth0-python/compare/6.0.0...6.1.0) From 8df0219ef21f8db074c7594712d883621459878e Mon Sep 17 00:00:00 2001 From: Sourav Basu Date: Wed, 5 Aug 2026 16:16:57 +0530 Subject: [PATCH 3/3] Added missing PR reference to changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8272ba8f..f052acf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ - feat: Add agents management, organization-client associations, organization-level roles (groups/members), network ACL keys, and directory provisioning group sync selections [\#881](https://github.com/auth0/auth0-python/pull/881) ([fern-api[bot]](https://github.com/apps/fern-api)) **Fixed** -- fix: `EventStreamCloudEvent.data` now deserializes as its actual object shape (`Dict[str, Any]`) instead of an opaque JSON-encoded string that callers had to `json.loads()` themselves. +- fix: `EventStreamCloudEvent.data` now deserializes as its actual object shape (`Dict[str, Any]`) instead of an opaque JSON-encoded string that callers had to `json.loads()` themselves. [\#881](https://github.com/auth0/auth0-python/pull/881) ([fern-api[bot]](https://github.com/apps/fern-api)) ## [6.1.0](https://github.com/auth0/auth0-python/tree/6.1.0) (2026-07-22) [Full Changelog](https://github.com/auth0/auth0-python/compare/6.0.0...6.1.0)