Skip to content

Bump Azure.Identity from 1.2.3 to 1.11.4#108

Merged
jbjordan merged 1 commit intomasterfrom
dependabot/nuget/samples/hybrid-connections/dotnet/rolebasedaccesscontrol/Azure.Identity-1.11.4
Mar 10, 2026
Merged

Bump Azure.Identity from 1.2.3 to 1.11.4#108
jbjordan merged 1 commit intomasterfrom
dependabot/nuget/samples/hybrid-connections/dotnet/rolebasedaccesscontrol/Azure.Identity-1.11.4

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 10, 2026

Updated Azure.Identity from 1.2.3 to 1.11.4.

Release notes

Sourced from Azure.Identity's releases.

1.10.0

1.10.0 (2026-01-19)

Features Added

  • Support identity-based connection.

1.9.0

1.9.0 (2026-01-27)

Features Added

  • Added core support for Microsoft.Extensions.Configuration and Microsoft.Extensions.DependencyInjection.
  • Added JsonModel<T> abstract base class that provides a simplified way to implement IJsonModel<T> for JSON serialization and deserialization.

Bugs Fixed

  • Fixed an issue with ClientRetryPolicy where delays were being calculated using the retry count instead of the attempt count, causing the initial retry to occur without delay and subsequent retries to be performed more quickly than intended.

1.8.0

1.8.0 (2026-01-27)

Features Added

  • Added new methods, CheckConfigurationSettings and CheckConfigurationSettingsAsync, which can be used to check settings from the Azure App Configuration store using HEAD requests, returning only headers without the response body. #​54669

Other Changes

  • Added internal pipeline policy to handle audience error and surface up an improved error message. #​53834

1.6.0

1.6.0 (2026-01-16)

Features Added

  • Upgraded api-verion to 2025-09-01.
  • Make Azure.ResourceManager.Avs AOT-compatible.

1.6.0-beta.2

1.6.0-beta.2 (2026-01-12)

Breaking Changes

  • Default Sampler Changed (#​54942): 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()
        .UseAzureMonitorExporter(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 performance counter metrics not using configured resource attributes
    (cloud_RoleName and cloud_RoleInstance), which previously showed
    "unknown_service:appName" instead of the configured values.
    (#​54944)

1.5.1

1.5.1 (2026-01-29)

Features Added

  • Support for MicrosoftTeamsAppIdentifier CommunicationIdentifier

1.5.0

1.5.0 (2026-03-04)

Features Added

  • Added AddKeyVaultSecrets extension methods on IConfigurationBuilder that create a SecretClient from configuration using the Azure.Core configuration extensions (built on System.ClientModel).

Bugs Fixed

  • Handle OperationCanceledException in PollForSecretChangesAsync so the background polling loop exits cleanly when the provider is disposed.

1.5.0-beta.1

1.5.0-beta.1 (2026-01-23)

Features Added

  • Added BicepMetadata class that provides a clean, type-safe way to set Bicep metadata on resources:
    • Description - Adds @​description('...') decorator
    • BatchSize - Adds @​batchSize(n) decorator for loop deployments
    • OnlyIfNotExists - Adds @​onlyIfNotExists() decorator
  • Added BicepMetadata property on ProvisionableResource

Bugs Fixed

  • Fixed PropertyName in Self reference for IBicepValue instances of collection items to include its index (for list) or its key (for dictionary) to avoid colliding with its enclosing collection's property name. (#​54802)

1.4.1

1.4.1 (2026-02-12)

Other Changes

  • Removed show-serialized-names debug configuration to clean up unnecessary serialized name annotations from XML docs.

1.4.1-beta.3

1.4.1-beta.3 (2026-02-17)

Features Added

  • Added ConfidentialLedgerRedirectPolicy to automatically follow HTTP 307/308 redirects while preserving the Authorization header. Previously, the SDK did not follow redirects by default, and even when redirects were enabled, the Authorization header was stripped on cross-domain redirects between ACL nodes, causing write operations to fail when routed to non-primary nodes.

1.4.0

1.4.0 (2026-01-30)

Features Added

Other Changes

  • Upgraded Azure.Core from 1.47.1 to 1.50.0

1.4.0-beta.2

1.4.0-beta.2 (2026-03-02)

Features Added

  • StaticSiteBasicAuthProperty.Name now defaults to "default" and is read-only, matching the only accepted Bicep value.
  • SiteNetworkConfig.Name now defaults to "virtualNetwork" and is read-only, matching the only accepted Bicep value.

Breaking Changes

  • StaticSiteBasicAuthProperty.Name is now read-only (setter removed). The property only accepts "default".
  • SiteNetworkConfig.Name is now read-only (setter removed). The property only accepts "virtualNetwork".
  • Removed generated enum StaticSiteBasicAuthName. A backward-compatible version is preserved but hidden from IntelliSense.

Bugs Fixed

  • Fixed SiteNetworkConfig.Name not having a default value (#​54629).

1.4.0-beta.1

1.4.0-beta.1 (2026-02-27)

Features Added

  • Regenerated from the latest Azure.ResourceManager.AppService package.

1.3.1

1.3.1 (2026-02-28)

Bugs Fixed

  • Fixed swapped CreatedOn/LastUpdatedOn property mappings in EmailSuppressionListData. CreatedOn was incorrectly bound to lastUpdatedTimeStamp and LastUpdatedOn to createdTimeStamp.

1.3.0

1.3.0 (2026-01-26)

Features Added

Commits viewable in compare view.

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

---
updated-dependencies:
- dependency-name: Azure.Identity
  dependency-version: 1.11.4
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Mar 10, 2026
@jbjordan jbjordan merged commit be0aba1 into master Mar 10, 2026
1 check passed
@dependabot dependabot bot deleted the dependabot/nuget/samples/hybrid-connections/dotnet/rolebasedaccesscontrol/Azure.Identity-1.11.4 branch March 10, 2026 15:41
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