From 32b2ce248e5d16c93cbd26a713f47b1358012ff3 Mon Sep 17 00:00:00 2001 From: Sourav Basu Date: Wed, 22 Jul 2026 17:45:56 +0530 Subject: [PATCH 1/2] Release changes --- .version | 2 +- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.version b/.version index f4965a31..358e78e6 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -6.0.0 \ No newline at end of file +6.1.0 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 70b03299..3d865e06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## [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) + +**Added** +- feat: Cross App Access (ID-JAG) support on connections — new optional `cross_app_access_resource_app` param on `connections.create()` / `connections.update()` (`CreateCrossAppAccessResourceApp` / `UpdateCrossAppAccessResourceApp`, `{status: "enabled" | "disabled"}`), and a `cross_app_access_resource_app` field (`ConnectionCrossAppAccessResourceApp` / `CrossAppAccessResourceApp`, plus `ConnectionCrossAppAccessResourceAppStatusEnum` / `CrossAppAccessResourceAppStatusEnum`) on `ConnectionResponseContentOidc`, `CreateConnectionRequestContentOidc`, `UpdateConnectionRequestContentOidc`, `ConnectionForList`, and the create/get/update connection response types [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) +- feat: ID-JAG exchange support on clients — new optional `identity_assertion_authorization_grant` param on `clients.create()` / `clients.update()` (`CreateIdentityAssertionAuthorizationGrant` / `UpdateIdentityAssertionAuthorizationGrant`, `{active: bool}`), and an `identity_assertion_authorization_grant` field (`IdentityAssertionAuthorizationGrant`) on the `Client` response and create/get/update client response types [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) +- feat: branding theme identifiers — new optional `identifiers` param (`BrandingThemeIdentifiers`) on `branding.themes.create()` / `branding.themes.update()`, with `BrandingThemeIdentifiersLoginDisplayEnum`, `BrandingThemeIdentifiersPhoneDisplay`, `BrandingThemeIdentifiersPhoneDisplayFormattingEnum`, and `BrandingThemeIdentifiersPhoneDisplayMaskingEnum`; also present on the create/get/get-default/update branding theme response types [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) +- feat: Self-Service Enterprise Configuration third-party client access — new optional `third_party_client_access_config` param (`ThirdPartyClientAccessConfig`, `{allow_configuration: bool}`) on `self_service_profiles.sso_ticket.create()` [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) +- feat: delegated-session actor — new optional `actor` field (`SessionActorMetadata`, `{sub: str}` plus up to 5 additional primitive claims; `SessionActorClaimValue = Union[str, bool, float]`) added to `SessionResponseContent`, `GetSessionResponseContent`, and `UpdateSessionResponseContent` [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) +- feat: suspicious-IP throttling for custom token exchange — new optional `pre_custom_token_exchange` field (serialized as `pre-custom-token-exchange`, `SuspiciousIpThrottlingPreCustomTokenExchangeStage`, `{max_attempts?: int, rate?: int}`) added to `SuspiciousIpThrottlingStage` [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) +- feat: `ClientGrantSubjectTypeEnum` gains `"anonymous_user"`; `ClientAppTypeEnum` gains `"b2b_integration"` (additive enum values, backward-compatible) [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) + ## [6.0.0](https://github.com/auth0/auth0-python/tree/6.0.0) (2026-07-15) [Full Changelog](https://github.com/auth0/auth0-python/compare/5.8.0...6.0.0) diff --git a/pyproject.toml b/pyproject.toml index 8c937281..362d0cb7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "auth0-python" [tool.poetry] name = "auth0-python" -version = "6.0.0" +version = "6.1.0" description = "Auth0 Python SDK - Management and Authentication APIs" readme = "README.md" authors = ["Auth0 "] From efd1d36ee7aca66d3d2b8f4c29b4270da49d9937 Mon Sep 17 00:00:00 2001 From: Sourav Basu Date: Wed, 22 Jul 2026 18:33:16 +0530 Subject: [PATCH 2/2] Reverted changelog to previous convention --- CHANGELOG.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d865e06..09a38aed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,8 @@ [Full Changelog](https://github.com/auth0/auth0-python/compare/6.0.0...6.1.0) **Added** -- feat: Cross App Access (ID-JAG) support on connections — new optional `cross_app_access_resource_app` param on `connections.create()` / `connections.update()` (`CreateCrossAppAccessResourceApp` / `UpdateCrossAppAccessResourceApp`, `{status: "enabled" | "disabled"}`), and a `cross_app_access_resource_app` field (`ConnectionCrossAppAccessResourceApp` / `CrossAppAccessResourceApp`, plus `ConnectionCrossAppAccessResourceAppStatusEnum` / `CrossAppAccessResourceAppStatusEnum`) on `ConnectionResponseContentOidc`, `CreateConnectionRequestContentOidc`, `UpdateConnectionRequestContentOidc`, `ConnectionForList`, and the create/get/update connection response types [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) -- feat: ID-JAG exchange support on clients — new optional `identity_assertion_authorization_grant` param on `clients.create()` / `clients.update()` (`CreateIdentityAssertionAuthorizationGrant` / `UpdateIdentityAssertionAuthorizationGrant`, `{active: bool}`), and an `identity_assertion_authorization_grant` field (`IdentityAssertionAuthorizationGrant`) on the `Client` response and create/get/update client response types [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) -- feat: branding theme identifiers — new optional `identifiers` param (`BrandingThemeIdentifiers`) on `branding.themes.create()` / `branding.themes.update()`, with `BrandingThemeIdentifiersLoginDisplayEnum`, `BrandingThemeIdentifiersPhoneDisplay`, `BrandingThemeIdentifiersPhoneDisplayFormattingEnum`, and `BrandingThemeIdentifiersPhoneDisplayMaskingEnum`; also present on the create/get/get-default/update branding theme response types [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) -- feat: Self-Service Enterprise Configuration third-party client access — new optional `third_party_client_access_config` param (`ThirdPartyClientAccessConfig`, `{allow_configuration: bool}`) on `self_service_profiles.sso_ticket.create()` [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) -- feat: delegated-session actor — new optional `actor` field (`SessionActorMetadata`, `{sub: str}` plus up to 5 additional primitive claims; `SessionActorClaimValue = Union[str, bool, float]`) added to `SessionResponseContent`, `GetSessionResponseContent`, and `UpdateSessionResponseContent` [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) -- feat: suspicious-IP throttling for custom token exchange — new optional `pre_custom_token_exchange` field (serialized as `pre-custom-token-exchange`, `SuspiciousIpThrottlingPreCustomTokenExchangeStage`, `{max_attempts?: int, rate?: int}`) added to `SuspiciousIpThrottlingStage` [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) -- feat: `ClientGrantSubjectTypeEnum` gains `"anonymous_user"`; `ClientAppTypeEnum` gains `"b2b_integration"` (additive enum values, backward-compatible) [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) +- feat: Cross App Access (ID-JAG), branding theme identifiers, Self-Service Enterprise Configuration third-party client access, session actor [\#877](https://github.com/auth0/auth0-python/pull/877) ([fern-api[bot]](https://github.com/apps/fern-api)) + ## [6.0.0](https://github.com/auth0/auth0-python/tree/6.0.0) (2026-07-15) [Full Changelog](https://github.com/auth0/auth0-python/compare/5.8.0...6.0.0)