Skip to content

[nuget] Bump Azure.AI.Translation.Text and 10 others#466

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/src/contentful/CareLeavers.ContentfulMigration/nuget-deps-6316a2de19
Closed

[nuget] Bump Azure.AI.Translation.Text and 10 others#466
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/src/contentful/CareLeavers.ContentfulMigration/nuget-deps-6316a2de19

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 12, 2026

Copy link
Copy Markdown
Contributor

Updated Azure.AI.Translation.Text from 1.0.0 to 2.0.0.

Release notes

Sourced from Azure.AI.Translation.Text's releases.

2.0.0

2.0.0 (2026-06-06)

Features Added

  • GA release of the Azure AI Translator Text Translation SDK targeting the 2026-06-06 API version.
  • Added TextTranslationClientSettings to support creating a TextTranslationClient from IConfiguration, including configuration-based credential resolution and dependency injection registration.
  • TranslationTarget.Tone property is now strongly typed as TranslationTone? instead of string.
  • TranslationTarget.Gender property is now strongly typed as TranslationGender? instead of string.

Breaking Changes

  • Removed TranslationTarget.Grade property.
  • Changed TranslationTarget.Tone type from string to TranslationTone?.
  • Changed TranslationTarget.Gender type from string to TranslationGender?.

1.59.0

1.59.0 (2026-06-09)

Features Added

  • Added experimental (AZID0004) mTLS Proof-of-Possession token binding support for managed identity scenarios, including dynamic host capability detection via MSAL and transport certificate rotation APIs on BearerTokenAuthenticationPolicy.

Bugs Fixed

  • Fixed BearerTokenAuthenticationPolicy so that the Authorization header is no longer re-attached to a request that has been redirected to a different host. Previously, RedirectPolicy would strip the Authorization header before following a redirect, but the per-retry BearerTokenAuthenticationPolicy would re-add the cached bearer token to the redirected request — including when the redirect target was a different host. The policy now detects when the request URI authority has changed since it last authorized the message, defensively strips any Authorization header, and skips both re-authorization and the WWW-Authenticate (CAE) 401 handler so that no bearer token is sent to — or fetched in response to a challenge from — the redirect target. Same-host redirects, normal (non-redirected) requests, and CAE handling against the original host are unchanged. Callers who explicitly enabled auto-redirect (via HttpPipelineTransportOptions.IsClientRedirectEnabled = true or RedirectPolicy.SetAllowAutoRedirect(message, true)) and depended on the bearer token being re-attached on cross-host redirects should construct a separate client targeting the redirect-target host with a credential bound to that host's resource.

Other Changes

  • Updated Microsoft.Identity.Client dependency to 4.84.2.

1.58.0

1.58.0 (2026-06-04)

Features Added

  • Adopt System.ClientModel 1.14.0

