Skip to content

[nuget] Bump the nuget-deps group with 11 updates#455

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

[nuget] Bump the nuget-deps group with 11 updates#455
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/src/contentful/CareLeavers.ContentfulMigration/nuget-deps-a2f09fa891

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

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.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.55.0

1.55.0 (2026-05-05)

Features Added

  • Added AzureLocation.DenmarkEast for the Denmark East Azure region.
  • Added experimental AdditionalQueryParameters property to TokenCredentialOptions to enable forwarding extra query string parameters to MSAL during authentication.

Bugs Fixed

  • Fixed AzureDeveloperCliCredential to correctly parse error messages from Azure Developer CLI v1.23.7 and later, which previously caused raw JSON to surface in AuthenticationFailedException instead of the underlying error text.

1.16.0

1.16.0 (2026-05-01)

Features Added

  • Upgraded api-version tag from 'package-2025-12-01' to 'package-2026-01-01'. Tag detail available at https://github.com/Azure/azure-rest-api-specs/blob/c5044e9d381c2bf1b3119011b4696e777f819f76/specification/netapp/resource-manager/Microsoft.NetApp/NetApp/readme.md.
  • Added NetAppBucketResource and related bucket models, including credential generation and Key Vault integration support.
  • Added NetAppCacheResource for NetApp cache scenarios.
  • Added NetAppSecretPassword model and Key Vault-backed credential models (e.g., CertificateKeyVaultDetails, CredentialsKeyVaultDetails, EntraIdKeyVaultConfig, EntraIdKeyVaultConfigPatch).
  • Added NetAppDayOfWeek enum and additional supporting models and enums (e.g., file system user, NFS user, SMB settings, peering passphrases, origin cluster information, change-zone content; policy/encryption/credential/breakthrough/volume-size/snapshot/Kerberos/global-file-locking/large-volume/SMB-encryption/CIFS-change-notify/write-back/LDAP/certificate-conflict/snapshot-directory-visibility/external-replication enums).

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.11.0

1.11.0 (2026-05-05)

Features Added

  • Added CredentialResolver abstract class — an extensibility hook that lets credential providers participate in the configuration-driven credential resolution pipeline. Resolvers are invoked in registration order until one produces an AuthenticationTokenProvider for a given configuration section.
  • Added IConfiguration.GetCredential(...) extension overloads on ConfigurationExtensions that walk a chain of CredentialResolver instances against a named credential section, with optional configureOverrides to mutate the section in-flight.
  • Added IConfiguration.GetClientSettings<T>(...) extension overloads that bind a ClientSettings-derived type and resolve its Credential via the resolver chain.
  • Added AddCredentialResolver<T> extension methods on IServiceCollection and IHostApplicationBuilder that register a CredentialResolver once per implementation type (idempotent).
  • The DI AddClient<TClient, TSettings> / AddKeyedClient<TClient, TSettings> paths now auto-resolve credentials from the registered resolver chain, so callers no longer need to wire up provider-specific helpers like WithAzureCredential explicitly when a resolver is registered.
  • Resolving the same credential section more than once returns the same AuthenticationTokenProvider instance.

Breaking Changes

  • IClientBuilder no longer inherits from IHostApplicationBuilder. The internal ClientBuilder implementation now uses composition instead of inheritance. PostConfigure return type changed from IHostApplicationBuilder to IClientBuilder. AddClient and AddKeyedClient continue to return IClientBuilder.

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.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.3

1.6.3 (2026-05-08)

Bugs Fixed

  • Fixed a misalignment between the explicit net8.0 target of this package and its Microsoft.AspNetCore.DataProtection dependency, which does not offer a net8.0 asset in the 10.x version. The dependency now resolves to version 8.0.26 when targeting net8.0, ensuring consumers receive a framework-compatible asset and eliminating the associated dependency warnings.

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.3

1.5.3 (2026-05-08)

Bugs Fixed

  • Fixed a misalignment between the explicit net8.0 target of this package and its Microsoft.AspNetCore.DataProtection dependency, which does not offer a net8.0 asset in the 10.x version. The dependency now resolves to version 8.0.26 when targeting net8.0, ensuring consumers receive a framework-compatible asset and eliminating the associated dependency warnings.

1.5.0

1.5.0 (2026-04-30)

Features Added

  • Add ability to specify EnableStandardMetrics and EnablePerformanceCounters
    (#​56438)

Breaking Changes

  • Default Sampler Changed: The default sampling behavior has been changed from
    ApplicationInsightsSampler with 100% sampling (all traces sampled) to
    RateLimitedSampler with 5.0 traces per second. This change significantly
    reduces telemetry volume for high-traffic applications and provides better
    cost optimization out of the box.
    Impact: Applications with more than 5 requests per second will see fewer
    traces exported by default.
    Migration: To maintain the previous behavior (100% sampling), explicitly
    configure the sampler:
// Option 1: Set SamplingRatio and clear TracesPerSecond
builder.Services.AddOpenTelemetry()
    .UseAzureMonitor(options =>
    {
        options.SamplingRatio = 1.0f;
        options.TracesPerSecond = null;
    });
// Option 2: Use environment variables
// OTEL_TRACES_SAMPLER=microsoft.fixed_percentage
// OTEL_TRACES_SAMPLER_ARG=1.0

Bugs Fixed

  • Fixed an issue where Azure Container Apps instances were showing VM instance GUIDs
    instead of replica names in the Role Instance field.
    (#​54586)

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.4.0-beta.1

1.4.0-beta.1 (2026-05-07)

Features Added

  • Upgraded api-version to 2026-01-31-preview.

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.2

1.2.2 (2026-04-29)

Other Changes

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

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-05-01)

Features Added

  • Updated the ComputeSchedule RP api-version from 2026-03-01-preview to 2026-04-15-preview.
  • Updated the property type baseProfile -> virtualMachineBaseProfile with strongly-typed model for validation
  • Updated the property type resourceOverrides -> virtualMachineOverrides with strongly-typed model for validation

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-04-29)

Other Changes

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

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.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

1.0.3 (2026-04-29)

Other Changes

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

1.0.3-beta.6258655

1.0.3-beta.6258655 (2026-05-06)

Features Added

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

1.0.2

1.0.2 (2026-04-29)

Other Changes

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

1.0.1

1.0.1 (2026-04-29)

Other Changes

  • Upgraded dependent Azure.Core to 1.54.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 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 from 1.55.0 to 1.57.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: 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: coverlet.collector
  dependency-version: 10.0.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: 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: 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: 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: NUnit
  dependency-version: 4.6.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 5, 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.

0 participants