Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 17, 2025

Updated AWSSDK.Extensions.NETCore.Setup from 3.7.400 to 4.0.3.7.

Release notes

Sourced from AWSSDK.Extensions.NETCore.Setup's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated AWSSDK.SimpleNotificationService from 3.7.400.147 to 4.0.1.9.

Release notes

Sourced from AWSSDK.SimpleNotificationService's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated csharpier from 1.0.1 to 1.1.2.

Release notes

Sourced from csharpier's releases.

1.1.2

What's Changed

Inconsistencies with null-coalescing wrapping on method chains #​1573

On longer method chains, depending on the exact chain a null coalescing expression wouldn't always be preceded by a new line.

// input & expected output
var x =
    someValue
        .Property.CallLongMethod_____________________________________()
        .CallMethod__________()
    ?? throw new Exception();

var x =
    someValue
        .Property.CallLongMethod_____________________________________()
        .CallLongMethod___________________________________________________()
    ?? throw new Exception();

// 1.1.1
var x =
    someValue
        .Property.CallLongMethod_____________________________________()
        .CallMethod__________() ?? throw new Exception();

var x =
    someValue
        .Property.CallLongMethod_____________________________________()
        .CallLongMethod___________________________________________________()
    ?? throw new Exception();

Full Changelog: belav/csharpier@1.1.1...1.1.2

1.1.1

What's Changed

Unhandled exception: System.ArgumentOutOfRangeException: startIndex cannot be larger than length of string. (Parameter 'startIndex') #​1673

CSharpier was throwing an exception when formating a directory contained a file without an extension.

1.1.0

What's Changed

.gitignore from parent folders impacts formatting of children #​1627

CSharpier will no longer consider .gitignore files located above the root of the current git repository.

Changes to stdin formatting #​288 #​1657

There is a new option --stdin-filepath that is used to specify the filepath CSharpier should use for resolving options and ignore files.
When no path is specified via stdin-path

  • No ignore files are considered.
  • The current directory is considered when locating options
  • The file is assumed to be c# unless the first non-whitespace character is < in which case it is assumed to be xml.

Support for C# 14 and .NET 10 #​1654 #​1646

Changes were required to support the following

  • Extension Declarations
  • File level directives in file based C# Apps

Support --ignore-path CLI option #​1585

It is now possible to specify the path to an ignore file

dotnet csharpier format . --ignore-path .config/.csharpierignore

Format xaml and slnx by default #​1628 #​1604

CSharpier now formats xaml and slnx by default without the need for configuration changes.

XML formatting is not taking into account EOL configuration on multiline comments #​1660

When formatting the following XML, CSharpier would always use the system system default for ending lines within the comment instead of the respecting the configured EOL setting.

<Element>
  <!--
  Comment with EOL
  -->
</Element>

Error when no read access to intermediate containing folder #​1656

In the case that CSharpier had access to a sub directory but not the parent of that sub directory, it was failing with an exception. That has been resolved.

Misleading message after "csharpier check" #​1645

Previously the format and check commands both used the same output message. The check command now correctly reports that it checked files and did not format them.

# 1.0.3
dotnet csharpier check .
Formatted 13226 files in 21986ms.

# 1.1.0
dotnet csharpier check .
Checked 13226 files in 21986ms.

Multiline collection expressions should not be indented #​1635

CSharpier now formats collection expressions consistently when they are in a property

