Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.0.0
6.1.0
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <support@auth0.com>"]
Expand Down
Loading