Skip to content

Bump the auth0 group with 2 updates#245

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/src/auth0-11cf6765c4
Open

Bump the auth0 group with 2 updates#245
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/src/auth0-11cf6765c4

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 23, 2026

Copy link
Copy Markdown
Contributor

Updated Auth0.AuthenticationApi from 7.47.0 to 7.48.0.

Release notes

Sourced from Auth0.AuthenticationApi's releases.

7.48.0

Added

  • feat: Adds Token Vault support - exchange an Auth0 token for an access token issued by a federated connection (Google, Facebook, etc.) to call that provider's APIs on the user's behalf #​1064 (kailash-b)
  • feat: Adds Custom Token Exchange support - the OAuth 2.0 Token Exchange grant (RFC 8693), covering both access-token exchange and Session Transfer Token issuance #​1057 (kailash-b)
  • feat: Adds Multi-Resource Refresh Token (MRRT) support - exchange a single refresh token for access tokens targeting different APIs and/or broader scopes, with the granted scope surfaced on the response #​1056 (kailash-b)
  • feat: Phases out Newtonsoft.Json in favour of System.Text.Json across Auth0.Core and Auth0.AuthenticationApi (UserInfo.AdditionalClaims is now deprecated) #​1046 (kailash-b)

Security

  • deps: Bump Microsoft.IdentityModel.Protocols.OpenIdConnect and System.IdentityModel.Tokens.Jwt from 8.19.2 to 8.20.0 #​1075 (dependabot[bot])
  • deps: Bump Microsoft.IdentityModel.Protocols.OpenIdConnect & System.IdentityModel.Tokens.Jwt from 8.19.1 to 8.19.2 #​1070 (kailash-b)

Commits viewable in compare view.

Updated Auth0.ManagementApi from 8.6.0 to 9.1.0.

Release notes

Sourced from Auth0.ManagementApi's releases.

9.1.0

Added

  • Cross-App Access (resource-app side): Added CrossAppAccessResourceApp support to connections via CreateCrossAppAccessResourceApp / UpdateCrossAppAccessResourceApp request types, the ConnectionCrossAppAccessResourceApp response type, and the CrossAppAccessResourceAppStatusEnum / ConnectionCrossAppAccessResourceAppStatusEnum status enums. A CrossAppAccessResourceApp property is added to connection create/update requests and responses (CreateConnectionRequestContent, UpdateConnectionRequestContent, CreateConnectionRequestContentOidc, UpdateConnectionRequestContentOidc, ConnectionResponseContentOidc, ConnectionForList, and the connection response types), letting a connection act as the resource-app side of a Cross App Access relationship #​1072 (fern-api[bot])
  • Identity Assertion Authorization Grant (ID-JAG for Cross App Access): Added IdentityAssertionAuthorizationGrant type with CreateIdentityAssertionAuthorizationGrant / UpdateIdentityAssertionAuthorizationGrant request types, exposed as an IdentityAssertionAuthorizationGrant property on CreateClientRequestContent, UpdateClientRequestContent, and the Client response. When active, a client can exchange ID-JAGs for access tokens #​1072 (fern-api[bot])
  • Session Actor: Added SessionActorMetadata type and the SessionActorClaimValue union (string/bool/number), exposed as an Actor property on the session response types (GetSessionResponseContent, SessionResponseContent, UpdateSessionResponseContent) — represents the delegating party on delegated sessions (sub plus up to 5 additional primitive claims) #​1072 (fern-api[bot])
  • Self-Service Profiles: Added ThirdPartyClientAccessConfig type and a ThirdPartyClientAccessConfig property on CreateSelfServiceProfileSsoTicketRequestContent, controlling whether third-party apps can configure the connection as a domain-level connection during Self-Service Enterprise Configuration #​1072 (fern-api[bot])
  • Branding Themes: Added BrandingThemeIdentifiers type with login display, OTP autocomplete, and phone display formatting/masking enums (BrandingThemeIdentifiersLoginDisplayEnum, BrandingThemeIdentifiersPhoneDisplay, BrandingThemeIdentifiersPhoneDisplayFormattingEnum, BrandingThemeIdentifiersPhoneDisplayMaskingEnum), plus an Identifiers property on the theme create/update request and response types (CreateBrandingThemeRequestContent, UpdateBrandingThemeRequestContent, CreateBrandingThemeResponseContent, UpdateBrandingThemeResponseContent, GetBrandingThemeResponseContent, GetBrandingDefaultThemeResponseContent) #​1072 (fern-api[bot])
  • Attack Protection: Added SuspiciousIpThrottlingPreCustomTokenExchangeStage, added as a pre-custom-token-exchange stage on SuspiciousIpThrottlingStage #​1072 (fern-api[bot])
  • TenantDomain client option: Added ClientOptions.TenantDomain; when set without an explicit BaseUrl, ManagementApiClient derives BaseUrl as https://{TenantDomain}/api/v2. An explicit BaseUrl always takes precedence #​1072 (fern-api[bot])
  • Response decompression: Added gzip/deflate response decompression via a new DefaultHttpClientFactory #​1072 (fern-api[bot])

9.0.0

This is a major release. Please review the v8 → v9 Migration Guide before upgrading. The breaking changes below require source-level updates for affected consumers.

⚠️ BREAKING CHANGES

