Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 4, 2025

Updated AwesomeAssertions from 8.2.0 to 9.1.0.

Release notes

Sourced from AwesomeAssertions's releases.

9.1.0

What's Changed

What's new

Fixes

Others

Full Changelog: AwesomeAssertions/AwesomeAssertions@9.0.0...9.1.0

9.0.0

What's Changed

Others

Full Changelog: AwesomeAssertions/AwesomeAssertions@8.2.0...9.0.0

9.0.0-rc.1

What's Changed

Others

Full Changelog: AwesomeAssertions/AwesomeAssertions@8.2.0...9.0.0-rc.1

Commits viewable in compare view.

Updated csharpier from 1.0.1 to 1.1.1.

Release notes

Sourced from csharpier's releases.

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.1).
</details>

Updated [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.13.0 to 17.14.1.

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

_Sourced from [Microsoft.NET.Test.Sdk's releases](https://github.com/microsoft/vstest/releases)._

## 17.14.1

## What's Changed
* Error on unsupported target frameworks to prevent silently not running tests by @​nohwnd in https://github.com/microsoft/vstest/pull/15072 and https://github.com/microsoft/vstest/pull/15078
* Revert writing additional properties to TRX by @​nohwnd  in https://github.com/microsoft/vstest/commit/47eb51b15ad8ca4a84ad7be5881fcd1713a0f68a

**Full Changelog**: https://github.com/microsoft/vstest/compare/v17.14.0...v17.14.1

## 17.14.0

## What's Changed

### .NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does **NOT** prevent you from:

- Updating to the latest VS, and running tests from net6.0 test projects.
- Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

* Drop unsupported frameworks by @​nohwnd in https://github.com/microsoft/vstest/pull/10565

### Changes

* Adding Process Query Flag For UWP .NET 9 Support by @​adstep in https://github.com/microsoft/vstest/pull/15003
* Fix builds on WinUI and UWP .NET 9 projects by @​Sergio0694 in https://github.com/microsoft/vstest/pull/15004
* don't report communication error on discovery abort by @​nohwnd in https://github.com/microsoft/vstest/pull/14992
* Add dump minitool to vsix by @​nohwnd in https://github.com/microsoft/vstest/pull/14707
* Make test runners long-path aware (#​5179) by @​peetw in https://github.com/microsoft/vstest/pull/15014
* Fix trace in DataCollectionRequestSender.cs by @​stan-sz in https://github.com/microsoft/vstest/pull/15025
* Fix/readme grammar parallelism by @​dellch in https://github.com/microsoft/vstest/pull/15030
* Add binding redirects by @​nohwnd in https://github.com/microsoft/vstest/pull/15041
* Write props of tests into trx by @​nohwnd in https://github.com/microsoft/vstest/pull/14905

### Internal version updates and fixes

* Update io.redist by @​nohwnd in https://github.com/microsoft/vstest/pull/13872
* Use preview image for public build by @​nohwnd in https://github.com/microsoft/vstest/pull/13888
* Remove xcopy-msbuild by @​nohwnd in https://github.com/microsoft/vstest/pull/14138
* Move to macos14 by @​nohwnd in https://github.com/microsoft/vstest/pull/14137
* Update diagnose.md by @​nohwnd in https://github.com/microsoft/vstest/pull/14776
* hash with sha2 for mutex lock by @​nohwnd in https://github.com/microsoft/vstest/pull/14777
* Update test projects for vmr by @​nohwnd in https://github.com/microsoft/vstest/pull/14894
* 17.14 branding by @​nohwnd in https://github.com/microsoft/vstest/pull/14903
* Update filter.md for NUnit by @​OsirisTerje in https://github.com/microsoft/vstest/pull/14987
* Flag netstandard1.x dependencies in source-build by @​ViktorHofer in https://github.com/microsoft/vstest/pull/14986
* Use VS dependencies versions from release VS to have archived symbols by @​nohwnd in https://github.com/microsoft/vstest/pull/14991
* Remove extra ; by @​nohwnd in https://github.com/microsoft/vstest/pull/14995
* Use dependencymodel 6.0.2 by @​nohwnd in https://github.com/microsoft/vstest/pull/14996
* Make Testhost packable only on Windows by @​mmitche in https://github.com/microsoft/vstest/pull/15001
* Add system text json to vsix by @​nohwnd in https://github.com/microsoft/vstest/pull/15034
* Add more files to vsix by @​nohwnd in https://github.com/microsoft/vstest/pull/15038
* Remove unnecessary CA2022 suppressions by @​Winniexu01 in https://github.com/microsoft/vstest/pull/15035
* Update package project url by @​mmitche in https://github.com/microsoft/vstest/pull/15040
 
## New Contributors

* @​OsirisTerje made their first contribution in https://github.com/microsoft/vstest/pull/14987
* @​adstep made their first contribution in https://github.com/microsoft/vstest/pull/15003
 ... (truncated)

## 17.14.0-preview-25107-01

## What's Changed

### .NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does **NOT** prevent you from:

- Updating to the latest VS, and running tests from net6.0 test projects.
- Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

* Drop unsupported frameworks by @​nohwnd in https://github.com/microsoft/vstest/pull/10565


### Changes

* Adding Process Query Flag For UWP .NET 9 Support by @​adstep in https://github.com/microsoft/vstest/pull/15003
* Fix builds on WinUI and UWP .NET 9 projects by @​Sergio0694 in https://github.com/microsoft/vstest/pull/15004
* don't report communication error on discovery abort by @​nohwnd in https://github.com/microsoft/vstest/pull/14992
* Add dump minitool to vsix by @​nohwnd in https://github.com/microsoft/vstest/pull/14707

### Internal version updates and fixes

* Update io.redist by @​nohwnd in https://github.com/microsoft/vstest/pull/13872
* Use preview image for public build by @​nohwnd in https://github.com/microsoft/vstest/pull/13888
* Remove xcopy-msbuild by @​nohwnd in https://github.com/microsoft/vstest/pull/14138
* Move to macos14 by @​nohwnd in https://github.com/microsoft/vstest/pull/14137
* Update diagnose.md by @​nohwnd in https://github.com/microsoft/vstest/pull/14776
* hash with sha2 for mutex lock by @​nohwnd in https://github.com/microsoft/vstest/pull/14777
* Update test projects for vmr by @​nohwnd in https://github.com/microsoft/vstest/pull/14894
* 17.14 branding by @​nohwnd in https://github.com/microsoft/vstest/pull/14903
* Update filter.md for NUnit by @​OsirisTerje in https://github.com/microsoft/vstest/pull/14987
* Flag netstandard1.x dependencies in source-build by @​ViktorHofer in https://github.com/microsoft/vstest/pull/14986
* Use VS dependencies versions from release VS to have archived symbols by @​nohwnd in https://github.com/microsoft/vstest/pull/14991
* Remove extra ; by @​nohwnd in https://github.com/microsoft/vstest/pull/14995
* Use dependencymodel 6.0.2 by @​nohwnd in https://github.com/microsoft/vstest/pull/14996
* Make Testhost packable only on Windows by @​mmitche in https://github.com/microsoft/vstest/pull/15001


### Will probably revert before release:

* Write props of tests into trx by @​nohwnd in https://github.com/microsoft/vstest/pull/14905
 
## New Contributors

* @​OsirisTerje made their first contribution in https://github.com/microsoft/vstest/pull/14987
* @​adstep made their first contribution in https://github.com/microsoft/vstest/pull/15003
* @​Sergio0694 made their first contribution in https://github.com/microsoft/vstest/pull/15004

**Full Changelog**: https://github.com/microsoft/vstest/compare/v17.13.0...v17.14.0-preview-25107-01

Commits viewable in [compare view](https://github.com/microsoft/vstest/compare/v17.13.0...v17.14.1).
</details>

Updated [System.Text.Json](https://github.com/dotnet/runtime) from 9.0.2 to 9.0.7.

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

_Sourced from [System.Text.Json's releases](https://github.com/dotnet/runtime/releases)._

## 9.0.7

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

## What's Changed
* [release/9.0-staging] Fix crash during Async Break when APC and CET are enabled by @​thaystg in https://github.com/dotnet/runtime/pull/114932
* [release/9.0-staging] [STJ] Account for F# CompilationMappingAttribute now supporting multiple declarations. by @​github-actions in https://github.com/dotnet/runtime/pull/115076
* [release/9.0-staging][wasm][interpreter] Fix PackedSimd interpreter intrinsics by @​lewing in https://github.com/dotnet/runtime/pull/114218
* [release/9.0-staging] JIT: Fix invalid removal of explicit zeroing in methods without .localsinit by @​jakobbotsch in https://github.com/dotnet/runtime/pull/115568
* [release/9.0-staging] throw an exception instead of infinite loop in `sort_mark_list` by @​github-actions in https://github.com/dotnet/runtime/pull/115529
* [release/9.0-staging] [DNS] Ignore ObjectDisposedException on CancellationToken Callback by @​github-actions in https://github.com/dotnet/runtime/pull/115840
* Revert "[release/9.0-staging] Fix crash during Async Break when APC and CET are enabled" by @​thaystg in https://github.com/dotnet/runtime/pull/116015
* [release/9.0-staging] Fix SysV first/second return register GC info mismatch by @​jakobbotsch in https://github.com/dotnet/runtime/pull/116206
* [release/9.0-staging] Fix PipeStream leak on Windows when pipe is disposed with a pending operation by @​github-actions in https://github.com/dotnet/runtime/pull/116188
* [release/9.0] Fix edge cases in Tarjan GC bridge (Android) by @​filipnavara in https://github.com/dotnet/runtime/pull/114682
* [release/9.0-staging] Revert change to follow symlinks of dotnet host  by @​github-actions in https://github.com/dotnet/runtime/pull/116244
* Update branding to 9.0.7 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/116312
* [release/9.0-staging] Fix generation of minidump by @​github-actions in https://github.com/dotnet/runtime/pull/115738
* [release/9.0-staging] fix: in rsa signatures, configure digest before padding mode by @​github-actions in https://github.com/dotnet/runtime/pull/115695
* [release/9.0-staging] JIT: Fix possible heap corruption in outlined composite SSA storage by @​github-actions in https://github.com/dotnet/runtime/pull/116132
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115984
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115855
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115597
* [release/9.0-staging] Update dependencies from dotnet/sdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115710
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115504
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115589
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115537
* Bump SDK version used by WASM since it was broken by dotnet/arcade codeflow by @​jozkee in https://github.com/dotnet/runtime/pull/116450
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions in https://github.com/dotnet/runtime/pull/115576
* [release/9.0-staging] Link peer's X509 stack handle to parent SSL safe handle by @​github-actions in https://github.com/dotnet/runtime/pull/115380
* [release/9.0-staging] [mono][interp] Minor SSA fixes by @​BrzVlad in https://github.com/dotnet/runtime/pull/116428
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/115677
* [release/9.0-staging] Disable the UTFStringConversionFailures test on CI runs by @​github-actions in https://github.com/dotnet/runtime/pull/116460
* [manual] Merge release/9.0-staging into release/9.0 by @​jozkee in https://github.com/dotnet/runtime/pull/116459
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/116499
* [release/9.0] Delete s390x and ppc64le helix queues by @​github-actions in https://github.com/dotnet/runtime/pull/116537


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.6...v9.0.7

## 9.0.6

## Bug Fixes

- **Read messages from binlog if process output is missing build finished message ([#​114676](https://github.com/dotnet/runtime/pull/114676))**  
  Improves reliability of the WebAssembly build process by reading messages from the binlog when the process output does not contain the expected build finished message, preventing build failures in certain scenarios.

- **Fix debugger app hangs related to thread exit ([#​114917](https://github.com/dotnet/runtime/pull/114917))**  
  Resolves an issue where applications could hang during debugging when threads exit, ensuring smoother debugging experiences and preventing deadlocks.

- **[Mono] Workaround MSVC miscompiling sgen_clz ([#​114903](https://github.com/dotnet/runtime/pull/114903))**  
  Addresses a compiler miscompilation issue in MSVC affecting the Mono garbage collector, improving runtime stability and correctness on affected platforms.

- **Do not set the salt or info if they are NULL for OpenSSL HKDF ([#​114877](https://github.com/dotnet/runtime/pull/114877))**  
  Fixes a cryptographic issue by ensuring that the salt or info parameters are not set when they are NULL in OpenSSL HKDF, preventing potential errors or unexpected behavior in key derivation.

- **[Test Only] Fix Idn tests ([#​115032](https://github.com/dotnet/runtime/pull/115032))**  
  Corrects issues in Internationalized Domain Name (Idn) tests, ensuring accurate and reliable test results for domain name handling.

- **JIT: revised fix for fp division issue in profile synthesis ([#​115026](https://github.com/dotnet/runtime/pull/115026))**  
  Provides a more robust fix for floating-point division issues in JIT profile synthesis, improving numerical accuracy and preventing incorrect calculations.

- **Handle OSSL 3.4 change to SAN:othername formatting ([#​115361](https://github.com/dotnet/runtime/pull/115361))**  
  Updates certificate handling to accommodate changes in Subject Alternative Name (SAN) formatting introduced in OpenSSL 3.4, ensuring compatibility and correct parsing of certificates.

- **[Mono] Fix c11 ARM64 atomics to issue full memory barrier ([#​115635](https://github.com/dotnet/runtime/pull/115635))**  
  Fixes atomic operations on ARM64 in Mono to issue a full memory barrier, ensuring correct synchronization and preventing subtle concurrency bugs.

## Performance Improvements

- **[WinHTTP] Certificate caching on WinHttpHandler to eliminate extra call to Custom Certificate Validation ([#​114678](https://github.com/dotnet/runtime/pull/114678))**  
  Improves HTTP performance by caching certificates in WinHttpHandler, reducing redundant calls to custom certificate validation and speeding up secure connections.

- **Improve distribute_free_regions ([#​115167](https://github.com/dotnet/runtime/pull/115167))**  
  Optimizes memory management by enhancing the algorithm for distributing free memory regions, leading to better memory utilization and potentially improved application performance.

## Technical Improvements

- **Strip trailing slash from source dir for cmake4 ([#​114905](https://github.com/dotnet/runtime/pull/114905))**  
  Refines build scripts by removing trailing slashes from source directories when using CMake 4, preventing potential build path issues and improving build reliability.

- **Don't expose TrustedCertificatesDirectory() and StartNewTlsSessionContext() to NetFx ([#​114995](https://github.com/dotnet/runtime/pull/114995))**  
  Restricts certain internal APIs from being exposed to .NET Framework, reducing surface area and preventing unintended usage.

- **Add support for more libicu versions ([#​115376](https://github.com/dotnet/runtime/pull/115376))**  
  Expands compatibility by supporting additional versions of the International Components for Unicode (ICU) library, enhancing globalization features across more environments.

## Infrastructure

- **Run outerloop pipeline only for release branches, not staging/preview ([#​115011](https://github.com/dotnet/runtime/pull/115011))**  
  Optimizes CI/CD resources by limiting the outerloop pipeline to run only on release branches, reducing unnecessary test runs and speeding up development workflows.

 ... (truncated)

## 9.0.5

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

## What's Changed
* [release/9.0-staging] [HttpStress] [SslStress] Run stress tests nightly against staging branches by @​github-actions in https://github.com/dotnet/runtime/pull/113476
* [release/9.0] [browser][http] mute JS exceptions about network errors + HEAD verb by @​github-actions in https://github.com/dotnet/runtime/pull/113261
* [release/9.0-staging] Fix double dispose of GCHandle in BrowserWebSocket by @​github-actions in https://github.com/dotnet/runtime/pull/113541
* [release/9.0-staging] [HttpStress] Fix Linux HttpStress build by @​antonfirsov in https://github.com/dotnet/runtime/pull/113617
* [release/9.0-staging] Use minipal_getcpufeatures to detect for AVX (#​113032) by @​cshung in https://github.com/dotnet/runtime/pull/113489
* [release/9.0-staging] Backport "Use FLS detach callback as a thread termination notification. Another try." by @​VSadov in https://github.com/dotnet/runtime/pull/113055
* [release/9.0-staging] [Json] Avoid writing to PipeWriter if IAsyncEnumerable throws before first item by @​github-actions in https://github.com/dotnet/runtime/pull/113699
* [browser] Remove experimental args from NodeJS WBT runner (part2) by @​maraf in https://github.com/dotnet/runtime/pull/113753
* [9.0] Update openssl dependency for openSUSE by @​NikolaMilosavljevic in https://github.com/dotnet/runtime/pull/113548
* [release/9.0-staging] JIT: avoid fp divide by zero in profile synthesis by @​github-actions in https://github.com/dotnet/runtime/pull/113418
* [release/9.0-staging] Do not substitute return values of constrained calls by @​github-actions in https://github.com/dotnet/runtime/pull/113462
* [release/9.0] Test failure - SendAsync_RequestVersion20_ResponseVersion20 by @​github-actions in https://github.com/dotnet/runtime/pull/113649
* [release/9.0-staging] [mono] Missing memory barrier leads to crash in multi-threaded scenarios by @​github-actions in https://github.com/dotnet/runtime/pull/113740
* [release/9.0] Move DAC signing identity to PME by @​hoyosjs in https://github.com/dotnet/runtime/pull/114031
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/113460
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/113483
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/113516
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/113461
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/113561
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/113595
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/113821
* [9.0] libnethost no LTCG by @​jkoritzinsky in https://github.com/dotnet/runtime/pull/113893
* [9.0] Bring back yml necessary change types in label checkers by @​carlossanlop in https://github.com/dotnet/runtime/pull/114166
* [release/9.0-staging] [Apple mobile] Enable trimming on build machines to match ILLink features by @​kotlarmilos in https://github.com/dotnet/runtime/pull/113466
* [release/9.0-staging] Fix VS div-by-0 in DacEnumerableHashTable code by @​github-actions in https://github.com/dotnet/runtime/pull/113892
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/113517
* [release/9.0-staging] Update dependencies from dotnet/roslyn-analyzers by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/113822
* [release/9.0-staging] Update dependencies from dotnet/sdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/113596
* Update branding to 9.0.5 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/114162
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions in https://github.com/dotnet/runtime/pull/113449
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/114185
* [release/9.0-staging] Revert disabling of tests for HTTP servers by @​github-actions in https://github.com/dotnet/runtime/pull/114207
* [release/9.0-staging] Fix build break with cmake 4.0 by @​github-actions in https://github.com/dotnet/runtime/pull/114278
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions in https://github.com/dotnet/runtime/pull/114224
* [release/9.0-staging] Fix inadvertently upgrading compiler warnings to errors by @​akoeplinger in https://github.com/dotnet/runtime/pull/114331
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/114396
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions in https://github.com/dotnet/runtime/pull/114415
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/114299
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/114473
* [release/9.0-staging][mono][hotreload]Adjust row_size and size_bitfield from the baseline based on the delta sizes by @​thaystg in https://github.com/dotnet/runtime/pull/114119
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/114296
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/114318
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/114364
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/114474
* [release/9.0] Fix edge cases in Tarjan GC bridge (Android) by @​filipnavara in https://github.com/dotnet/runtime/pull/114391
* [release/9.0-staging] [debugger] Fix debugging a x86 app in mixed mode by @​github-actions in https://github.com/dotnet/runtime/pull/114077
* [release/9.0-staging] [infra][apple-mobile] Migrate MacCatalyst and iOS/tvOS simulator jobs to `osx.14.arm64.open` and `osx.15.amd64.open` queues by @​github-actions in https://github.com/dotnet/runtime/pull/114617
 ... (truncated)

## 9.0.4

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

## What's Changed
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions in https://github.com/dotnet/runtime/pull/112424
* [release/9.0] Fix init race in mono_class_try_get_[shortname]_class. by @​github-actions in https://github.com/dotnet/runtime/pull/112296
* [release/9.0] Internal monitor impl not using coop mutex causing deadlocks on Android. by @​github-actions in https://github.com/dotnet/runtime/pull/112373
* [release/9.0-staging][iOS][globalization] Fix IndexOf on empty strings on iOS to return -1 by @​matouskozak in https://github.com/dotnet/runtime/pull/112012
* [release/9.0] Skip NegotiateStream_StreamToStream_Authentication_EmptyCredentials_Fails on WinSrv 2025 by @​rzikm in https://github.com/dotnet/runtime/pull/112473
* [release/9.0-staging] Fix case-insensitive JSON deserialization of enum member names by @​github-actions in https://github.com/dotnet/runtime/pull/112057
* [release/9.0-staging] Move generation of SuggestedBindingRedirects.targets to inner build by @​github-actions in https://github.com/dotnet/runtime/pull/112487
* [release/9.0-staging] Remove unneeded DiagnosticSource content by @​github-actions in https://github.com/dotnet/runtime/pull/112708
* [release/9.0-staging] Fix LINQ handling of iterator.Take(...).Last(...) by @​stephentoub in https://github.com/dotnet/runtime/pull/112714
* [release/9.0-staging] [mono][mini] Disable inlining if we encounter class initialization failure by @​github-actions in https://github.com/dotnet/runtime/pull/112005
* [release/9.0-staging] [mono][interp] Fix execution of delegate invoke wrapper with interpreter by @​github-actions in https://github.com/dotnet/runtime/pull/111700
* [release/9.0-staging] Include PDB for all TfmRuntimeSpecificPackageFile by @​github-actions in https://github.com/dotnet/runtime/pull/112139
* [release/9.0-staging] Add support for LDAPTLS_CACERTDIR \ TrustedCertificateDirectory by @​steveharter in https://github.com/dotnet/runtime/pull/112531
* [release/9.0-staging] Fix getting resource when ResourceResolve returns assembly with resource that is an assembly ref by @​elinor-fung in https://github.com/dotnet/runtime/pull/112893
* [release/9.0-staging] JIT: fix local assertion prop error for partial local comparisons by @​github-actions in https://github.com/dotnet/runtime/pull/112539
* [9.0] Make CPU utilization checks in the thread pool configurable by @​kouvel in https://github.com/dotnet/runtime/pull/112791
* [release/9.0-staging] Backport "Ship CoreCLR packages in servicing releases" by @​amanasifkhalid in https://github.com/dotnet/runtime/pull/113026
* [release/9.0-staging] Fix TensorPrimitives.MultiplyAddEstimate for integers by @​github-actions in https://github.com/dotnet/runtime/pull/113094
* [release/9.0-staging] Use invariant culture when formatting transfer capture in regex source generator (#​113081) by @​stephentoub in https://github.com/dotnet/runtime/pull/113150
* [release/9.0-staging] NativeAOT/Arm64: Do not overwrite gcinfo tracking registers for TLS by @​github-actions in https://github.com/dotnet/runtime/pull/112549
* Update branding to 9.0.4 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/113226
* [9.0] Make counting of IO completion work items more precise on Windows by @​kouvel in https://github.com/dotnet/runtime/pull/112794
* [release/9.0-staging] Remove --no-lock brew flag by @​akoeplinger in https://github.com/dotnet/runtime/pull/113281
* [release/9.0-staging] [QUIC] Update MsQuic library version by @​github-actions in https://github.com/dotnet/runtime/pull/113205
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions in https://github.com/dotnet/runtime/pull/113264
* [release/9.0-staging] Update dependencies from dotnet/roslyn-analyzers by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112836
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112835
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112627
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112552
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112522
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112515
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112468
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112514
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112394
* [release/9.0] Fix `BigInteger.Rotate{Left,Right}` for backport by @​github-actions in https://github.com/dotnet/runtime/pull/112991
* [release/9.0-staging] [mono] Switch generic instance cache back to GHashTable; improve ginst hash function by @​github-actions in https://github.com/dotnet/runtime/pull/113316
* [release/9.0-staging] Update dependencies from dotnet/sdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112628
* [manual] Merge release/9.0-staging into release/9.0 by @​carlossanlop in https://github.com/dotnet/runtime/pull/113350
* [release/9.0-staging] Fix HttpHandlerDiagnosticListenerTests.TestW3CHeadersTraceStateAndCorrelationContext by @​github-actions in https://github.com/dotnet/runtime/pull/112882
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/113389
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions in https://github.com/dotnet/runtime/pull/113333
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/113447
* [release/9.0] fix SBOM issues for runtime by @​haruna99 in https://github.com/dotnet/runtime/pull/113463


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.3...v9.0.4

## 9.0.3

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

## What's Changed
* [release/9.0-staging] Fix wrong alias-to for tvos AOT packs in net8 workload manifest by @​akoeplinger in https://github.com/dotnet/runtime/pull/110871
* [release/9.0] Disable tests targetting http://corefx-net-http11.azurewebsites.net by @​rzikm in https://github.com/dotnet/runtime/pull/111402
* [release/9.0-staging] Support generic fields in PersistedAssemblyBuilder by @​github-actions in https://github.com/dotnet/runtime/pull/110839
* [release/9.0-staging] Re-enable skiasharp WBT tests (#​109232) by @​radekdoulik in https://github.com/dotnet/runtime/pull/110734
* [release/9.0-staging] Backport test fixes related to BinaryFormatter removal by @​adamsitnik in https://github.com/dotnet/runtime/pull/111508
* [manual] Merge branch 'release/9.0' => 'release/9.0-staging' by @​carlossanlop in https://github.com/dotnet/runtime/pull/111565
* [release/9.0] [wasi] Disable build in .NET 9 by @​maraf in https://github.com/dotnet/runtime/pull/108877
* [release/9.0-staging] [mono] Disable UnitTest_GVM_TypeLoadException for fullAOT jobs by @​github-actions in https://github.com/dotnet/runtime/pull/111394
* [release/9.0-staging] Fix UnsafeAccessor scenario for modopts/modreqs when comparing field sigs. by @​AaronRobinsonMSFT in https://github.com/dotnet/runtime/pull/111675
* [release/9.0-staging] [mono] Run runtime-llvm and runtime-ioslike on Mono LLVM PRs by @​github-actions in https://github.com/dotnet/runtime/pull/111739
* [release/9.0-staging] fix stack 2x2 tensor along dimension 1 by @​github-actions in https://github.com/dotnet/runtime/pull/110053
* [release/9.0-staging] Fix race condition in cleanup of collectible thread static variables by @​github-actions in https://github.com/dotnet/runtime/pull/111275
* [release/9.0-staging] [iOS] Retrieve device locale in full (specific) format from ObjectiveC APIs by @​github-actions in https://github.com/dotnet/runtime/pull/111612
* [release/9.0-staging] Add workflow to prevent merging a PR when the `NO-MERGE` label is applied by @​github-actions in https://github.com/dotnet/runtime/pull/111961
* [release/9.0-staging] Use alternative format string specifier to ensure decimal point is present by @​github-actions in https://github.com/dotnet/runtime/pull/111444
* [release/9.0-staging] Fixed android build with NDK 23 by @​jkurdek in https://github.com/dotnet/runtime/pull/111696
* [release/9.0-staging] Fix UNC paths by @​github-actions in https://github.com/dotnet/runtime/pull/111499
* [release/9.0-staging] [mono] [llvm-aot] Fixed storing Vector3 into memory by @​github-actions in https://github.com/dotnet/runtime/pull/111069
* [release/9.0] Remove explicit __compact_unwind entries from x64 assembler by @​filipnavara in https://github.com/dotnet/runtime/pull/112204
* Update branding to 9.0.3 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/112144
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/111606
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/111891
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112189
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/111519
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112121
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/111737
* [release/9.0-staging] Fix shimmed implementation of TryGetHashAndReset to handle HMAC. by @​github-actions in https://github.com/dotnet/runtime/pull/112015
* Remove Windows 8.1 from test queues by @​agocke in https://github.com/dotnet/runtime/pull/112056
* [release/9.0-staging] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/111603
* [browser] Remove experimental args from NodeJS WBT runner by @​maraf in https://github.com/dotnet/runtime/pull/111655
* [release/9.0-staging] Update dependencies from dotnet/sdk by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/111607
* [release/9.0-staging] Update dependencies from dotnet/roslyn-analyzers by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/111826
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/111885
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112122
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112225
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112261
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions in https://github.com/dotnet/runtime/pull/112219
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/112340
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/111483
* Backport pr 111723 to 9.0 staging by @​StephenMolloy in https://github.com/dotnet/runtime/pull/112322
* [manual] Merge release/9.0-staging into release/9.0 by @​carlossanlop in https://github.com/dotnet/runtime/pull/112382
* [9.0] Backport labeling workflow changes by @​carlossanlop in https://github.com/dotnet/runtime/pull/112240
* [9.0] Move release/9.0 localization back to main too by @​carlossanlop in https://github.com/dotnet/runtime/pull/112443
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/112453


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.2...v9.0.3

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

Updated [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 3.1.0 to 3.1.3.

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

_Sourced from [xunit.runner.visualstudio's releases](https://github.com/xunit/visualstudio.xunit/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/xunit/visualstudio.xunit/commits).
</details>

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Bumps AwesomeAssertions from 8.2.0 to 9.1.0
Bumps csharpier from 1.0.1 to 1.1.1
Bumps Microsoft.NET.Test.Sdk from 17.13.0 to 17.14.1
Bumps System.Text.Json from 9.0.2 to 9.0.7
Bumps xunit.runner.visualstudio from 3.1.0 to 3.1.3

---
updated-dependencies:
- dependency-name: AwesomeAssertions
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: csharpier
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: System.Text.Json
  dependency-version: 9.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: xunit.runner.visualstudio
  dependency-version: 3.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Aug 4, 2025
@github-actions github-actions bot enabled auto-merge (squash) August 4, 2025 16:06
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 25, 2025

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

@dependabot dependabot bot closed this Aug 25, 2025
auto-merge was automatically disabled August 25, 2025 22:35

Pull request was closed

@dependabot dependabot bot deleted the dependabot/nuget/MaLoIdentModels/dot-config/multi-53321ecd7e branch August 25, 2025 22:35
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