Bugs Fixed

  • Fixed NullReferenceException thrown by Operation.RehydrateAsync / ArmOperation.RehydrateAsync (and the resulting operation's UpdateStatusAsync / Value) when the rehydrated long-running operation has completed with a failure. OperationState.Failure and OperationState<T>.Failure now honor their documented contract and materialize a default RequestFailedException from the raw response when the caller passes null, matching the behavior of the non-rehydration polling path.
  • Fixed DiagnosticScope to mark the parent ActivityContext as remote (IsRemote = true) when a traceparent is provided via SetTraceContext or AddLink. The traceparent in these paths is always extracted from an external source (e.g. a messaging broker's application properties), so samplers that distinguish local vs. remote parents — such as the RateLimitedSampler used by the Azure Monitor OpenTelemetry exporter — can now make correct decisions for activities started from incoming messages.

1.57.0

1.57.0 (2026-05-21)

Features Added

  • Added RequestContent.Create(BinaryContent) overload that adapts a System.ClientModel.BinaryContent instance into a Azure.Core.RequestContent instance.
  • Added experimental (SCME0002) AzureCredentialResolver that resolves Azure token credential sections (e.g. AzureCliCredential, ManagedIdentityCredential, ChainedTokenCredential) into TokenCredential instances. ApiKeyCredential sections are not claimed — clients dispatch on Credential.CredentialSource themselves.
  • Added experimental (SCME0002) extensions on Azure.Identity.ConfigurationExtensions:
    • AddAzureCredentialResolver() on IServiceCollection and IHostApplicationBuilder — idempotent DI registration.
    • IConfiguration.GetAzureCredentialSettings(sectionName, ...) — returns CredentialSettings? with TokenProvider populated for token sources and Key populated for inline ApiKey sources, so a single call site can dispatch on either shape without binding a ClientSettings.
    • IConfiguration.GetAzureClientSettings<T>(sectionName, params CredentialResolver[] resolvers) — resolver-aware overload.
  • The Azure OpenAI default-scope quirk now writes Credential:Scope at the credential-section root (the canonical SCM 1.12.0+ location) instead of Credential:AdditionalProperties:Scope. SCM 1.12.0 reads both locations so existing configs continue to work.

Breaking Changes

  • Removed experimental (SCME0002) WithAzureCredential extension methods on ClientSettings and IClientBuilder. For DI, use AddAzureClient<TClient, TSettings> / AddKeyedAzureClient<TClient, TSettings> (which register AzureCredentialResolver automatically), or call AddAzureCredentialResolver() followed by AddClient<TClient, TSettings> / AddKeyedClient<TClient, TSettings>. For standalone scenarios, use IConfiguration.GetAzureClientSettings<T>(...) or IConfiguration.GetAzureCredentialSettings(...).

1.56.0

1.56.0 (2026-05-14)

Features Added

  • Added experimental TokenRequestCallback property and TokenRequestCallbackContext type to MSAL-backed credential options to allow customizing token request body parameters before they are sent to the identity provider.

1.14.0

1.14.0 (2026-06-03)

Features Added

  • Added experimental FileBinaryContent type for representing a file part within an HTTP request payload, typically as part of a multipart/form-data request.
  • Added experimental MultiPartFormContent type for building multipart/form-data request payloads.
  • Added a chain-aware CredentialResolver.TryResolve(IConfigurationSection, Func<IConfigurationSection, AuthenticationTokenProvider?>, out AuthenticationTokenProvider?) virtual overload. The callback lets a chain-owning resolver resolve child sections back through the active engine — preserving caching, normalization, and ordering — without needing to know about credential sources owned by other packages. The default implementation forwards to the existing two-arg overload (experimental SCME0002).

1.13.0

1.13.0 (2026-05-18)

Features Added

  • Added CredentialSettings.TokenProvider to hold the resolved AuthenticationTokenProvider for the credential.

Breaking Changes

  • IConfiguration.GetCredential(...) renamed to IConfiguration.GetCredentialSettings(...) and its return type changed from AuthenticationTokenProvider? to CredentialSettings? (experimental SCME0002).

Other Changes

  • ClientSettings.CredentialProvider will be removed in a future release; migrate to settings.Credential.TokenProvider (experimental SCME0002).

1.12.0

1.12.0 (2026-05-12)

Features Added

  • Added CredentialSettings.this[string key] indexer for reading custom properties from the credential configuration section.

Other Changes

  • AuthenticationPolicy.Create no longer throws when an ApiKey credential section carries a Scope value; Scope is ignored for ApiKey auth.

1.11.1

1.11.1 (2026-06-03)

Other Changes

  • Upgraded dependent Azure.Core to 1.57.0.
  • Upgraded dependent Azure.ResourceManager to 1.14.0.

1.10.2

1.10.2 (2026-06-01)

Features Added

  • Support singular connection property in Web PubSub trigger and context bindings for backward-compatibility.

1.8.1

1.8.1 (2026-05-20)

Features Added

  • Added GenAI main agent attribution support. Automatically propagates microsoft.gen_ai.main_agent.* attributes from parent spans to child spans and log records, enabling end-to-end tracing of AI agent orchestration.
    (#​59368)

1.8.0

1.8.0 (2026-05-11)

Features Added

  • Upgraded the api-version to 2026-03-01.

1.8.0-beta.1

1.8.0-beta.1 (2026-06-09)

Features Added

  • Added ManagedIdentityCredentialAttestationOptions to enable Credential Guard key attestation support for managed identity mTLS Proof-of-Possession flows.

Other Changes

  • Updated Azure.Core dependency to version 1.59.0.

1.7.0

1.7.0 (2026-05-22)

Features Added

  • Upgraded api-version from 2025-06-01 to 2025-08-01. Tag details available at https://github.com/Azure/azure-rest-api-specs/tree/dddcb1f2f0131aa15cc761624959063f2e197b57/specification/storage/Storage.Management.
    • Supported new StorageAccountAccessTier.Smart access tier (requires zone-redundant storage).
    • Supported new AllowedCopyScope.All value.
    • Supported new property TagsReplicationEnabled on ObjectReplicationPolicyData.
    • Supported new StaticWebsite property on BlobServiceData with DefaultIndexDocumentPath.
    • Supported new StorageConnectorResource for managing storage connectors.
    • Supported new StorageDataShareResource for managing storage data shares.
    • Supported new StopAssignment operation on StorageTaskAssignmentResource.
    • Supported new AllowSharedKeyAccessForServices property on storage account create/update.
    • Supported new DataCollaborationPolicyProperties property on storage account create/update.
    • Supported new TaskExecutionTriggerType.MockRun trigger type.

1.6.1

1.6.1 (2026-06-02)

Other Changes

  • Upgraded dependent Azure.Core to 1.57.0.
  • Upgraded dependent Azure.ResourceManager to 1.14.0.

1.6.0-beta.1

1.6.0-beta.1 (2026-06-02)

Features Added

  • Upgraded api-version to 2025-10-02-preview.

Other Changes

  • Migrated Azure.ResourceManager.AppContainers management-plane generation from AutoRest to TypeSpec.
  • Upgraded dependent Azure.Core to 1.57.0.
  • Upgraded dependent Azure.ResourceManager to 1.14.0.

1.5.0

1.5.0 (2026-06-02)

Features Added

  • Upgraded api-version to 2025-05-01.
  • Separated CertificateRegistration and DomainRegistration from App Service.

Bugs Fixed

  • Fix deserialization when AppServiceApiDefinitionInfo.Uri is not a valid URI.
  • Fix deserialization when FunctionAppStorage.Value is not a valid URI.

Other Changes

  • Upgraded dependent Azure.Core to 1.57.0.
  • Upgraded dependent Azure.ResourceManager to 1.14.0.

1.5.0-beta.1

1.5.0-beta.1 (2026-05-27)

Features Added

  • Upgraded api-version from '2024-11-30' to '2025-05-31-preview'.
  • Exposed User-Assigned Identity AssignmentRestrictions property.

1.4.1

1.4.1 (2026-06-03)

Other Changes

  • Upgraded dependent Azure.Core to 1.57.0.
  • Upgraded dependent Azure.ResourceManager to 1.14.0.

1.4.1-beta.5

1.4.1-beta.5 (2026-05-26)

Bugs Fixed

  • Improved redirect performance for write operations by caching the latest primary node URL from redirect responses and reusing it for subsequent non-GET requests. The cache is lazily populated and refreshed whenever the service redirects to a different primary node.

1.3.1

1.3.1 (2026-06-03)

Other Changes

  • Upgraded dependent Azure.Core to 1.57.0.
  • Upgraded dependent Azure.ResourceManager to 1.14.0.

1.3.0-beta.2

1.3.0-beta.2 (2026-06-03)

Features Added

  • Make Azure.ResourceManager.DeviceProvisioningServices AOT-compatible.

Other Changes

  • Upgraded dependent Azure.Core to 1.57.0.
  • Upgraded dependent Azure.ResourceManager to 1.14.0.

1.2.3

1.2.3 (2026-06-09)

Features Added

  • Make Azure.ResourceManager.PrivateDns AOT-compatible.

1.2.0

1.2.0 (2026-05-26)

Features Added

  • Upgraded the Managed Network Fabric management plane API version to 2025-07-15.
  • Added support for newly introduced service capabilities and operation result models from the 2025-07-15 API.

Breaking Changes

  • Updated model and operation signatures to align with the 2025-07-15 service contract.
  • Some operation result types changed from shared/common post-action result shapes to operation-specific result models.

Bugs Fixed

  • Fixed type naming inconsistencies and acronym casing issues in the generated public surface.
  • Corrected operation naming regressions to preserve previously shipped method names where applicable.

Other Changes

  • Added compatibility customizations and regenerated code/api listings to mitigate breaking changes introduced by the API version upgrade.

1.2.0-beta.4

1.2.0-beta.4 (2026-05-14)

Features Added

  • Make VMSizeProfile.Rank as optional
  • Make ZoneAllocationPolicy.DistributionStrategy as required
  • Make ZonePreference.Rank as optional

1.2.0-beta.3

1.2.0-beta.3 (2026-06-06)

Other Changes

  • Upgraded dependent Azure.Core to 1.58.0.
  • Upgraded dependent Azure.ResourceManager to 1.14.0.

1.2.0-beta.2

1.2.0-beta.2 (2026-06-04)

Features Added

  • Updated the api-version to 2024-04-01-preview.

Other Changes

  • Upgraded dependent Azure.Core to 1.57.0.
  • Upgraded dependent Azure.ResourceManager to 1.14.0.

1.2.0-beta.1

1.2.0-beta.1 (2026-05-29)

Features Added

  • Updated the api-version to 2026-05-01-preview.

1.1.7

1.1.7 (2026-06-02)

Other Changes

  • Upgraded dependent Azure.Core to 1.57.0.
  • Upgraded dependent Azure.ResourceManager to 1.14.0.

1.1.2

1.1.2 (2026-06-03)

Other Changes

  • Upgraded dependent Azure.Core to 1.57.0.
  • Upgraded dependent Azure.ResourceManager to 1.14.0.

1.1.2-beta.4

1.1.2-beta.4 (2026-06-09)

Features Added

  • Make Azure.ResourceManager.ResourceMover AOT-compatible.

1.1.0

1.1.0 (2026-06-02)

Other Changes

  • Upgraded dependent Azure.Core to 1.57.0.
  • Upgraded dependent Azure.ResourceManager to 1.14.0.

1.1.0-beta.7

1.1.0-beta.7 (2026-06-09)

Features Added

  • Make Azure.ResourceManager.SelfHelp AOT-compatible.

1.1.0-beta.4

1.1.0-beta.4 (2026-05-13)

Features Added

  • Replaced BinaryData with new RequireApprovalOption typed property on VoiceLiveMcpServerDefinition.RequireApproval. Customers can now set approval directly (server.RequireApproval = MCPApprovalType.Never) instead of using BinaryData.FromObjectAsJson().
  • Added OpenTelemetry distributed tracing support. The SDK now emits spans via System.Diagnostics.ActivitySource named "Azure.AI.VoiceLive" — no extra instrumentation package required. Spans include standard GenAI semantic convention attributes such as token usage, first-token latency, turn count, and interruption count.
  • Added OpenTelemetry metrics support. The SDK now emits gen_ai.client.operation.duration and gen_ai.client.token.usage metrics via a System.Diagnostics.Metrics.Meter named "Azure.AI.VoiceLive" in compliance with GenAI semantic conventions.

Breaking Changes

  • VoiceLiveMcpServerDefinition.RequireApproval property type changed from BinaryData to RequireApprovalOption.

Bugs Fixed

  • Fixed MCPApprovalType serialization so that require_approval correctly serializes to "never" on the wire. Previously, using BinaryData.FromObjectAsJson(MCPApprovalType.Never) silently produced an empty object {}, causing the service to treat it as "always" and send unexpected approval requests.

1.1.0-beta.1

1.1.0-beta.1 (2026-06-03)

Features Added

Updated to api version 2025-12-26-preview.

Other Changes

  • Upgraded dependent Azure.Core to 1.57.0.
  • Upgraded dependent Azure.ResourceManager to 1.14.0.

1.0.3-beta.6425531

1.0.3-beta.6425531 (2026-06-11)

Features Added

  • Added WidgetAnalyticsClientSettings to support creating a WidgetAnalyticsClient from IConfiguration, including configuration-based credential resolution and dependency injection registration.

1.0.3-beta.6424804

1.0.3-beta.6424804 (2026-06-11)

Features Added

  • Added WidgetAnalyticsClientSettings to support creating a WidgetAnalyticsClient from IConfiguration, including configuration-based credential resolution and dependency injection registration.

1.0.1

1.0.1 (2026-06-02)

Other Changes

  • Upgraded dependent Azure.Core to 1.57.0.
  • Upgraded dependent Azure.ResourceManager to 1.14.0.

Commits viewable in compare view.

Updated Azure.Core from 1.55.0 to 1.57.0.

Release notes

Sourced from Azure.Core's releases.

1.57.0

1.57.0 (2026-05-21)

Features Added

  • Added RequestContent.Create(BinaryContent) overload that adapts a System.ClientModel.BinaryContent instance into a Azure.Core.RequestContent instance.
  • Added experimental (SCME0002) AzureCredentialResolver that resolves Azure token credential sections (e.g. AzureCliCredential, ManagedIdentityCredential, ChainedTokenCredential) into TokenCredential instances. ApiKeyCredential sections are not claimed — clients dispatch on Credential.CredentialSource themselves.
  • Added experimental (SCME0002) extensions on Azure.Identity.ConfigurationExtensions:
    • AddAzureCredentialResolver() on IServiceCollection and IHostApplicationBuilder — idempotent DI registration.
    • IConfiguration.GetAzureCredentialSettings(sectionName, ...) — returns CredentialSettings? with TokenProvider populated for token sources and Key populated for inline ApiKey sources, so a single call site can dispatch on either shape without binding a ClientSettings.
    • IConfiguration.GetAzureClientSettings<T>(sectionName, params CredentialResolver[] resolvers) — resolver-aware overload.
  • The Azure OpenAI default-scope quirk now writes Credential:Scope at the credential-section root (the canonical SCM 1.12.0+ location) instead of Credential:AdditionalProperties:Scope. SCM 1.12.0 reads both locations so existing configs continue to work.

Breaking Changes

  • Removed experimental (SCME0002) WithAzureCredential extension methods on ClientSettings and IClientBuilder. For DI, use AddAzureClient<TClient, TSettings> / AddKeyedAzureClient<TClient, TSettings> (which register AzureCredentialResolver automatically), or call AddAzureCredentialResolver() followed by AddClient<TClient, TSettings> / AddKeyedClient<TClient, TSettings>. For standalone scenarios, use IConfiguration.GetAzureClientSettings<T>(...) or IConfiguration.GetAzureCredentialSettings(...).

1.56.0

1.56.0 (2026-05-14)

Features Added

  • Added experimental TokenRequestCallback property and TokenRequestCallbackContext type to MSAL-backed credential options to allow customizing token request body parameters before they are sent to the identity provider.

Commits viewable in compare view.

Updated Azure.Core from 1.55.0 to 1.58.0.

Release notes

Sourced from Azure.Core's releases.

1.58.0

1.58.0 (2026-06-04)

Features Added

  • Adopt System.ClientModel 1.14.0

Bugs Fixed

  • Fixed NullReferenceException thrown by Operation.RehydrateAsync / ArmOperation.RehydrateAsync (and the resulting operation's UpdateStatusAsync / Value) when the rehydrated long-running operation has completed with a failure. OperationState.Failure and OperationState<T>.Failure now honor their documented contract and materialize a default RequestFailedException from the raw response when the caller passes null, matching the behavior of the non-rehydration polling path.
  • Fixed DiagnosticScope to mark the parent ActivityContext as remote (IsRemote = true) when a traceparent is provided via SetTraceContext or AddLink. The traceparent in these paths is always extracted from an external source (e.g. a messaging broker's application properties), so samplers that distinguish local vs. remote parents — such as the RateLimitedSampler used by the Azure Monitor OpenTelemetry exporter — can now make correct decisions for activities started from incoming messages.

1.57.0

1.57.0 (2026-05-21)

Features Added

  • Added RequestContent.Create(BinaryContent) overload that adapts a System.ClientModel.BinaryContent instance into a Azure.Core.RequestContent instance.
  • Added experimental (SCME0002) AzureCredentialResolver that resolves Azure token credential sections (e.g. AzureCliCredential, ManagedIdentityCredential, ChainedTokenCredential) into TokenCredential instances. ApiKeyCredential sections are not claimed — clients dispatch on Credential.CredentialSource themselves.
  • Added experimental (SCME0002) extensions on Azure.Identity.ConfigurationExtensions:
    • AddAzureCredentialResolver() on IServiceCollection and IHostApplicationBuilder — idempotent DI registration.
    • IConfiguration.GetAzureCredentialSettings(sectionName, ...) — returns CredentialSettings? with TokenProvider populated for token sources and Key populated for inline ApiKey sources, so a single call site can dispatch on either shape without binding a ClientSettings.
    • IConfiguration.GetAzureClientSettings<T>(sectionName, params CredentialResolver[] resolvers) — resolver-aware overload.
  • The Azure OpenAI default-scope quirk now writes Credential:Scope at the credential-section root (the canonical SCM 1.12.0+ location) instead of Credential:AdditionalProperties:Scope. SCM 1.12.0 reads both locations so existing configs continue to work.

Breaking Changes

  • Removed experimental (SCME0002) WithAzureCredential extension methods on ClientSettings and IClientBuilder. For DI, use AddAzureClient<TClient, TSettings> / AddKeyedAzureClient<TClient, TSettings> (which register AzureCredentialResolver automatically), or call AddAzureCredentialResolver() followed by AddClient<TClient, TSettings> / AddKeyedClient<TClient, TSettings>. For standalone scenarios, use IConfiguration.GetAzureClientSettings<T>(...) or IConfiguration.GetAzureCredentialSettings(...).

1.56.0

1.56.0 (2026-05-14)

Features Added

  • Added experimental TokenRequestCallback property and TokenRequestCallbackContext type to MSAL-backed credential options to allow customizing token request body parameters before they are sent to the identity provider.

Commits viewable in compare view.

Updated coverlet.collector from 10.0.0 to 10.0.1.

Release notes

Sourced from coverlet.collector's releases.

10.0.1

Improvements

Fixed

  • Fix inconsistent paths in cobertura reports #​1723
  • Fix when using "is" with "and" in pattern matching, branch coverage is lower than normal #​1313
  • Fix Coverlet flagging a branch for an async functions finally block where none exists #​1337
  • Fix Coverlet Tracker Missing CompilerGeneratedAttribute #​1828

Maintenance

  • Add architecture docs and diagrams for all integrations #​1927
  • Update NuGet packages and .NET SDK versions #​1933

Diff between 10.0.0 and 10.0.1

Commits viewable in compare view.

Updated Microsoft.AspNetCore.Mvc.Testing from 8.0.26 to 8.0.27.

Release notes

Sourced from Microsoft.AspNetCore.Mvc.Testing's releases.

8.0.27

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.26...v8.0.27

Commits viewable in compare view.

Updated Microsoft.Extensions.Caching.StackExchangeRedis from 9.0.15 to 9.0.16.

Release notes

Sourced from Microsoft.Extensions.Caching.StackExchangeRedis's releases.

9.0.16

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v9.0.15...v9.0.16

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration from 9.0.15 to 9.0.16.

Release notes

Sourced from Microsoft.Extensions.Configuration's releases.

9.0.16

Release

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.Binder from 9.0.15 to 9.0.16.

Release notes

Sourced from Microsoft.Extensions.Configuration.Binder's releases.

9.0.16

Release

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.EnvironmentVariables from 9.0.15 to 9.0.16.

Release notes

Sourced from Microsoft.Extensions.Configuration.EnvironmentVariables's releases.

9.0.16

Release

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.Json from 9.0.15 to 9.0.16.

Release notes

Sourced from Microsoft.Extensions.Configuration.Json's releases.

9.0.16

Release

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.UserSecrets from 9.0.15 to 9.0.16.

Release notes

Sourced from Microsoft.Extensions.Configuration.UserSecrets's releases.

9.0.16

Release

Commits viewable in compare view.

Updated NUnit from 4.6.0 to 4.6.1.

Release notes

Sourced from NUnit's releases.

4.6.1

See release notes for details.

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 Azure.AI.Translation.Text from 1.0.0 to 2.0.0
Bumps Azure.Core to 1.57.0, 1.58.0
Bumps coverlet.collector from 10.0.0 to 10.0.1
Bumps Microsoft.AspNetCore.Mvc.Testing from 8.0.26 to 8.0.27
Bumps Microsoft.Extensions.Caching.StackExchangeRedis from 9.0.15 to 9.0.16
Bumps Microsoft.Extensions.Configuration from 9.0.15 to 9.0.16
Bumps Microsoft.Extensions.Configuration.Binder from 9.0.15 to 9.0.16
Bumps Microsoft.Extensions.Configuration.EnvironmentVariables from 9.0.15 to 9.0.16
Bumps Microsoft.Extensions.Configuration.Json from 9.0.15 to 9.0.16
Bumps Microsoft.Extensions.Configuration.UserSecrets from 9.0.15 to 9.0.16
Bumps NUnit from 4.6.0 to 4.6.1

---
updated-dependencies:
- dependency-name: Microsoft.Extensions.Configuration
  dependency-version: 9.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-deps
- dependency-name: Microsoft.Extensions.Configuration.Binder
  dependency-version: 9.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-deps
- dependency-name: Microsoft.Extensions.Configuration.EnvironmentVariables
  dependency-version: 9.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-deps
- dependency-name: Microsoft.Extensions.Configuration.Json
  dependency-version: 9.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-deps
- dependency-name: Microsoft.Extensions.Configuration.UserSecrets
  dependency-version: 9.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-deps
- dependency-name: Azure.AI.Translation.Text
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-deps
- dependency-name: Azure.Core
  dependency-version: 1.57.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-deps
- dependency-name: Azure.Core
  dependency-version: 1.58.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-deps
- dependency-name: Microsoft.Extensions.Caching.StackExchangeRedis
  dependency-version: 9.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-deps
- dependency-name: coverlet.collector
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-deps
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-version: 8.0.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-deps
- dependency-name: NUnit
  dependency-version: 4.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-deps
- dependency-name: coverlet.collector
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-deps
- dependency-name: NUnit
  dependency-version: 4.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-deps
...

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 Jun 12, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 12, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #467.

@dependabot dependabot Bot closed this Jun 12, 2026
@dependabot dependabot Bot deleted the dependabot/nuget/src/contentful/CareLeavers.ContentfulMigration/nuget-deps-6316a2de19 branch June 12, 2026 04:44
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.

0 participants