// input & expected output
public class ClassName
{
    public SomeObject LongValue = new
 ... (truncated)

## 1.0.3

## What's Changed
### Switch block case with conditionals adding newlines [#​1630](https://github.com/belav/csharpier/issues/1630)
Switch blocks were breaking on conditions within patterns.
```c#
// input and expected output
switch ("")
{
    case "" or "":
        break;
}

// 1.0.2
switch ("")
{
    case ""
    or "":
        break;
}

switch expression formatting adds odd newlines #​1620

CSharpier was breaking after a discard with a when, resulting in extra new lines

// input and expected output
_ = someValue switch
{
    _ when KeepWhenWithDiscard() => "",
    _ when KeepWhenWithDiscard_________________(
            SomeObject_______________________________________________
        ) => "",
    _ when KeepWhenWithDiscard_________________(
            SomeObject_______________________________________________
        ) => "LongString_____________________________________________________________________",
};

// 1.0.2
_ = someValue switch
{
    _ when KeepWhenWithDiscard() => "",
    _
        when KeepWhenWithDiscard_________________(
            SomeObject_______________________________________________
        ) => "",
    _
        when KeepWhenWithDiscard_________________(
            SomeObject_______________________________________________
        ) => "LongString_____________________________________________________________________",
};

multi-line raw string in linq query causes a subsequent linq query to be printed on one line #​1617

... (truncated)

1.0.2

What's Changed

Performance issues when supporting .gitignore. #​1588

CSharpier was using a naive algorithm for parsing and evaluating gitignore rules that caused significant perfomance issues. @​kevinboss reworked the implementation to drastically increate performance.

Exclude bin/ and obj/ directory content from xml formatting #​1600

CSharpier now excludes all files in bin/ and obj/ by default.

Error on syntactically valid conditional with is #​1612

The following c# is valid and compiles with 9.0.300+. CSharpier was updated to properly parse it.

var x = y is y ? [] : z ?? [];

Xml formatting with comments in text element inserts extra new lines #​1607

CSharpier has some issues with formatting text that contained xml comments. That has been improved.

Input & expected output

<NoWarn>
  CA1031; <!-- Since this is not a library project, catching general exceptions is OK -->
  IDE0005; <!-- Allow unused usings -->
</NoWarn>

1.0.1

<NoWarn
    >
      CA1031;
    <!-- Since this is not a library project, catching general exceptions is OK -->

    
      IDE0005;
    <!-- Allow unused usings -->
</NoWarn>

Inconsistent formatting of single-line lambda expressions #​1594

CSharpier 1.0.0 introduced a regression that caused the following formatting. This is now working as expected.

// input & expected output
        CallMethod(() => CallAnotherMethod______________________________________________________());
        CallMethod(() =>
            CallAnotherMethod______________________________________________________1()
        );
        CallMethod(() =>
            CallAnotherMethod______________________________________________________12()
        );
        CallMethod(() =>
            CallAnotherMethod______________________________________________________123()
        );

// 1.0.0
 ... (truncated)

Commits viewable in [compare view](https://github.com/belav/csharpier/compare/1.0.1...1.1.2).
</details>

Updated [Microsoft.AspNetCore.HeaderPropagation](https://github.com/dotnet/aspnetcore) from 9.0.8 to 9.0.10.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.AspNetCore.HeaderPropagation's releases](https://github.com/dotnet/aspnetcore/releases)._

## 9.0.10

[Release](https://github.com/dotnet/core/releases/tag/v9.0.10)

## What's Changed
* Update branding to 9.0.10 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63510
* [9.0] Make duplicate deb/rpm packages so we can sign them with the new PMC key by @​jkoritzinsky in https://github.com/dotnet/aspnetcore/pull/63249
* [release/9.0] Extend Unofficial 1ES template in IdentityModel nightly tests job by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/63465
* [release/9.0] (deps): Bump src/submodules/googletest from `373af2e` to `eb2d85e` by @​dependabot[bot] in https://github.com/dotnet/aspnetcore/pull/63501
* [release/9.0] Quarantine ResponseBody_WriteContentLength_PassedThrough by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/63533
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63304
* [release/9.0] [OpenAPI] Use invariant culture for TextWriter by @​martincostello in https://github.com/dotnet/aspnetcore/pull/62239
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63303
* Unquarantine `RadioButtonGetsResetAfterSubmittingEnhancedForm` by @​ilonatommy in https://github.com/dotnet/aspnetcore/pull/63556
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63577
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63604
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63648
* backport(9.0): Fix runtime architecture detection logic in ANCM. by @​DeagleGross in https://github.com/dotnet/aspnetcore/pull/63707


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v9.0.9...v9.0.10

## 9.0.9

[Release](https://github.com/dotnet/core/releases/tag/v9.0.9)

## What's Changed
* Update branding to 9.0.9 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63107
* [release/9.0] (deps): Bump src/submodules/googletest from `c67de11` to `373af2e` by @​dependabot[bot] in https://github.com/dotnet/aspnetcore/pull/63035
* [release/9.0] Dispose the certificate chain elements with the chain by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/62992
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/62702
* [release/9.0] Update Microsoft.Build versions by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/62505
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/62832
* [release/9.0] Update SignalR Redis tests to use internal Docker Hub mirror by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/63116
* [release/9.0] [SignalR] Don't throw for message headers in Java client by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/62783
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63151
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63190
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63214


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v9.0.8...v9.0.9

Commits viewable in [compare view](https://github.com/dotnet/aspnetcore/commits/v9.0.10).
</details>

Updated [Microsoft.AspNetCore.Mvc.Testing](https://github.com/dotnet/aspnetcore) from 9.0.8 to 9.0.10.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.AspNetCore.Mvc.Testing's releases](https://github.com/dotnet/aspnetcore/releases)._

## 9.0.10

[Release](https://github.com/dotnet/core/releases/tag/v9.0.10)

## What's Changed
* Update branding to 9.0.10 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63510
* [9.0] Make duplicate deb/rpm packages so we can sign them with the new PMC key by @​jkoritzinsky in https://github.com/dotnet/aspnetcore/pull/63249
* [release/9.0] Extend Unofficial 1ES template in IdentityModel nightly tests job by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/63465
* [release/9.0] (deps): Bump src/submodules/googletest from `373af2e` to `eb2d85e` by @​dependabot[bot] in https://github.com/dotnet/aspnetcore/pull/63501
* [release/9.0] Quarantine ResponseBody_WriteContentLength_PassedThrough by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/63533
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63304
* [release/9.0] [OpenAPI] Use invariant culture for TextWriter by @​martincostello in https://github.com/dotnet/aspnetcore/pull/62239
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63303
* Unquarantine `RadioButtonGetsResetAfterSubmittingEnhancedForm` by @​ilonatommy in https://github.com/dotnet/aspnetcore/pull/63556
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63577
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63604
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63648
* backport(9.0): Fix runtime architecture detection logic in ANCM. by @​DeagleGross in https://github.com/dotnet/aspnetcore/pull/63707


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v9.0.9...v9.0.10

## 9.0.9

[Release](https://github.com/dotnet/core/releases/tag/v9.0.9)

## What's Changed
* Update branding to 9.0.9 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63107
* [release/9.0] (deps): Bump src/submodules/googletest from `c67de11` to `373af2e` by @​dependabot[bot] in https://github.com/dotnet/aspnetcore/pull/63035
* [release/9.0] Dispose the certificate chain elements with the chain by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/62992
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/62702
* [release/9.0] Update Microsoft.Build versions by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/62505
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/62832
* [release/9.0] Update SignalR Redis tests to use internal Docker Hub mirror by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/63116
* [release/9.0] [SignalR] Don't throw for message headers in Java client by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/62783
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63151
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63190
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63214


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v9.0.8...v9.0.9

Commits viewable in [compare view](https://github.com/dotnet/aspnetcore/commits/v9.0.10).
</details>

Updated [Microsoft.Extensions.DependencyInjection.Abstractions](https://github.com/dotnet/runtime) from 9.0.8 to 9.0.10.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.DependencyInjection.Abstractions's releases](https://github.com/dotnet/runtime/releases)._

## 9.0.10

[Release](https://github.com/dotnet/runtime/releases/tag/v9.0.9)

## What's Changed
* [release/9.0-staging] Disable release assert on disallowed thread re-initialization for managed C++ by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118842
* [release/9.0-staging] [wasm][AOT] fix codegen for small structs on stack by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118416
* Update branding to 9.0.10 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/119280
* [release/9.0-staging] Don't use vfork on android by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118331
* [release/9.0-staging] [mono][debugger] Fix assertion when stepping by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118459
* [release/9.0-staging][maccatalyst] Check for -Wno-overriding-option for compatibility with clang in Xcode 16.3+  by @​akoeplinger in https://github.com/dotnet/runtime/pull/119301
* [release/9.0-staging][HTTP] Stress fix for docker compose by @​ManickaP in https://github.com/dotnet/runtime/pull/119455
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/119505
* [9.0] Preserve Lock ID Members by @​jkoritzinsky in https://github.com/dotnet/runtime/pull/119281
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118940
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118151
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118372
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118423
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118193
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118758
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119619
* [release/9.0-staging] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119598
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119620
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119051
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118492
* [release/9.0-staging] [H/3] Fix interop tests. by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119522
* [release/9.0-staging] Disable tests parallelization in flaky OleDB tests by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119626
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119690
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118224
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119677
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119635
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119669
* [release/9.0-staging] Fix recursion issue found in PROCCreateCrashDump by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119128
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119742
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119721
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119753
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119793
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119809
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119832
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119830
* Backport macOS 26 Tahoe test fixes to release/9.0-staging by @​vcsjones in https://github.com/dotnet/runtime/pull/119716
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119871
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119872
* [release/9.0-staging] Disable Multicast SocketOption test by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119889
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119932
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119900
* [manual] Merge release/9.0-staging into release/9.0 by @​tarekgh in https://github.com/dotnet/runtime/pull/119966
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/120025
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/120111


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.9...v9.0.10

## 9.0.9

[Release](https://github.com/dotnet/runtime/releases/tag/v9.0.9)

## What's Changed
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/117671
* [release/9.0-staging] [Test Only] Fix BuildChainCustomTrustStore test by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/117761
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117742
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117872
* [release/9.0-staging] Update dependencies from dotnet/sdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117873
* Revert "[release/9.0-staging] Update dependencies from dotnet/sdk" by @​lewing in https://github.com/dotnet/runtime/pull/118001
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117910
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117962
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118080
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118114
* [release/9.0-staging] Fix broken debugger/debuggee startup handshake protocol on macOS26. by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118212
* [release/9.0-staging] [NRBF] Allow the users to decode System.Nullable<UserStruct> by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118328
* [release/9.0-staging] [Test Only] Disable/modify some TimeZoneInfoTests on Android by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118455
* Update branding to 9.0.9 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/118349
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/118451
* [release/9.0-staging] Revert "Remove custom allocator." by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118279
* [release/9.0] Merge release/9.0-staging changes by @​krwq in https://github.com/dotnet/runtime/pull/118764
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117879


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.8...v9.0.9

Commits viewable in [compare view](https://github.com/dotnet/runtime/compare/v9.0.8...v9.0.10).
</details>

Updated [Microsoft.Extensions.Diagnostics.HealthChecks](https://github.com/dotnet/aspnetcore) from 9.0.8 to 9.0.10.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.Diagnostics.HealthChecks's releases](https://github.com/dotnet/aspnetcore/releases)._

## 9.0.10

[Release](https://github.com/dotnet/core/releases/tag/v9.0.10)

## What's Changed
* Update branding to 9.0.10 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63510
* [9.0] Make duplicate deb/rpm packages so we can sign them with the new PMC key by @​jkoritzinsky in https://github.com/dotnet/aspnetcore/pull/63249
* [release/9.0] Extend Unofficial 1ES template in IdentityModel nightly tests job by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/63465
* [release/9.0] (deps): Bump src/submodules/googletest from `373af2e` to `eb2d85e` by @​dependabot[bot] in https://github.com/dotnet/aspnetcore/pull/63501
* [release/9.0] Quarantine ResponseBody_WriteContentLength_PassedThrough by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/63533
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63304
* [release/9.0] [OpenAPI] Use invariant culture for TextWriter by @​martincostello in https://github.com/dotnet/aspnetcore/pull/62239
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63303
* Unquarantine `RadioButtonGetsResetAfterSubmittingEnhancedForm` by @​ilonatommy in https://github.com/dotnet/aspnetcore/pull/63556
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63577
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63604
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63648
* backport(9.0): Fix runtime architecture detection logic in ANCM. by @​DeagleGross in https://github.com/dotnet/aspnetcore/pull/63707


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v9.0.9...v9.0.10

## 9.0.9

[Release](https://github.com/dotnet/core/releases/tag/v9.0.9)

## What's Changed
* Update branding to 9.0.9 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63107
* [release/9.0] (deps): Bump src/submodules/googletest from `c67de11` to `373af2e` by @​dependabot[bot] in https://github.com/dotnet/aspnetcore/pull/63035
* [release/9.0] Dispose the certificate chain elements with the chain by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/62992
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/62702
* [release/9.0] Update Microsoft.Build versions by @​wtgodbe in https://github.com/dotnet/aspnetcore/pull/62505
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/62832
* [release/9.0] Update SignalR Redis tests to use internal Docker Hub mirror by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/63116
* [release/9.0] [SignalR] Don't throw for message headers in Java client by @​github-actions[bot] in https://github.com/dotnet/aspnetcore/pull/62783
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/aspnetcore/pull/63151
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63190
* [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro[bot] in https://github.com/dotnet/aspnetcore/pull/63214


**Full Changelog**: https://github.com/dotnet/aspnetcore/compare/v9.0.8...v9.0.9

Commits viewable in [compare view](https://github.com/dotnet/aspnetcore/commits/v9.0.10).
</details>

Updated [Microsoft.Extensions.Diagnostics.Testing](https://github.com/dotnet/extensions) from 9.8.0 to 9.10.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.Diagnostics.Testing's releases](https://github.com/dotnet/extensions/releases)._

## 9.10.0

## What's Changed
* Branding updates for 9.10 by @​Copilot in https://github.com/dotnet/extensions/pull/6769
* Doc improvements by @​gewarren in https://github.com/dotnet/extensions/pull/6794
* Bump vite from 6.3.5 to 6.3.6 in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript by @​dependabot[bot] in https://github.com/dotnet/extensions/pull/6793
* Updated changelogs for AI libs by @​stephentoub in https://github.com/dotnet/extensions/pull/6787
* Update MCP server template by @​jeffkl in https://github.com/dotnet/extensions/pull/6772
* Add support for using ConversationID for AzureOpenAI and OpenAI by @​ViveliDuCh in https://github.com/dotnet/extensions/pull/6770
* Merging internal commits by @​joperezr in https://github.com/dotnet/extensions/pull/6801
* Merge changes from release/9.9 branch by @​joperezr in https://github.com/dotnet/extensions/pull/6803
* Support keyed HybridCache with keyed DistributedCaches and named options by @​kelly-yinn in https://github.com/dotnet/extensions/pull/6694
* Inventory as code by @​wtgodbe in https://github.com/dotnet/extensions/pull/6820
* Increase output token limit for EquivalenceEvaluator by @​shyamnamboodiripad in https://github.com/dotnet/extensions/pull/6835
* Fix KeyNotFoundException on HttpRequestLatencyListener.OnEventWritten for uknown event sources by @​ssmelov in https://github.com/dotnet/extensions/pull/6821
* Add project name normalization to match aspire's code generator logic by @​ViveliDuCh in https://github.com/dotnet/extensions/pull/6818
* Disable really noisy analyzers, part 1 by @​stephentoub in https://github.com/dotnet/extensions/pull/6837
* Fix `KeyNotFoundException` in `HttpRequestLatencyListener.OnEventWritten` by @​pentp in https://github.com/dotnet/extensions/pull/6823
* Update global.json to use .NET 9.0.0 stable instead of RC 1 by @​Copilot in https://github.com/dotnet/extensions/pull/6846
* Add measures and tags with mediator object to the HttpClientLatencyLogEnricher by @​rainsxng in https://github.com/dotnet/extensions/pull/6783
* Add comprehensive .github/copilot-instructions.md for dotnet/extensions repository by @​Copilot in https://github.com/dotnet/extensions/pull/6792
* Update to .NET 10 SDK by @​eerhardt in https://github.com/dotnet/extensions/pull/6863
* Update Microsoft.Extensions.AI changelog files with current NuGet versions by @​Copilot in https://github.com/dotnet/extensions/pull/6849
* Fix GenerateImagesAsync_SingleImageGeneration integration test by @​stephentoub in https://github.com/dotnet/extensions/pull/6843
* Re-enable IDE0032 by @​stephentoub in https://github.com/dotnet/extensions/pull/6866
* Add OpenTelemetrySpeechToTextClient and friends by @​stephentoub in https://github.com/dotnet/extensions/pull/6845
* Update `ModelContextProtocol` version in MCP template by @​MackinnonBuck in https://github.com/dotnet/extensions/pull/6870
* Scope Ollama resilience settings to Web/Program.cs and restore ServiceDefaults by @​ViveliDuCh in https://github.com/dotnet/extensions/pull/6850
* Update Aspire by @​Varorbc in https://github.com/dotnet/extensions/pull/6858
* Update MCP template for new registry specification by @​Copilot in https://github.com/dotnet/extensions/pull/6796
* Add support for `HostApplicationBuilder` in AmbientMetadata extension by @​eduherminio in https://github.com/dotnet/extensions/pull/6867
* Fix mcpserver test baselines by @​jeffhandley in https://github.com/dotnet/extensions/pull/6874
* Move Microsoft.Extensions.ServiceDiscovery to dotnet/extensions by @​eerhardt in https://github.com/dotnet/extensions/pull/6868
* Add copy constructors to option types (ChatOptions, etc.) by @​stephentoub in https://github.com/dotnet/extensions/pull/6882
* Fix ChatMessage.CreatedAt being always overwritten by the latest timestamp. by @​Copilot in https://github.com/dotnet/extensions/pull/6885
* Small doc fixes by @​gewarren in https://github.com/dotnet/extensions/pull/6887
* Update AI changelogs with some recent additions by @​stephentoub in https://github.com/dotnet/extensions/pull/6886
* Fix Assistants IChatClient handling of unrelated tool calls in history by @​stephentoub in https://github.com/dotnet/extensions/pull/6891
* Fix duplication between OpenAI Assistants pre-configured tools by @​stephentoub in https://github.com/dotnet/extensions/pull/6896
* Update MCP Server Template to adhere to 2025-09-29 server.json schema by @​joelverhagen in https://github.com/dotnet/extensions/pull/6888
* Remove Azure.AI.OpenAI dependency from templates and tests by @​Copilot in https://github.com/dotnet/extensions/pull/6873
* Remove UnsafeRelaxedJsonEscaping by @​peterwald in https://github.com/dotnet/extensions/pull/6899
* Fix bug to yield remaining buffered FCC by @​westey-m in https://github.com/dotnet/extensions/pull/6903
* Fix serialization of [Experimental] AIContent-derived types by @​stephentoub in https://github.com/dotnet/extensions/pull/6900

## New Contributors
* @​westey-m made their first contribution in https://github.com/dotnet/extensions/pull/6745
* @​jeffkl made their first contribution in https://github.com/dotnet/extensions/pull/6772
* @​ViveliDuCh made their first contribution in https://github.com/dotnet/extensions/pull/6770
* @​kelly-yinn made their first contribution in https://github.com/dotnet/extensions/pull/6694
* @​ssmelov made their first contribution in https://github.com/dotnet/extensions/pull/6821
* @​Varorbc made their first contribution in https://github.com/dotnet/extensions/pull/6858
 ... (truncated)

## 9.9.0

## Highlights

### AI
- Abstractions for **remote MCP servers**; response/approval flow support via new experimental types
- **Function approvals** via new experimental types (e.g., `ApprovalRequiredAIFunction`, user input/approval request & response content).
- **Reasoning text streaming** for OpenAI Responses ChatClient streaming.
- **`AIFunction` split** into a base class to improve extensibility.
- **`IChatReducer` moved** to `Microsoft.Extensions.AI.Abstractions`.
- Updated to **OpenAI 2.4.0** and **genai standard convention 1.37**.
- Coalescing logic now treats **`ChatMessage.Role` changes** as new messages.
- **`GetResponseAsync<T>`** now reads only the **last** message (bug fix).
- OpenTelemetry ChatClient/EmbeddingGenerator logs **raw additional properties** (no key mangling).
- Fixed **empty annotated text chunk** handling in streaming with OpenAI Assistants.

### Telemetry & Diagnostics
- HTTP diagnostics log **query string params** with proper redaction (emitted on `url.query`).
- `server.address` telemetry emits **host only** (per OpenTelemetry semantic conventions).
- Heuristics added to detect **well-known model hosts**.
- Resource monitoring can consider **`Environment.CpuUsage`**.

## New Contributors
* @​ykumashev made their first contribution in https://github.com/dotnet/extensions/pull/6696

**Full Changelog**: https://github.com/dotnet/extensions/compare/v9.8.0...v9.9.0

Commits viewable in [compare view](https://github.com/dotnet/extensions/compare/v9.8.0...v9.10.0).
</details>

Updated [Microsoft.Extensions.Hosting.Abstractions](https://github.com/dotnet/runtime) from 9.0.8 to 9.0.10.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.Hosting.Abstractions's releases](https://github.com/dotnet/runtime/releases)._

## 9.0.10

[Release](https://github.com/dotnet/runtime/releases/tag/v9.0.9)

## What's Changed
* [release/9.0-staging] Disable release assert on disallowed thread re-initialization for managed C++ by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118842
* [release/9.0-staging] [wasm][AOT] fix codegen for small structs on stack by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118416
* Update branding to 9.0.10 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/119280
* [release/9.0-staging] Don't use vfork on android by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118331
* [release/9.0-staging] [mono][debugger] Fix assertion when stepping by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118459
* [release/9.0-staging][maccatalyst] Check for -Wno-overriding-option for compatibility with clang in Xcode 16.3+  by @​akoeplinger in https://github.com/dotnet/runtime/pull/119301
* [release/9.0-staging][HTTP] Stress fix for docker compose by @​ManickaP in https://github.com/dotnet/runtime/pull/119455
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/119505
* [9.0] Preserve Lock ID Members by @​jkoritzinsky in https://github.com/dotnet/runtime/pull/119281
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118940
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118151
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118372
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118423
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118193
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118758
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119619
* [release/9.0-staging] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119598
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119620
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119051
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118492
* [release/9.0-staging] [H/3] Fix interop tests. by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119522
* [release/9.0-staging] Disable tests parallelization in flaky OleDB tests by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119626
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119690
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118224
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119677
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119635
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119669
* [release/9.0-staging] Fix recursion issue found in PROCCreateCrashDump by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119128
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119742
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119721
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119753
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119793
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119809
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119832
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119830
* Backport macOS 26 Tahoe test fixes to release/9.0-staging by @​vcsjones in https://github.com/dotnet/runtime/pull/119716
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119871
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119872
* [release/9.0-staging] Disable Multicast SocketOption test by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119889
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119932
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119900
* [manual] Merge release/9.0-staging into release/9.0 by @​tarekgh in https://github.com/dotnet/runtime/pull/119966
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/120025
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/120111


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.9...v9.0.10

## 9.0.9

[Release](https://github.com/dotnet/runtime/releases/tag/v9.0.9)

## What's Changed
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/117671
* [release/9.0-staging] [Test Only] Fix BuildChainCustomTrustStore test by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/117761
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117742
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117872
* [release/9.0-staging] Update dependencies from dotnet/sdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117873
* Revert "[release/9.0-staging] Update dependencies from dotnet/sdk" by @​lewing in https://github.com/dotnet/runtime/pull/118001
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117910
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117962
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118080
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118114
* [release/9.0-staging] Fix broken debugger/debuggee startup handshake protocol on macOS26. by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118212
* [release/9.0-staging] [NRBF] Allow the users to decode System.Nullable<UserStruct> by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118328
* [release/9.0-staging] [Test Only] Disable/modify some TimeZoneInfoTests on Android by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118455
* Update branding to 9.0.9 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/118349
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/118451
* [release/9.0-staging] Revert "Remove custom allocator." by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118279
* [release/9.0] Merge release/9.0-staging changes by @​krwq in https://github.com/dotnet/runtime/pull/118764
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117879


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.8...v9.0.9

Commits viewable in [compare view](https://github.com/dotnet/runtime/compare/v9.0.8...v9.0.10).
</details>

Updated [Microsoft.Extensions.Http](https://github.com/dotnet/runtime) from 9.0.8 to 9.0.10.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.Http's releases](https://github.com/dotnet/runtime/releases)._

## 9.0.10

[Release](https://github.com/dotnet/runtime/releases/tag/v9.0.9)

## What's Changed
* [release/9.0-staging] Disable release assert on disallowed thread re-initialization for managed C++ by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118842
* [release/9.0-staging] [wasm][AOT] fix codegen for small structs on stack by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118416
* Update branding to 9.0.10 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/119280
* [release/9.0-staging] Don't use vfork on android by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118331
* [release/9.0-staging] [mono][debugger] Fix assertion when stepping by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118459
* [release/9.0-staging][maccatalyst] Check for -Wno-overriding-option for compatibility with clang in Xcode 16.3+  by @​akoeplinger in https://github.com/dotnet/runtime/pull/119301
* [release/9.0-staging][HTTP] Stress fix for docker compose by @​ManickaP in https://github.com/dotnet/runtime/pull/119455
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/119505
* [9.0] Preserve Lock ID Members by @​jkoritzinsky in https://github.com/dotnet/runtime/pull/119281
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118940
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118151
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118372
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118423
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118193
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118758
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119619
* [release/9.0-staging] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119598
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119620
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119051
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118492
* [release/9.0-staging] [H/3] Fix interop tests. by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119522
* [release/9.0-staging] Disable tests parallelization in flaky OleDB tests by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119626
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119690
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118224
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119677
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119635
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119669
* [release/9.0-staging] Fix recursion issue found in PROCCreateCrashDump by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119128
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119742
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119721
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119753
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119793
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119809
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119832
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119830
* Backport macOS 26 Tahoe test fixes to release/9.0-staging by @​vcsjones in https://github.com/dotnet/runtime/pull/119716
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119871
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119872
* [release/9.0-staging] Disable Multicast SocketOption test by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119889
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119932
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119900
* [manual] Merge release/9.0-staging into release/9.0 by @​tarekgh in https://github.com/dotnet/runtime/pull/119966
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/120025
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/120111


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.9...v9.0.10

## 9.0.9

[Release](https://github.com/dotnet/runtime/releases/tag/v9.0.9)

## What's Changed
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/117671
* [release/9.0-staging] [Test Only] Fix BuildChainCustomTrustStore test by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/117761
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117742
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117872
* [release/9.0-staging] Update dependencies from dotnet/sdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117873
* Revert "[release/9.0-staging] Update dependencies from dotnet/sdk" by @​lewing in https://github.com/dotnet/runtime/pull/118001
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117910
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117962
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118080
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118114
* [release/9.0-staging] Fix broken debugger/debuggee startup handshake protocol on macOS26. by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118212
* [release/9.0-staging] [NRBF] Allow the users to decode System.Nullable<UserStruct> by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118328
* [release/9.0-staging] [Test Only] Disable/modify some TimeZoneInfoTests on Android by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118455
* Update branding to 9.0.9 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/118349
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/118451
* [release/9.0-staging] Revert "Remove custom allocator." by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118279
* [release/9.0] Merge release/9.0-staging changes by @​krwq in https://github.com/dotnet/runtime/pull/118764
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117879


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.8...v9.0.9

Commits viewable in [compare view](https://github.com/dotnet/runtime/compare/v9.0.8...v9.0.10).
</details>

Updated [Microsoft.Extensions.Http.Resilience](https://github.com/dotnet/extensions) from 9.8.0 to 9.10.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.Http.Resilience's releases](https://github.com/dotnet/extensions/releases)._

## 9.10.0

## What's Changed
* Branding updates for 9.10 by @​Copilot in https://github.com/dotnet/extensions/pull/6769
* Doc improvements by @​gewarren in https://github.com/dotnet/extensions/pull/6794
* Bump vite from 6.3.5 to 6.3.6 in /src/Libraries/Microsoft.Extensions.AI.Evaluation.Reporting/TypeScript by @​dependabot[bot] in https://github.com/dotnet/extensions/pull/6793
* Updated changelogs for AI libs by @​stephentoub in https://github.com/dotnet/extensions/pull/6787
* Update MCP server template by @​jeffkl in https://github.com/dotnet/extensions/pull/6772
* Add support for using ConversationID for AzureOpenAI and OpenAI by @​ViveliDuCh in https://github.com/dotnet/extensions/pull/6770
* Merging internal commits by @​joperezr in https://github.com/dotnet/extensions/pull/6801
* Merge changes from release/9.9 branch by @​joperezr in https://github.com/dotnet/extensions/pull/6803
* Support keyed HybridCache with keyed DistributedCaches and named options by @​kelly-yinn in https://github.com/dotnet/extensions/pull/6694
* Inventory as code by @​wtgodbe in https://github.com/dotnet/extensions/pull/6820
* Increase output token limit for EquivalenceEvaluator by @​shyamnamboodiripad in https://github.com/dotnet/extensions/pull/6835
* Fix KeyNotFoundException on HttpRequestLatencyListener.OnEventWritten for uknown event sources by @​ssmelov in https://github.com/dotnet/extensions/pull/6821
* Add project name normalization to match aspire's code generator logic by @​ViveliDuCh in https://github.com/dotnet/extensions/pull/6818
* Disable really noisy analyzers, part 1 by @​stephentoub in https://github.com/dotnet/extensions/pull/6837
* Fix `KeyNotFoundException` in `HttpRequestLatencyListener.OnEventWritten` by @​pentp in https://github.com/dotnet/extensions/pull/6823
* Update global.json to use .NET 9.0.0 stable instead of RC 1 by @​Copilot in https://github.com/dotnet/extensions/pull/6846
* Add measures and tags with mediator object to the HttpClientLatencyLogEnricher by @​rainsxng in https://github.com/dotnet/extensions/pull/6783
* Add comprehensive .github/copilot-instructions.md for dotnet/extensions repository by @​Copilot in https://github.com/dotnet/extensions/pull/6792
* Update to .NET 10 SDK by @​eerhardt in https://github.com/dotnet/extensions/pull/6863
* Update Microsoft.Extensions.AI changelog files with current NuGet versions by @​Copilot in https://github.com/dotnet/extensions/pull/6849
* Fix GenerateImagesAsync_SingleImageGeneration integration test by @​stephentoub in https://github.com/dotnet/extensions/pull/6843
* Re-enable IDE0032 by @​stephentoub in https://github.com/dotnet/extensions/pull/6866
* Add OpenTelemetrySpeechToTextClient and friends by @​stephentoub in https://github.com/dotnet/extensions/pull/6845
* Update `ModelContextProtocol` version in MCP template by @​MackinnonBuck in https://github.com/dotnet/extensions/pull/6870
* Scope Ollama resilience settings to Web/Program.cs and restore ServiceDefaults by @​ViveliDuCh in https://github.com/dotnet/extensions/pull/6850
* Update Aspire by @​Varorbc in https://github.com/dotnet/extensions/pull/6858
* Update MCP template for new registry specification by @​Copilot in https://github.com/dotnet/extensions/pull/6796
* Add support for `HostApplicationBuilder` in AmbientMetadata extension by @​eduherminio in https://github.com/dotnet/extensions/pull/6867
* Fix mcpserver test baselines by @​jeffhandley in https://github.com/dotnet/extensions/pull/6874
* Move Microsoft.Extensions.ServiceDiscovery to dotnet/extensions by @​eerhardt in https://github.com/dotnet/extensions/pull/6868
* Add copy constructors to option types (ChatOptions, etc.) by @​stephentoub in https://github.com/dotnet/extensions/pull/6882
* Fix ChatMessage.CreatedAt being always overwritten by the latest timestamp. by @​Copilot in https://github.com/dotnet/extensions/pull/6885
* Small doc fixes by @​gewarren in https://github.com/dotnet/extensions/pull/6887
* Update AI changelogs with some recent additions by @​stephentoub in https://github.com/dotnet/extensions/pull/6886
* Fix Assistants IChatClient handling of unrelated tool calls in history by @​stephentoub in https://github.com/dotnet/extensions/pull/6891
* Fix duplication between OpenAI Assistants pre-configured tools by @​stephentoub in https://github.com/dotnet/extensions/pull/6896
* Update MCP Server Template to adhere to 2025-09-29 server.json schema by @​joelverhagen in https://github.com/dotnet/extensions/pull/6888
* Remove Azure.AI.OpenAI dependency from templates and tests by @​Copilot in https://github.com/dotnet/extensions/pull/6873
* Remove UnsafeRelaxedJsonEscaping by @​peterwald in https://github.com/dotnet/extensions/pull/6899
* Fix bug to yield remaining buffered FCC by @​westey-m in https://github.com/dotnet/extensions/pull/6903
* Fix serialization of [Experimental] AIContent-derived types by @​stephentoub in https://github.com/dotnet/extensions/pull/6900

## New Contributors
* @​westey-m made their first contribution in https://github.com/dotnet/extensions/pull/6745
* @​jeffkl made their first contribution in https://github.com/dotnet/extensions/pull/6772
* @​ViveliDuCh made their first contribution in https://github.com/dotnet/extensions/pull/6770
* @​kelly-yinn made their first contribution in https://github.com/dotnet/extensions/pull/6694
* @​ssmelov made their first contribution in https://github.com/dotnet/extensions/pull/6821
* @​Varorbc made their first contribution in https://github.com/dotnet/extensions/pull/6858
 ... (truncated)

## 9.9.0

## Highlights

### AI
- Abstractions for **remote MCP servers**; response/approval flow support via new experimental types
- **Function approvals** via new experimental types (e.g., `ApprovalRequiredAIFunction`, user input/approval request & response content).
- **Reasoning text streaming** for OpenAI Responses ChatClient streaming.
- **`AIFunction` split** into a base class to improve extensibility.
- **`IChatReducer` moved** to `Microsoft.Extensions.AI.Abstractions`.
- Updated to **OpenAI 2.4.0** and **genai standard convention 1.37**.
- Coalescing logic now treats **`ChatMessage.Role` changes** as new messages.
- **`GetResponseAsync<T>`** now reads only the **last** message (bug fix).
- OpenTelemetry ChatClient/EmbeddingGenerator logs **raw additional properties** (no key mangling).
- Fixed **empty annotated text chunk** handling in streaming with OpenAI Assistants.

### Telemetry & Diagnostics
- HTTP diagnostics log **query string params** with proper redaction (emitted on `url.query`).
- `server.address` telemetry emits **host only** (per OpenTelemetry semantic conventions).
- Heuristics added to detect **well-known model hosts**.
- Resource monitoring can consider **`Environment.CpuUsage`**.

## New Contributors
* @​ykumashev made their first contribution in https://github.com/dotnet/extensions/pull/6696

**Full Changelog**: https://github.com/dotnet/extensions/compare/v9.8.0...v9.9.0

Commits viewable in [compare view](https://github.com/dotnet/extensions/compare/v9.8.0...v9.10.0).
</details>

Updated [Microsoft.Extensions.Logging.Abstractions](https://github.com/dotnet/runtime) from 9.0.8 to 9.0.10.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.Logging.Abstractions's releases](https://github.com/dotnet/runtime/releases)._

## 9.0.10

[Release](https://github.com/dotnet/runtime/releases/tag/v9.0.9)

## What's Changed
* [release/9.0-staging] Disable release assert on disallowed thread re-initialization for managed C++ by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118842
* [release/9.0-staging] [wasm][AOT] fix codegen for small structs on stack by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118416
* Update branding to 9.0.10 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/119280
* [release/9.0-staging] Don't use vfork on android by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118331
* [release/9.0-staging] [mono][debugger] Fix assertion when stepping by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118459
* [release/9.0-staging][maccatalyst] Check for -Wno-overriding-option for compatibility with clang in Xcode 16.3+  by @​akoeplinger in https://github.com/dotnet/runtime/pull/119301
* [release/9.0-staging][HTTP] Stress fix for docker compose by @​ManickaP in https://github.com/dotnet/runtime/pull/119455
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/119505
* [9.0] Preserve Lock ID Members by @​jkoritzinsky in https://github.com/dotnet/runtime/pull/119281
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118940
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118151
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118372
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118423
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118193
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro[bot] in https://gith...

_Description has been truncated_

Bumps AWSSDK.Extensions.NETCore.Setup from 3.7.400 to 4.0.3.7
Bumps AWSSDK.SimpleNotificationService from 3.7.400.147 to 4.0.1.9
Bumps csharpier from 1.0.1 to 1.1.2
Bumps Microsoft.AspNetCore.HeaderPropagation from 9.0.8 to 9.0.10
Bumps Microsoft.AspNetCore.Mvc.Testing from 9.0.8 to 9.0.10
Bumps Microsoft.Extensions.DependencyInjection.Abstractions from 9.0.8 to 9.0.10
Bumps Microsoft.Extensions.Diagnostics.HealthChecks from 9.0.8 to 9.0.10
Bumps Microsoft.Extensions.Diagnostics.Testing from 9.8.0 to 9.10.0
Bumps Microsoft.Extensions.Hosting.Abstractions from 9.0.8 to 9.0.10
Bumps Microsoft.Extensions.Http from 9.0.8 to 9.0.10
Bumps Microsoft.Extensions.Http.Resilience from 9.8.0 to 9.10.0
Bumps Microsoft.Extensions.Logging.Abstractions from 9.0.8 to 9.0.10
Bumps Microsoft.Extensions.Options from 9.0.8 to 9.0.10
Bumps Microsoft.Extensions.Options.ConfigurationExtensions from 9.0.8 to 9.0.10
Bumps Microsoft.Extensions.Options.DataAnnotations from 9.0.8 to 9.0.10
Bumps Microsoft.NET.Test.Sdk from 17.14.1 to 18.0.0
Bumps MongoDB.Driver from 3.4.3 to 3.5.0
Bumps MongoDB.Driver.Authentication.AWS from 3.4.3 to 3.5.0
Bumps Serilog.Enrichers.ClientInfo from 2.3.0 to 2.6.0
Bumps Swashbuckle.AspNetCore from 9.0.3 to 9.0.6
Bumps swashbuckle.aspnetcore.cli from 8.1.1 to 9.0.6
Bumps Swashbuckle.AspNetCore.ReDoc from 9.0.3 to 9.0.6
Bumps Verify.Xunit from 30.7.3 to 31.0.2
Bumps WireMock.Net.FluentAssertions from 1.11.2 to 1.14.0
Bumps xunit.runner.visualstudio from 3.1.4 to 3.1.5

---
updated-dependencies:
- dependency-name: AWSSDK.Extensions.NETCore.Setup
  dependency-version: 4.0.3.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: patch
- dependency-name: AWSSDK.SimpleNotificationService
  dependency-version: 4.0.1.9
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: patch
- dependency-name: csharpier
  dependency-version: 1.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: Microsoft.AspNetCore.HeaderPropagation
  dependency-version: 9.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-version: 9.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-version: 9.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-version: 9.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: Microsoft.Extensions.DependencyInjection.Abstractions
  dependency-version: 9.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: Microsoft.Extensions.Diagnostics.HealthChecks
  dependency-version: 9.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: Microsoft.Extensions.Hosting.Abstractions
  dependency-version: 9.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: Microsoft.Extensions.Options
  dependency-version: 9.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: Microsoft.Extensions.Diagnostics.Testing
  dependency-version: 9.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: Microsoft.Extensions.Http
  dependency-version: 9.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: Microsoft.Extensions.Logging.Abstractions
  dependency-version: 9.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: Microsoft.Extensions.Http.Resilience
  dependency-version: 9.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: Microsoft.Extensions.Options.ConfigurationExtensions
  dependency-version: 9.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: Microsoft.Extensions.Options.DataAnnotations
  dependency-version: 9.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: patch
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: patch
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: patch
- dependency-name: MongoDB.Driver
  dependency-version: 3.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: MongoDB.Driver.Authentication.AWS
  dependency-version: 3.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: Serilog.Enrichers.ClientInfo
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: Swashbuckle.AspNetCore
  dependency-version: 9.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: swashbuckle.aspnetcore.cli
  dependency-version: 9.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: patch
- dependency-name: Swashbuckle.AspNetCore.ReDoc
  dependency-version: 9.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: Verify.Xunit
  dependency-version: 31.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: patch
- dependency-name: WireMock.Net.FluentAssertions
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: xunit.runner.visualstudio
  dependency-version: 3.1.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: xunit.runner.visualstudio
  dependency-version: 3.1.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: xunit.runner.visualstudio
  dependency-version: 3.1.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 20, 2025

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot bot closed this Oct 20, 2025
@dependabot dependabot bot deleted the dependabot/nuget/dot-config/patch-8279a96f6b branch October 20, 2025 11:46
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