Removed API surface — #​1053 (fern-api[bot])

  • Federated Connections Tokensets removed: The entire client.Users.FederatedConnectionsTokensets sub-client (ListAsync, DeleteAsync), the FederatedConnectionsTokensetsClient / IFederatedConnectionsTokensetsClient types, and the FederatedConnectionTokenSet response model have been removed. The backing endpoints were deleted upstream.
  • FederatedConnectionsAccessTokens connection option removed: The property and its backing ConnectionFederatedConnectionsAccessTokens model have been removed from ConnectionOptionsAzureAd, ConnectionOptionsCommonOidc, ConnectionOptionsGoogleApps, ConnectionOptionsOidc, ConnectionOptionsOkta, ConnectionPropertiesOptions, and UpdateConnectionOptions.
  • OAuth scopes removed: OauthScope.ReadFederatedConnectionsTokens (read:federated_connections_tokens) and OauthScope.DeleteFederatedConnectionsTokens (delete:federated_connections_tokens).
  • Enum value removed: ClientSessionTransferDelegationDeviceBindingEnum.Asn ("asn"); only Ip remains.

Return-type & model changes — #​1043 (fern-api[bot])

  • DeleteAsync return type changed across the API from Task to WithRawResponseTask. await-ing the call still works; explicit Task-typed assignments must be updated.
  • Events.SubscribeAsync return type changed from IAsyncEnumerable<EventStreamSubscribeEventsResponseContent> to WithRawResponseStream<...> (adds streaming + transparent reconnection support). Direct await foreach still works; code that stored the result in an IAsyncEnumerable<...> variable must be updated.
  • ConnectionAttributeIdentifier removed and split into EmailAttributeIdentifier, PhoneAttributeIdentifier, and UsernameAttributeIdentifier. Callers constructing ConnectionAttributeIdentifier must switch to the type-specific class.
  • Retry-count semantics changed: the retry loop now performs up to MaxRetries + 1 total sends for retryable requests (previously initial send + MaxRetries). Review any code that depends on exact attempt counts.

Added

  • Organization Role Members: Added client.Organizations.Roles.Members.ListAsync(...) to list organization members assigned a specific role, backed by new RolesClient, MembersClient, RoleMember, and ListOrganizationRoleMembersRequestParameters types #​1043 (fern-api[bot])
  • Resumable SSE streaming: Added WithRawResponseStream<T> (dual-mode wrapper supporting await foreach over parsed values or .WithRawResponse() for response metadata) and SseReconnectHelper for transparent mid-stream reconnection via the Last-Event-ID header. RequestOptions / IRequestOptions gain MaxStreamReconnectAttempts and DisableStreamReconnection (apply only to resumable SSE streams) #​1043 (fern-api[bot])
  • Raw response on exceptions: ManagementApiException.RawResponse exposes the status code, URL, and headers of a failed request; all typed error subclasses (TooManyRequestsError, NotFoundError, etc.) now forward rawResponse and expose typed error bodies (TooManyRequestsErrorBody, NotFoundErrorBody) #​1043 (fern-api[bot])
  • Typed error and rate-limit details on exceptions: ManagementApiException gains ApiError, Description, ErrorCode, and RateLimit properties (parsed lazily and cached). New public types ApiError, RateLimit, QuotaLimit, ClientQuotaLimit, and OrganizationQuotaLimit surface structured error bodies and the x-ratelimit-*, retry-after, Auth0-Client-Quota-Limit, and Auth0-Organization-Quota-Limit headers without manual parsing. Because RateLimit lives on the base exception, any error type (not just 429s) can surface rate-limit/quota data when present. Parsing is defensive — malformed headers/bodies yield null rather than throwing #​1049 (kailash-b)
  • NetworkAclMatch.Auth0Managed: new optional auth0_managed property (IEnumerable<string>?) #​1053 (fern-api[bot])

Changed

  • Retry engine reworked (Core/RawClient.cs): each retry attempt now sends a fresh request clone (fixes HttpClient disposing request.Content under HTTP/2), MaxRetries is floored at 0, and CloneRequestAsync honors the CancellationToken on NET5_0_OR_GREATER #​1043 (fern-api[bot])
  • Widespread SDK regeneration by Fern (fernapi/fern-csharp-sdk 2.72.1) across resource clients (Actions, Branding, Clients, Connections, CustomDomains, EventStreams, Flows, Forms, Organizations, and others), reference.md, and Page/Pager helpers, with customer customizations preserved #​1043 (fern-api[bot])
  • Added a v8 → v9 migration guidance doc describing what changed, what breaks, and how to migrate #​1050 (kailash-b)

Security

  • Bumped System.IdentityModel.Tokens.Jwt and Microsoft.IdentityModel.Protocols.OpenIdConnect from 8.18.0 to 8.19.1, PolySharp from 1.15.0 to 1.16.0, and several GitHub Actions (actions/cache 5→6, actions/checkout 5→7, codecov/codecov-action 6.0.0→7.0.0, snyk/actions/dotnet 0.4.0→1.0.0) #​1044 (kailash-b)
  • Suppressed Snyk false positives via .snyk policy #​1045 (kailash-b)

Note: With the release of v9, the v8 line of Auth0.ManagementApi is now in maintenance mode and will receive bug fixes and security patches only. New features and API additions will land in v9 and later.

Commits viewable in compare view.

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps Auth0.AuthenticationApi from 7.47.0 to 7.48.0
Bumps Auth0.ManagementApi from 8.6.0 to 9.1.0

---
updated-dependencies:
- dependency-name: Auth0.AuthenticationApi
  dependency-version: 7.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: auth0
- dependency-name: Auth0.ManagementApi
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: auth0
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Jul 23, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .net code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant