Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 6, 2026

Updated Azure.Identity from 1.13.2 to 1.17.1.

Release notes

Sourced from Azure.Identity's releases.

1.17.1

1.17.1 (2025-11-18)

Other Changes

  • Updated Microsoft.Identity.Client and Microsoft.Identity.Client.Extensions.Msal dependencies to version 4.78.0.

1.15.0

1.15.0 (2026-02-02)

Features Added

  • Upgraded api-version to 2025-05-01.

1.15.0-beta.1

1.15.0-beta.1 (2025-12-01)

Features Added

  • Upgraded api-version tag from 'package-2025-09-01' to 'package-2025-09-01-preview'. Tag detail available at https://github.com/Azure/azure-rest-api-specs/blob/1da0ccefea2127820defac6496bf4710c0902d78/specification/netapp/resource-manager/Microsoft.NetApp/NetApp/readme.md.
  • Added NetAppCache resource type
  • Added ElasticAccount resource type
  • Added ElasticPool resource type
  • Added ElasticVolume resource type
  • Added ElasticSnapshotPolicy resource type
  • Added ElasticSnapshot resource type
  • Added ElasticBackupVault resource type
  • Added ElasticBackupPolicy resource type
  • Added ElasticBackup resource type
  • Added ActiveDirectory resource type
  • Added RansomwareReport resource type, Support for Advance AntiRansomware features
  • Added LdapConfiguration to NetAppAccountResource to support LDAP configuration at account level
  • Added LargeVolumeType to NetAppVolumeResource to support ExtraLargeVolumes

1.14.0

1.14.0 (2025-11-26)

Features Added

Commits viewable in compare view.

Updated Azure.Monitor.OpenTelemetry.Exporter from 1.5.0 to 1.6.0.

Release notes

Sourced from Azure.Monitor.OpenTelemetry.Exporter's releases.

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

1.6.0-beta.1 (2025-12-03)

