Bumps Azure.Identity from 1.17.1 to 1.19.0
Bumps coverlet.collector from 6.0.4 to 8.0.0
Bumps Microsoft.ApplicationInsights from 2.23.0 to 3.0.0
Bumps Microsoft.ApplicationInsights.WorkerService from 2.23.0 to 3.0.0
Bumps Microsoft.Extensions.Caching.Abstractions from 10.0.3 to 10.0.5
Bumps Microsoft.Extensions.Configuration.Abstractions from 10.0.3 to 10.0.5
Bumps Microsoft.Extensions.Configuration.UserSecrets from 10.0.3 to 10.0.5
Bumps Microsoft.Extensions.DependencyInjection.Abstractions from 10.0.3 to 10.0.5
Bumps Microsoft.Extensions.Diagnostics.HealthChecks from 10.0.3 to 10.0.5
Bumps Microsoft.Extensions.Logging.Abstractions from 10.0.3 to 10.0.5
Bumps Microsoft.Extensions.Options from 10.0.3 to 10.0.5
Bumps Microsoft.NET.Test.Sdk from 17.14.1 to 18.3.0
Bumps MX.Api.Abstractions from 2.3.25 to 2.3.31
Bumps MX.Api.Client from 2.3.25 to 2.3.31
Bumps Polly from 8.6.5 to 8.6.6
Bumps RestSharp from 113.1.0 to 114.0.0
Bumps xunit.runner.visualstudio from 3.1.1 to 3.1.5
---
updated-dependencies:
- dependency-name: Azure.Identity
dependency-version: 1.19.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: nuget
- dependency-name: Azure.Identity
dependency-version: 1.19.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: nuget
- dependency-name: coverlet.collector
dependency-version: 8.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: nuget
- dependency-name: Microsoft.ApplicationInsights
dependency-version: 3.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: nuget
- dependency-name: Microsoft.ApplicationInsights.WorkerService
dependency-version: 3.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: nuget
- dependency-name: Microsoft.Extensions.Caching.Abstractions
dependency-version: 10.0.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: nuget
- dependency-name: Microsoft.Extensions.Configuration.Abstractions
dependency-version: 10.0.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: nuget
- dependency-name: Microsoft.Extensions.Configuration.UserSecrets
dependency-version: 10.0.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: nuget
- dependency-name: Microsoft.Extensions.DependencyInjection.Abstractions
dependency-version: 10.0.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: nuget
- dependency-name: Microsoft.Extensions.Diagnostics.HealthChecks
dependency-version: 10.0.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: nuget
- dependency-name: Microsoft.Extensions.Logging.Abstractions
dependency-version: 10.0.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: nuget
- dependency-name: Microsoft.Extensions.Options
dependency-version: 10.0.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: nuget
- dependency-name: Microsoft.NET.Test.Sdk
dependency-version: 18.3.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: nuget
- dependency-name: MX.Api.Abstractions
dependency-version: 2.3.31
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: nuget
- dependency-name: MX.Api.Abstractions
dependency-version: 2.3.31
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: nuget
- dependency-name: MX.Api.Client
dependency-version: 2.3.31
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: nuget
- dependency-name: Polly
dependency-version: 8.6.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: nuget
- dependency-name: RestSharp
dependency-version: 114.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: nuget
- dependency-name: xunit.runner.visualstudio
dependency-version: 3.1.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: nuget
...
Signed-off-by: dependabot[bot] <[email protected]>
Updated Azure.Identity from 1.17.1 to 1.19.0.
Release notes
Sourced from Azure.Identity's releases.
1.19.0
1.19.0 (2026-03-11)
Features Added
ClientCertificateCredentialto specify a path in the form ofcert:/StoreLocation/StoreName/Thumbprintto refer to a certificate in the platform certificate store - such as the Windows Certificate Store on Windows, and the KeyChain on MacOS - instead of a file on disk. For example to load a certificate from the "My" store in the "CurrentUser" location use the pathcert:/CurrentUser/My/E661583E8FABEF4C0BEF694CBC41C28FB81CD870(A community contribution, courtesy of fowl2).Other Changes
Microsoft.Identity.ClientandMicrosoft.Identity.Client.Extensions.Msaldependencies to version 4.83.1.1.18.0
1.18.0 (2026-02-25)
Features Added
Added experimental
Microsoft.Extensions.ConfigurationandMicrosoft.Extensions.DependencyInjectionintegration for Azure SDK clients. For details, see the Configuration and Dependency Injection documentation.The
WorkloadIdentityCredentialOptions.IsAzureProxyEnabledproperty, which enables Azure Kubernetes token proxy mode, is only available in beta releases of this package.AzureDeveloperCliCredentialnow parses JSON error output fromazd auth tokento extract clean error messages instead of including raw JSON in exceptions. Error messages like{"type":"consoleMessage","data":{"message":"ERROR: fetching token: ..."}}are now displayed asERROR: fetching token: ....1.18.0-beta.3
1.18.0-beta.3 (2026-02-20)
Breaking Changes
WorkloadIdentityCredentialOptions.IsAzureKubernetesTokenProxyEnabledtoIsAzureProxyEnabledto follow .NET naming conventions for boolean properties.Bugs Fixed
Fixed a NullReferenceException that occurred during X509Chain validation on Linux when using the Identity Bindings feature.
Disabled MSAL's internal retry logic for
ConfidentialClientApplicationandPublicClientApplicationto prevent double retries when combined with Azure SDK's retry policy. Only the configured Azure SDK retry policy is applied, avoiding unexpected additional retry attempts.Commits viewable in compare view.
Updated coverlet.collector from 6.0.4 to 8.0.0.
Release notes
Sourced from coverlet.collector's releases.
8.0.0
Special Thanks: A huge thank you to @Bertk for driving the majority of the work in this release! 🎉
Fixed
Improvements
Diff between 6.0.4 and 8.0.0
Commits viewable in compare view.
Updated Microsoft.ApplicationInsights from 2.23.0 to 3.0.0.
Release notes
Sourced from Microsoft.ApplicationInsights's releases.
3.0.0
netstandard2.0withnet8.0target framework inMicrosoft.ApplicationInsights.NLogTargetpackage.3.0.0-rc1
netstandard2.0target framework fromMicrosoft.ApplicationInsights,Microsoft.ApplicationInsights.AspNetCore, andMicrosoft.ApplicationInsights.WorkerServicepackages.Microsoft.ApplicationInsights.AspNetCorehas been updated to version 10.EnabledAdaptiveSamplingand replaced withTracesPerSecondandSamplingRatioEnableTraceBasedLogsSamplerproperty toApplicationInsightsServiceOptionsfor ASP.NET Core and WorkerService packagesStorageDirectoryandDisableOfflineStoragefromTelemetryConfigurationin DI scenarios3.0.0-beta2
Added
Bug fix
3.0.0-beta1
Commits viewable in compare view.
Updated Microsoft.ApplicationInsights.WorkerService from 2.23.0 to 3.0.0.
Release notes
Sourced from Microsoft.ApplicationInsights.WorkerService's releases.
3.0.0
netstandard2.0withnet8.0target framework inMicrosoft.ApplicationInsights.NLogTargetpackage.3.0.0-rc1
netstandard2.0target framework fromMicrosoft.ApplicationInsights,Microsoft.ApplicationInsights.AspNetCore, andMicrosoft.ApplicationInsights.WorkerServicepackages.Microsoft.ApplicationInsights.AspNetCorehas been updated to version 10.EnabledAdaptiveSamplingand replaced withTracesPerSecondandSamplingRatioEnableTraceBasedLogsSamplerproperty toApplicationInsightsServiceOptionsfor ASP.NET Core and WorkerService packagesStorageDirectoryandDisableOfflineStoragefromTelemetryConfigurationin DI scenarios3.0.0-beta2
Added
Bug fix
3.0.0-beta1
Commits viewable in compare view.
Updated Microsoft.Extensions.Caching.Abstractions from 10.0.3 to 10.0.5.
Release notes
Sourced from Microsoft.Extensions.Caching.Abstractions's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.Extensions.Configuration.Abstractions from 10.0.3 to 10.0.5.
Release notes
Sourced from Microsoft.Extensions.Configuration.Abstractions's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.Extensions.Configuration.UserSecrets from 10.0.3 to 10.0.5.
Release notes
Sourced from Microsoft.Extensions.Configuration.UserSecrets's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.Extensions.DependencyInjection.Abstractions from 10.0.3 to 10.0.5.
Release notes
Sourced from Microsoft.Extensions.DependencyInjection.Abstractions's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.Extensions.Diagnostics.HealthChecks from 10.0.3 to 10.0.5.
Release notes
Sourced from Microsoft.Extensions.Diagnostics.HealthChecks's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.Extensions.Logging.Abstractions from 10.0.3 to 10.0.5.
Release notes
Sourced from Microsoft.Extensions.Logging.Abstractions's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.Extensions.Options from 10.0.3 to 10.0.5.
Release notes
Sourced from Microsoft.Extensions.Options's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.NET.Test.Sdk from 17.14.1 to 18.3.0.
Release notes
Sourced from Microsoft.NET.Test.Sdk's releases.
18.3.0
What's Changed
Internal fixes and updates
New Contributors
18.0.1
What's Changed
Fixing an issue with loading covrun64.dll on systems that have .NET 10 SDK installed: https://learn.microsoft.com/en-us/dotnet/core/compatibility/sdk/10.0/code-coverage-dynamic-native-instrumentation
Internal changes
Full Changelog: microsoft/vstest@v18.0.0...v18.0.1
18.0.0
What's Changed
Internal fixes and updates
... (truncated)
Commits viewable in compare view.
Updated MX.Api.Abstractions from 2.3.25 to 2.3.31.
Release notes
Sourced from MX.Api.Abstractions's releases.
2.3.31
What's Changed
Full Changelog: frasermolyneux/api-client-abstractions@v2.3.25...v2.3.31
Commits viewable in compare view.
Updated MX.Api.Client from 2.3.25 to 2.3.31.
Release notes
Sourced from MX.Api.Client's releases.
2.3.31
What's Changed
Full Changelog: frasermolyneux/api-client-abstractions@v2.3.25...v2.3.31
Commits viewable in compare view.
Updated Polly from 8.6.5 to 8.6.6.
Release notes
Sourced from Polly's releases.
8.6.6
Highlights
ScheduledTaskExecutordeadlock whenTrySetResultruns continuations inline by @crnhrv in FixScheduledTaskExecutordeadlock whenTrySetResultruns continuations inline App-vNext/Polly#2953What's Changed
New Contributors
ScheduledTaskExecutordeadlock whenTrySetResultruns continuations inline App-vNext/Polly#2953Full Changelog: App-vNext/Polly@8.6.5...8.6.6
Commits viewable in compare view.
Updated RestSharp from 113.1.0 to 114.0.0.
Release notes
Sourced from RestSharp's releases.
114.0.0
What's Changed
Full Changelog: restsharp/RestSharp@113.1.0...114.0.0
Commits viewable in compare view.
Updated xunit.runner.visualstudio from 3.1.1 to 3.1.5.
Release notes
Sourced from xunit.runner.visualstudio's releases.
No release notes found for this version range.
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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