Bugs Fixed

  • Added Microsoft override attributes to preserve exact Application Insights
    semantics when exporting telemetry data.
    (#​54023)
    • Request: microsoft.request.name, microsoft.request.url,
      microsoft.request.source, microsoft.request.resultCode
    • Dependency: microsoft.dependency.type, microsoft.dependency.target,
      microsoft.dependency.name, microsoft.dependency.data,
      microsoft.dependency.resultCode
    • Operation: microsoft.operation.name

Other Changes

  • Added distinct SDK version labels for all Application Insights shim packages
    to enable accurate attribution and visibility of exporter, distro, and shim
    telemetry during migration and analysis.
    (#​54011)

1.5.1

1.5.1 (2025-11-18)

Features Added

  • Enabled WirePath attributes for all properties in this library.

Commits viewable in compare view.

Updated Microsoft.OpenApi from 2.6.1 to 3.3.1.

Release notes

Sourced from Microsoft.OpenApi's releases.

3.3.1

3.3.1 (2026-01-22)

Features

Bug Fixes

  • broken binary compatibility due to interface changes in previous version (d96bba7)

3.3.0

3.3.0 (2026-01-21)

Features

  • models: add shared Content interface (9e13b25)
  • models: add shared Content interface (#​2695) (9e13b25)
  • models: support mutualTLS security scheme (a4efdfe)

3.2.0

3.2.0 (2026-01-19)

Features

  • hidi validate command now logs warnings (76a3c0f)
  • hidi validate command now logs warnings (62e7d56)

Bug Fixes

  • discriminator property validation fails any/allOf cases when it shouldn't (fb6cecc)
  • discriminator property validation fails any/allOf cases when it shouldn't (a8fb81c)

3.1.3

3.1.3 (2026-01-16)

Bug Fixes

  • Support custom tag ordering (008576c)
  • Support custom tag ordering (7610d07)

3.1.2

3.1.2 (2026-01-06)

Bug Fixes

  • correct error pointer when extension parser throws OpenApiException (43c75a9)
  • wrap extension parser calls in try-catch to ensure correct error pointers (50b44aa)

3.1.1

3.1.1 (2025-12-18)

Bug Fixes

  • schema: always serialize additionalProperties: false (6651c36)
  • schema: always serialize additionalProperties: false (e36fc95)

3.1.0

3.1.0 (2025-12-17)

Features

  • Add type: "null" downcasting when in oneOf and anyOf for OpenAPI v3 (782cf8d)

3.0.3

3.0.3 (2025-12-16)

Bug Fixes

  • load JSON documents that are preceded by multiple whitespace (6461bac)
  • non-seekable json streams would fail to load as a document (2436d73)
  • reading streams in an asp.net context would cause async exceptions (f9e5248)

3.0.2

3.0.2 (2025-12-08)

Bug Fixes

  • additional properties serialization should not emit a schema in v2 (946cba9)
  • additional properties serialization should not emit booleans in v3.1+ (946cba9)

3.0.1

3.0.1 (2025-11-17)

Bug Fixes

  • empty strings should be quoted in yaml (8d215f9)
  • empty strings should be quoted in yaml (0ca10db)

3.0.0

3.0.0 (2025-11-11)

⚠ BREAKING CHANGES

  • adds support for OpenAPI 3.2.0

Note: Please refer to the upgrade guide for a detailed description of the breaking changes.

Note: ASP.net users should remain on version 1.X for ASP.net < 10, and version 2.X for ASP.net 10, this new major version will be implemented in a future version of ASP.net, more information

Features

  • adds support for OpenAPI 3.2.0 (765a8dd)

Special thanks

Commits viewable in compare view.

Updated OpenTelemetry from 1.14.0 to 1.15.0.

Release notes

Sourced from OpenTelemetry's releases.

1.15.0

For highlights and announcements pertaining to this release see: Release Notes > 1.15.0.

The following changes are from the previous release 1.14.0.

  • NuGet: OpenTelemetry v1.15.0

    • Added support for the OTEL_SDK_DISABLED environment variable in TracerProvider,
      MeterProvider, and LoggerProvider. When OTEL_SDK_DISABLED=true,
      the SDK returns no-op implementations for all telemetry signals.
      The OTEL_SDK_DISABLED environment variable is only evaluated upon application
      startup, later changes have no effect.
      (#​6568)

    • Added LowMemory temporality as an option in the OTLP metrics exporter.
      (#​6648)

    • Added support for Meter.TelemetrySchemaUrl property.
      (#​6714)

    • Improve performance and reduce memory consumption for metrics histograms.
      (#​6715)

    • Decode value in OTEL_RESOURCE_ATTRIBUTES environment variable.
      (#​6737)

    See CHANGELOG for details.

  • NuGet: OpenTelemetry.Api v1.15.0

    • Added a new overload for TracerProvider.GetTracer which accepts an optional
      string? schemaUrl parameter, allowing a schema URL to be set on the Tracer.
      (#​6736)

    See CHANGELOG for details.

  • NuGet: OpenTelemetry.Api.ProviderBuilderExtensions v1.15.0

    No notable changes.

    See CHANGELOG for details.

  • NuGet: OpenTelemetry.Exporter.Console v1.15.0

    • Added support for ActivitySource.TelemetrySchemaUrl property.
      (#​6713)

    • Added support for Meter.TelemetrySchemaUrl property.
      (#​6714)

    See CHANGELOG for details.
    ... (truncated)

1.15.0-beta.1

The following changes are from the previous release 1.14.0-beta.1.

Commits viewable in compare view.

Updated OpenTelemetry.Extensions.Hosting from 1.14.0 to 1.15.0.

Release notes

Sourced from OpenTelemetry.Extensions.Hosting's releases.

1.15.0

For highlights and announcements pertaining to this release see: Release Notes > 1.15.0.

The following changes are from the previous release 1.14.0.

  • NuGet: OpenTelemetry v1.15.0

    • Added support for the OTEL_SDK_DISABLED environment variable in TracerProvider,
      MeterProvider, and LoggerProvider. When OTEL_SDK_DISABLED=true,
      the SDK returns no-op implementations for all telemetry signals.
      The OTEL_SDK_DISABLED environment variable is only evaluated upon application
      startup, later changes have no effect.
      (#​6568)

    • Added LowMemory temporality as an option in the OTLP metrics exporter.
      (#​6648)

    • Added support for Meter.TelemetrySchemaUrl property.
      (#​6714)

    • Improve performance and reduce memory consumption for metrics histograms.
      (#​6715)

    • Decode value in OTEL_RESOURCE_ATTRIBUTES environment variable.
      (#​6737)

    See CHANGELOG for details.

  • NuGet: OpenTelemetry.Api v1.15.0

    • Added a new overload for TracerProvider.GetTracer which accepts an optional
      string? schemaUrl parameter, allowing a schema URL to be set on the Tracer.
      (#​6736)

    See CHANGELOG for details.

  • NuGet: OpenTelemetry.Api.ProviderBuilderExtensions v1.15.0

    No notable changes.

    See CHANGELOG for details.

  • NuGet: OpenTelemetry.Exporter.Console v1.15.0

    • Added support for ActivitySource.TelemetrySchemaUrl property.
      (#​6713)

    • Added support for Meter.TelemetrySchemaUrl property.
      (#​6714)

    See CHANGELOG for details.
    ... (truncated)

1.15.0-beta.1

The following changes are from the previous release 1.14.0-beta.1.

Commits viewable in compare view.

Updated OpenTelemetry.Instrumentation.AspNetCore from 1.14.0 to 1.15.0.

Release notes

Sourced from OpenTelemetry.Instrumentation.AspNetCore's releases.

1.15.0

1.15.0-rc.1

1.15.0-beta.2

1.15.0-beta.1

1.15.0-alpha.1

1.14.2

1.14.1

Commits viewable in compare view.

Updated OpenTelemetry.Instrumentation.Http from 1.14.0 to 1.15.0.

Release notes

Sourced from OpenTelemetry.Instrumentation.Http's releases.

1.15.0

1.15.0-rc.1

1.15.0-beta.2

1.15.0-beta.1

1.15.0-alpha.1

1.14.2

1.14.1

Commits viewable in compare view.

Updated Swashbuckle.AspNetCore from 10.1.0 to 10.1.2.

Release notes

Sourced from Swashbuckle.AspNetCore's releases.

10.1.2

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.1.1...v10.1.2

10.1.1

What's Changed

New Contributors

Full Changelog:

domaindrivendev/Swashbuckle.AspNetCore@v10.1.0...v10.1.1

Commits viewable in compare view.

Updated Swashbuckle.AspNetCore.Newtonsoft from 10.1.0 to 10.1.2.

Release notes

Sourced from Swashbuckle.AspNetCore.Newtonsoft's releases.

10.1.2

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.1.1...v10.1.2

10.1.1

What's Changed

New Contributors

Full Changelog:

domaindrivendev/Swashbuckle.AspNetCore@v10.1.0...v10.1.1

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.Identity from 1.13.2 to 1.17.1
Bumps Azure.Monitor.OpenTelemetry.Exporter from 1.5.0 to 1.6.0
Bumps Microsoft.OpenApi from 2.6.1 to 3.3.1
Bumps OpenTelemetry from 1.14.0 to 1.15.0
Bumps OpenTelemetry.Extensions.Hosting from 1.14.0 to 1.15.0
Bumps OpenTelemetry.Instrumentation.AspNetCore from 1.14.0 to 1.15.0
Bumps OpenTelemetry.Instrumentation.Http from 1.14.0 to 1.15.0
Bumps Swashbuckle.AspNetCore from 10.1.0 to 10.1.2
Bumps Swashbuckle.AspNetCore.Newtonsoft from 10.1.0 to 10.1.2

---
updated-dependencies:
- dependency-name: Azure.Identity
  dependency-version: 1.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-catalog
- dependency-name: Azure.Monitor.OpenTelemetry.Exporter
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-catalog
- dependency-name: Microsoft.OpenApi
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-catalog
- dependency-name: OpenTelemetry
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-catalog
- dependency-name: OpenTelemetry.Extensions.Hosting
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-catalog
- dependency-name: OpenTelemetry.Instrumentation.AspNetCore
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-catalog
- dependency-name: OpenTelemetry.Instrumentation.Http
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-catalog
- dependency-name: Swashbuckle.AspNetCore
  dependency-version: 10.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-catalog
- dependency-name: Swashbuckle.AspNetCore.Newtonsoft
  dependency-version: 10.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-catalog
...

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 Feb 6, 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