Skip to content

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Aug 4, 2025

Backport of #118276 to release/9.0-staging

/cc @adamsitnik

Customer Impact

  • Customer reported
  • Found internally

Customers using NrbfDecoder to decode a very specific payload that was generated by the BinaryFormatter will fail with an exception about invalid payload.

More details: The payload can be generated by the BinaryFormatter for a type with a nullable user-defined struct where the first occurrence of such struct is a null. BinaryFormatter is then fetching the field type (rather than instance type) and since it's System.Nullable<$UserType> it's described as BinaryType.SystemClass rather than BinaryType.Class. Since NrbfDecoder is restrictive to be secure by default, the input is rejected as for a "system record" the payload contains "non-system record".

One of our first party customers is moving away from BinaryFormatter and they are currently blocked as they have hit this limitation during their migration process. The issue was reported internally.

Regression

  • Yes
  • No

Testing

A standalone and simple repro was identified and turned into a unit test. The test was failing without the fix, now it's passing.

Risk

Low. The NrbfDecoder is now going to decode such payloads, but it's going to keep the record type as it was (SerializationRecordType.ClassWithMembersAndTypes, not SerializationRecordType.SystemClassWithMembersAndTypes).

@adamsitnik adamsitnik added the Servicing-consider Issue for next servicing release review label Aug 4, 2025
@adamsitnik adamsitnik added this to the 9.0.x milestone Aug 4, 2025
@adamsitnik adamsitnik added binaryformatter-migration Issues related to the removal of BinaryFormatter and migrations away from it area-System.Formats.Nrbf labels Aug 4, 2025
Copy link
Contributor

Tagging subscribers to 'binaryformatter-migration': @adamsitnik, @bartonjs, @jeffhandley, @JeremyKuhne

Copy link
Member

@jeffhandley jeffhandley left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This has my support for backport to .NET 9. Customer-blocking issue.

@jeffhandley jeffhandley added Servicing-approved Approved for servicing release and removed Servicing-consider Issue for next servicing release review labels Aug 5, 2025
@jeffhandley
Copy link
Member

/ba-g Build analysis showed only one known issue: wasm build failure in CI (dotnet/runtime#117017)

@adamsitnik
Copy link
Member

/ba-g This is a known issue

@riarenas
Copy link
Member

riarenas commented Aug 5, 2025

/ba-g This is a known issue!

@riarenas
Copy link
Member

riarenas commented Aug 5, 2025

/ba-g Trying again! This is a known issue!

sambiramairelogic added a commit to NHSDigital/nbs-appointments-management-service that referenced this pull request Sep 11, 2025
Updated [Azure.Identity](https://github.com/Azure/azure-sdk-for-net)
from 1.14.2 to 1.16.0.

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

_Sourced from [Azure.Identity's
releases](https://github.com/Azure/azure-sdk-for-net/releases)._

## 1.16.0

## 1.16.0 (2025-09-09)

### Features Added

- Added a new `DefaultAzureCredential` constructor that accepts a custom
environment variable name for credential configuration. This provides
flexibility beyond the default `AZURE_TOKEN_CREDENTIALS` environment
variable. The constructor accepts any environment variable name and uses
the same credential selection logic as the existing
`AZURE_TOKEN_CREDENTIALS` processing.
- Added `DefaultAzureCredential.DefaultEnvironmentVariableName` constant
property that returns `"AZURE_TOKEN_CREDENTIALS"` for convenience when
referencing the default environment variable name.
- `AzureCliCredential`, `AzurePowerShellCredential`, and
`AzureDeveloperCliCredential` now throw an
`AuthenticationFailedException` when the `TokenRequestContext` includes
claims, as these credentials do not support claims challenges. The
exception message includes guidance for handling such scenarios.
- When `AZURE_TOKEN_CREDENTIALS` or the equivalent custom environment
variable is configured to `ManagedIdentityCredential`, the
`DefaultAzureCredential` does not issue a probe request and performs
retries with exponential backoff.

### Bugs Fixed

- Fixed `AzureDeveloperCliCredential` hanging when the `AZD_DEBUG`
environment variable is set by adding the `--no-prompt` flag to prevent
interactive prompts
([#​52005](https://github.com/Azure/azure-sdk-for-net/issues/52005)).
- `BrokerCredential` is now included in the chain when
`AZURE_TOKEN_CREDENTIALS` is set to `dev`.
- Fixed an issue that prevented ManagedIdentityCredential from utilizing
the token cache in Workload Identity Federation environments.
- Fixed a bug in `DefaultAzureCredential` that caused the credential
chain to be constructed incorrectly when using AZURE_TOKEN_CREDENTIALS
in combination with `DefaultAzureCredentialOptions`.

### Other Changes

- The `BrokerCredential` is now always included in the
`DefaultAzureCredential` chain. If the `Azure.Identity.Broker` package
is not referenced, an exception will be thrown when `GetToken` is
called, making its behavior consistent with the rest of the credentials
in the chain.
- Updated `Microsoft.Identity.Client` dependency to version 4.76.0.
- Updated `Microsoft.Identity.Client.Extensions.Msal` dependency to
version 4.76.0.


## 1.15.0

## 1.15.0 (2025-08-07)

### Breaking Changes

#### Behavioral Breaking Changes

- Deprecated `SharedTokenCacheCredential`. The supporting credential
(`SharedTokenCacheCredential`) was a legacy mechanism for authenticating
clients using credentials provided to Visual Studio. For brokered
authentication, consider using `InteractiveBrowserCredential` instead.
The following changes have been made:
- `SharedTokenCacheCredential` class is marked as `[Obsolete]` and
`[EditorBrowsable(EditorBrowsableState.Never)]`
- `SharedTokenCacheCredentialOptions` class is marked as `[Obsolete]`
and `[EditorBrowsable(EditorBrowsableState.Never)]`
- `DefaultAzureCredentialOptions.ExcludeSharedTokenCacheCredential`
property is marked as `[Obsolete]` and
`[EditorBrowsable(EditorBrowsableState.Never)]`
- `SharedTokenCacheUsername` property is marked as `[Obsolete]` and
`[EditorBrowsable(EditorBrowsableState.Never)]`
- `SharedTokenCacheCredential` is no longer included in the
`DefaultAzureCredential` authentication flow

### Bugs Fixed

- Tenant ID comparisons in credential options are now case-insensitive.
This affects `AdditionallyAllowedTenants` values which will now be
matched against tenant IDs without case sensitivity, making the
authentication more resilient to case differences in tenant IDs returned
from WWW-Authenticate challenges
([#​51693](https://github.com/Azure/azure-sdk-for-net/issues/51693)).

### Other Changes
- `BrokerAuthenticationCredential` has been renamed as
`BrokerCredential`.

- Added the `EditorBrowsable(Never)` attribute to property
`VisualStudioCodeTenantId` as `TenantId` is preferred. The
`VisualStudioCodeTenantId` property exists only to provide backwards
compatibility.


Commits viewable in [compare
view](https://github.com/Azure/azure-sdk-for-net/commits/Azure.Identity_1.16.0).
</details>

Pinned
[Microsoft.Extensions.Configuration](https://github.com/dotnet/runtime)
at 9.0.9.

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

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

## 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

## 9.0.8

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

## What's Changed
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/116514
* [release/9.0] Disable all MT tests on CI by @​ilonatommy in
https://github.com/dotnet/runtime/pull/116747
* [9.0] Revert squash commit and pulls release/9.0 again by @​jozkee in
https://github.com/dotnet/runtime/pull/116764
* [release/9.0-staging] Backport "Dispose Xunit ToolCommand" by
@​ilonatommy in https://github.com/dotnet/runtime/pull/116685
* [release/9.0-staging] Skip SSL key log test for OpenSSL 3.5+ by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/116687
* [release/9.0-staging] Fix absolute path check when loading
hostfxr/hostpolicy/coreclr by @​elinor-fung in
https://github.com/dotnet/runtime/pull/116775
* Update openssl dependency for SLES by @​NikolaMilosavljevic in
https://github.com/dotnet/runtime/pull/116922
* [9.0] Backport 115546 FLS initialization fix to 9. by @​mangod9 in
https://github.com/dotnet/runtime/pull/116872
* [release/9.0-staging] Update dependencies from dotnet/roslyn by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117137
* [release/9.0-staging] Update dependencies from dotnet/icu by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116681
* [release/9.0-staging] Update dependencies from dotnet/cecil by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116455
* [release/9.0-staging] Update dependencies from dotnet/arcade by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116948
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils
by @​dotnet-maestro[bot] in
https://github.com/dotnet/runtime/pull/115596
* [release/9.0-staging] Update dependencies from
dotnet/source-build-reference-packages by @​dotnet-maestro[bot] in
https://github.com/dotnet/runtime/pull/115588
* [release/9.0-staging] Map version for Tahoe compatibility. by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/116641
* [9.0] Update CI OSes by @​richlander in
https://github.com/dotnet/runtime/pull/115503
* Update branding to 9.0.8 by @​vseanreesermsft in
https://github.com/dotnet/runtime/pull/117283
* [release/9.0-staging] Update dependencies from dotnet/sdk by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116683
* Disable odbc tests on net9 interpreter by @​BrzVlad in
https://github.com/dotnet/runtime/pull/117245
* [release/9.0-staging] Update dependencies from dotnet/cecil by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117228
* [release/9.0-staging] Update dependencies from dotnet/icu by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117257
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils
by @​dotnet-maestro[bot] in
https://github.com/dotnet/runtime/pull/117184
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets
by @​dotnet-maestro[bot] in
https://github.com/dotnet/runtime/pull/116664
* [release/9.0-staging] Update dependencies from dotnet/xharness by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116908
* [release/9.0] Update dependencies from dotnet/emsdk by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116626
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/117296
* [release/9.0-staging][wbt] Prevent `InvalidOperationException` on
`TestOutputHelper` logging. by @​ilonatommy in
https://github.com/dotnet/runtime/pull/116916
* [release/9.0-staging] Harden `Ping_TimedOut_*` tests by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/116630
* Merging internal commits for release/9.0 by @​vseanreesermsft in
https://github.com/dotnet/runtime/pull/117442
* [release/9.0-staging] Fix ILogB for subnormal values by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/116973
* [release/9.0-staging] Fix ordering issue in interface trimming by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/114509
* [release/9.0-staging][mono][gc] Fix gc descriptor computation for
InlineArray structs by @​BrzVlad in
https://github.com/dotnet/runtime/pull/116951
* [release/9.0-staging] Fix few RandomAccess.Write edge case bugs by
@​adamsitnik in https://github.com/dotnet/runtime/pull/109646
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/117471
* [release/9.0-staging] Update dependencies from dotnet/xharness by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117594
* [release/9.0-staging] Update dependencies from dotnet/sdk by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117595
* [manual] Merge release/9.0-staging into release/9.0 by @​tarekgh in
https://github.com/dotnet/runtime/pull/117634


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

## 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

## 9.0.2

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

## What's Changed
* [release/9.0-staging] Ensure Vector.Create is properly recognized as
intrinsic by @​github-actions in
https://github.com/dotnet/runtime/pull/109322
* [release/9.0-staging] Fix return address hijacking with CET by
@​github-actions in https://github.com/dotnet/runtime/pull/109548
* [release/9.0] Fix FP state restore on macOS exception forwarding by
@​github-actions in https://github.com/dotnet/runtime/pull/110163
* [release/9.0-staging] [debugger] Fix a step that becomes a go by
@​github-actions in https://github.com/dotnet/runtime/pull/110533
* [release/9.0-staging] [debugger] Support step into a tail call by
@​github-actions in https://github.com/dotnet/runtime/pull/110438
* [release/9.0-staging] Fix Tizen linux-armel build by @​github-actions
in https://github.com/dotnet/runtime/pull/110614
* release/9.0-staging -- Update Alpine, Debian, and Fedora versions by
@​richlander in https://github.com/dotnet/runtime/pull/110493
* [release/9.0-staging] JIT: Read back all replacements before
statements with implicit EH control flow by @​github-actions in
https://github.com/dotnet/runtime/pull/109143
* [release/9.0-staging] Fix crash when pTargetMD is null by
@​github-actions in https://github.com/dotnet/runtime/pull/110652
* [release/9.0-staging] Avoid exception when parsing AD path for port
number by @​github-actions in
https://github.com/dotnet/runtime/pull/110224
* [release/9.0-staging] Fix System.Reflection.Emit `SetChecksum`
creating invalid pdb by @​github-actions in
https://github.com/dotnet/runtime/pull/110205
* [release/9.0] Use floating tag for webassembly image by
@​github-actions in https://github.com/dotnet/runtime/pull/109374
* [release/9.0-staging] [Profiler] Avoid Recursive ThreadStoreLock in
Profiling Thread Enumerator by @​github-actions in
https://github.com/dotnet/runtime/pull/110665
* [release/9.0-staging] JIT: Include more edges in `BlockDominancePreds`
to avoid a JIT crash by @​github-actions in
https://github.com/dotnet/runtime/pull/110568
* [release/9.0-staging][wasm] Workaround incorrect mono restore when
building WBT by @​lewing in
https://github.com/dotnet/runtime/pull/110590
* [release/9.0-staging] Update dependencies from dotnet/sdk by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/110532
* [release/9.0-staging] Update dependencies from dotnet/cecil by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/110572
* [release/9.0-staging] Conditionally check the compiler flags in
libs.native by @​github-actions in
https://github.com/dotnet/runtime/pull/109556
* [TestOnly][release/9.0-staging] Fix TimeProvider Test by
@​github-actions in https://github.com/dotnet/runtime/pull/111132
* [release/9.0-staging] [mono] Chain `SIGSEGV` native crashes to the
default `SIGSEGV` handler by @​github-actions in
https://github.com/dotnet/runtime/pull/110863
* [release/9.0-staging] Update dependencies from
dotnet/source-build-reference-packages by @​dotnet-maestro in
https://github.com/dotnet/runtime/pull/110905
* [release/9.0-staging] Exit the lock before we call into user code and
handle losing the race for the RCW table by @​github-actions in
https://github.com/dotnet/runtime/pull/111162
* [release/9.0-staging] Fix race condition when cancelling pending HTTP
connection attempts by @​github-actions in
https://github.com/dotnet/runtime/pull/110764
* [release/9.0-staging] Remove HttpMetricsEnrichmentContext caching by
@​github-actions in https://github.com/dotnet/runtime/pull/110626
* [release/9.0-staging] Fix IDynamicInterfaceCastable with shared
generic code by @​github-actions in
https://github.com/dotnet/runtime/pull/109918
* [release/9.0-staging] Fix handling of IDynamicInterfaceCastable wrt
CastCache by @​github-actions in
https://github.com/dotnet/runtime/pull/110007
* [release/9.0-staging] ILC: Allow OOB reference to upgrade framework
assembly by @​github-actions in
https://github.com/dotnet/runtime/pull/110058
* [release/9.0-staging] Move ComWrappers AddRef to C/C++ by
@​github-actions in https://github.com/dotnet/runtime/pull/110815
* [release/9.0-staging] [BrowserDebugProxy] Remove exception details
from error report by @​github-actions in
https://github.com/dotnet/runtime/pull/111202
* [release/9.0-staging] Fix reporting GC fields from base types by
@​github-actions in https://github.com/dotnet/runtime/pull/111040
* [release/9.0-staging] Fix C++/CLI applications which use
__declspec(appdomain) by @​github-actions in
https://github.com/dotnet/runtime/pull/110495
* [release/9.0-staging] Fix calling convention mismatch in GC callouts
by @​github-actions in https://github.com/dotnet/runtime/pull/111105
* [release/9.0-staging] Don't wait for finalizers in
'IReferenceTrackerHost::ReleaseDisconnectedReferenceSources' by
@​github-actions in https://github.com/dotnet/runtime/pull/110558
* [release/9.0-staging] Add forwarding support for WasmLinkage on
LibraryImport by @​github-actions in
https://github.com/dotnet/runtime/pull/109364
* [release/9.0-staging] Fix obtaining type handles of
IDynamicInterfaceCastableImplementation by @​github-actions in
https://github.com/dotnet/runtime/pull/109909
* [release/9.0-staging] Disable GS cookie checks for LightUnwind by
@​github-actions in https://github.com/dotnet/runtime/pull/109530
* [release/9.0-staging] Fix analyzer tracking of nullable enums by
@​github-actions in https://github.com/dotnet/runtime/pull/110331
* Update branding to 9.0.2 by @​vseanreesermsft in
https://github.com/dotnet/runtime/pull/111172
* [release/9.0-staging] Bugfix
InvalidOperationException/IndexOutOfRangeException in
HttpListener.EndGetContext by @​github-actions in
https://github.com/dotnet/runtime/pull/110695
* [release/9.0-staging] Fix `IsOSVersionAtLeast` when build or revision
are not provided by @​github-actions in
https://github.com/dotnet/runtime/pull/109332
* [release/9.0-staging] [mono][sgen] Add separate card mark function to
be used with debug by @​github-actions in
https://github.com/dotnet/runtime/pull/110268
* [release/9.0-staging] [mono][aot] Fix compilation crashes when type
load exception is generated in code by @​BrzVlad in
https://github.com/dotnet/runtime/pull/110271
* [release/9.0-staging] Change assembler to clang in android MonoAOT by
@​github-actions in https://github.com/dotnet/runtime/pull/110812
* [release/9.0-staging] Replace a few SuppressMessage annotations with
UnconditionalSuppressMessage by @​github-actions in
https://github.com/dotnet/runtime/pull/109186
* [release/9.0-staging] Update dependencies from dotnet/xharness by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/111331
* [release/9.0-staging] Update dependencies from dotnet/roslyn by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/110992
* [release/9.0-staging] Update dependencies from dotnet/roslyn-analyzers
by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/110993
 ... (truncated)

## 9.0.1

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

## What's Changed
* [release/9.0-staging] Upgrade our macOS build machines to the latest
non-beta x64 image by @​github-actions in
https://github.com/dotnet/runtime/pull/109455
* [release/9.0-staging] Remove thread contention from Activity
Start/Stop by @​github-actions in
https://github.com/dotnet/runtime/pull/109359
* [release/9.0-staging] handle case of Proc Index > MAX_SUPPORTED_CPUS
by @​github-actions in https://github.com/dotnet/runtime/pull/109385
* Update branding to 9.0.1 by @​vseanreesermsft in
https://github.com/dotnet/runtime/pull/109563
* [release/9.0-staging] [android] Fix crash in method_to_ir by
@​github-actions in https://github.com/dotnet/runtime/pull/109510
* [release/9.0-staging] Switch to non-incremental servicing by
@​carlossanlop in https://github.com/dotnet/runtime/pull/109316
* [release/9.0] [wasm] Use correct current runtime pack version for
Wasm.Build.Tests by @​maraf in
https://github.com/dotnet/runtime/pull/109820
* [release/9.0-staging] Update ApiCompatNetCoreAppBaselineVersion to
9.0.0 by @​carlossanlop in https://github.com/dotnet/runtime/pull/109789
* [release/9.0] [wasm] Run downlevel tests only on main by @​maraf in
https://github.com/dotnet/runtime/pull/109723
* [release/9.0-staging] Fix regression in constructor parameter binding
logic. by @​github-actions in
https://github.com/dotnet/runtime/pull/109813
* [release/9.0-staging] `TensorPrimitives` XML docs:
`MinNumber`/`ReciprocalSqrt`/`ReciprocalSqrtEstimate` oversights by
@​github-actions in https://github.com/dotnet/runtime/pull/109922
* [release/9.0-staging] Add a missing = in BigInteger.cs by
@​github-actions in https://github.com/dotnet/runtime/pull/109732
* [release/9.0-staging] Ignore modopts/modreqs for `UnsafeAccessor`
field targets by @​github-actions in
https://github.com/dotnet/runtime/pull/109709
* Fix an issue with sysconf returning the wrong last level cache values
on Linux running on certain AMD Processors. by @​mrsharm in
https://github.com/dotnet/runtime/pull/109749
* [release/9.0-staging] Fix transformer handling of boolean schemas in
JsonSchemaExporter. by @​github-actions in
https://github.com/dotnet/runtime/pull/109975
* [release/9.0-staging] Ensure proper cleanup of key files when not
persisting them by @​github-actions in
https://github.com/dotnet/runtime/pull/109844
* [release/9.0-staging] Transfer ThreadPool local queue to high-pri
queue on Task blocking by @​github-actions in
https://github.com/dotnet/runtime/pull/109989
* Merging internal commits for release/9.0 by @​vseanreesermsft in
https://github.com/dotnet/runtime/pull/109744
* [release/9.0-staging] DATAS BGC thread synchronization fix by @​Maoni0
in https://github.com/dotnet/runtime/pull/110174
* [release/9.0-staging] Fix Matrix4x4.CreateReflection when D is not
zero by @​github-actions in
https://github.com/dotnet/runtime/pull/110162
* [release/9.0-staging] Fix hostfxr.h to be valid C again. by
@​github-actions in https://github.com/dotnet/runtime/pull/110060
* [release/9.0] Fix length check for Convert.TryToHexString{Lower} by
@​github-actions in https://github.com/dotnet/runtime/pull/110228
* [release/9.0-staging] Suppress IL3050 warnings in ILLink tests by
@​sbomer in https://github.com/dotnet/runtime/pull/110340
* [release/9.0-staging] Update Azure Linux tag names by @​github-actions
in https://github.com/dotnet/runtime/pull/110341
* [release/9.0-staging] Update dependencies from dotnet/icu by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/109299
* [release/9.0-staging] Update dependencies from dotnet/xharness by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/109306
* [release/9.0-staging] Update dependencies from dotnet/cecil by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/109297
* [release/9.0-staging] Update dependencies from
dotnet/source-build-reference-packages by @​dotnet-maestro in
https://github.com/dotnet/runtime/pull/109301
* [release/9.0-staging] Update dependencies from dotnet/roslyn-analyzers
by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/109303
* [release/9.0-staging] Update dependencies from dotnet/roslyn by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/109305
* [release/9.0-staging] Update dependencies from dotnet/arcade by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/109825
* [release/9.0-staging] Update dependencies from
dotnet/source-build-externals by @​dotnet-maestro in
https://github.com/dotnet/runtime/pull/109960
* [release/9.0-staging] Update dependencies from dotnet/sdk by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/109304
* [release/9.0-staging] Update dependencies from dotnet/emsdk by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/109298
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets
by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/109336
* [release/9.0] Update dependencies from dotnet/emsdk by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/109523
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils
by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/109308
* [manual] Merge release/9.0-staging into release/9.0 by @​carlossanlop
in https://github.com/dotnet/runtime/pull/110370
* Switch to automatic 8.0 version updates by @​marcpopMSFT in
https://github.com/dotnet/runtime/pull/110586
* [release/9.0] Update dependencies from dotnet/emsdk by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/110409


**Full Changelog**:
https://github.com/dotnet/runtime/compare/v9.0.0...v9.0.1

## 9.0.0

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

## What's Changed
* [release/9.0] BinaryFormatter tests improvements by @​adamsitnik in
https://github.com/dotnet/runtime/pull/107540
* [release/9.0] Update dependencies from
dotnet/source-build-reference-packages by @​dotnet-maestro in
https://github.com/dotnet/runtime/pull/107474
* [release/9.0] Branding for GA by @​carlossanlop in
https://github.com/dotnet/runtime/pull/107879
* [release/9.0] Update dependencies from dotnet/source-build-externals
by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/107914
* [release/9.0] Update dependencies from dotnet/icu by @​dotnet-maestro
in https://github.com/dotnet/runtime/pull/107918
* [release/9.0] Update dependencies from dotnet/hotreload-utils by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/107916
* [release/9.0] Update dependencies from dotnet/cecil by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/107915
* [release/9.0] Update dependencies from
dotnet/source-build-reference-packages by @​dotnet-maestro in
https://github.com/dotnet/runtime/pull/107938
* [release/9.0] Update dependencies from dotnet/source-build-externals
by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/107982
* [release/9.0] Update dependencies from dotnet/cecil by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/107983
* [release/9.0] Remove invalid assert in RSAOpenSsl by @​github-actions
in https://github.com/dotnet/runtime/pull/107952
* [automated] Merge branch 'release/9.0-rc2' => 'release/9.0' by
@​github-actions in https://github.com/dotnet/runtime/pull/107928
* [release/9.0] Update dependencies from dotnet/arcade by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/107937
* [release/9.0] Update dependencies from dotnet/roslyn by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/107984
* [release/9.0] Mitigate JsonObject performance regression. by
@​github-actions in https://github.com/dotnet/runtime/pull/108014
* [release/9.0] Fix SG nullability annotations for required and init
properties. by @​github-actions in
https://github.com/dotnet/runtime/pull/108013
* [release/9.0] Update dependencies from dotnet/hotreload-utils by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/108016
* [release/9.0] Treat -rtm as stable sdk version band by @​lewing in
https://github.com/dotnet/runtime/pull/107997
* [release/9.0] dont try to capture threadId for NativeAOT by
@​github-actions in https://github.com/dotnet/runtime/pull/108088
* [release/9.0] Update dependencies from dotnet/runtime by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/108140
* [release/9.0] Fix createdump 'stack smashing detected' error on arm64
by @​github-actions in https://github.com/dotnet/runtime/pull/108208
* [release/9.0] [browser] Fix fingerprinting and
loadAllSatelliteResources=true by @​github-actions in
https://github.com/dotnet/runtime/pull/108198
* [automated] Merge branch 'release/9.0-rc2' => 'release/9.0' by
@​github-actions in https://github.com/dotnet/runtime/pull/108006
* [release/9.0] More doc updates for source-of-truth assemblies by
@​carlossanlop in https://github.com/dotnet/runtime/pull/108257
* [release/9.0] Update dependencies from
dotnet/source-build-reference-packages by @​dotnet-maestro in
https://github.com/dotnet/runtime/pull/108142
* [release/9.0] Update dependencies from dotnet/roslyn by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/108061
* [release/9.0] Update dependencies from dotnet/cecil by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/108192
* [release/9.0] Update dependencies from dotnet/hotreload-utils by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/108193
* [release/9.0] Update dependencies from dotnet/arcade by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/108194
* [release/9.0] Update dependencies from
dnceng/internal/dotnet-optimization by @​dotnet-maestro in
https://github.com/dotnet/runtime/pull/108139
* [release/9.0] Reduce funceval abort by @​github-actions in
https://github.com/dotnet/runtime/pull/108256
* [release/9.0] Update sign-diagnostic-files.yml to skip dac sign in
staging by @​hoyosjs in https://github.com/dotnet/runtime/pull/108218
* [release/9.0] Root the System.Runtime EventSource by @​github-actions
in https://github.com/dotnet/runtime/pull/108348
* [release/9.0] Fixing SetSlice, Reshape, TryCopyTo. by @​github-actions
in https://github.com/dotnet/runtime/pull/108282
* [release/9.0] Update dependencies from dotnet/sdk by @​dotnet-maestro
in https://github.com/dotnet/runtime/pull/108141
* [release/9.0] Update dependencies from dotnet/source-build-externals
by @​dotnet-maestro in https://github.com/dotnet/runtime/pull/108436
* [release/9.0] Update dependencies from dotnet/hotreload-utils by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/108438
* [release/9.0] Update dependencies from dotnet/roslyn-analyzers by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/108367
* [release/9.0] Update dependencies from dotnet/runtime by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/108391
* [release/9.0] Update dependencies from dotnet/cecil by
@​dotnet-maestro in https://github.com/dotnet/runtime/pull/108437
* [release/9.0] Update System.Formats.Nrbf ref sources and restore
package description by @​github-actions in
https://github.com/dotnet/runtime/pull/108467
* [release/9.0] [aot] mono_aot_split_options: reset state after a
backslash by @​github-actions in
https://github.com/dotnet/runtime/pull/108212
* [release/9.0] Fix devirtualization across genericness in the hierarchy
by @​MichalStrehovsky in https://github.com/dotnet/runtime/pull/108470
* [release/9.0] [cdac][cdac-build-tool] Don't let msbuild rewrite the
resource name by @​github-actions in
https://github.com/dotnet/runtime/pull/108296
* [release/9.0] Fix `InlineArray` swift lowering in mono by @​jkurdek in
https://github.com/dotnet/runtime/pull/108483
* [release/9.0] Backport PR #​108311 - Fix statics issue with barriers
by @​davidwrighton in https://github.com/dotnet/runtime/pull/108347
* [release/9.0] Fix wrong Region Info Names by @​github-actions in
https://github.com/dotnet/runtime/pull/108524
 ... (truncated)

## 9.0.0-rc.2.24473.5

[Release](https://github.com/dotnet/core/releases/tag/v9.0.0-rc.2)

## 9.0.0-rc.1.24431.7

[Release](https://github.com/dotnet/core/releases/tag/v9.0.0-rc.1)

## 9.0.0-preview.7.24405.7

[Release](https://github.com/dotnet/core/releases/tag/v9.0.0-preview.7)

## 9.0.0-preview.5.24306.7

[Release](https://github.com/dotnet/core/releases/tag/v9.0.0-preview.5)

## 9.0.0-preview.4.24266.19

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

## 9.0.0-preview.3.24172.9

[Release](https://github.com/dotnet/core/releases/tag/v9.0.0-preview.3)

## 9.0.0-preview.2.24128.5

[Release[(https://github.com/dotnet/core/releases/tag/v9.0.0-preview.2)

## 9.0.0-preview.1.24080.9

[Release](https://github.com/dotnet/core/releases/tag/v9.0.0-preview.1)

## 8.0.20

[Release](https://github.com/dotnet/runtime/releases/tag/v8.0.20)

## What's Changed
* [release/8.0-staging] [Test Only] Disable the
UTFStringConversionFailures test on CI runs by @​github-actions[bot] in
https://github.com/dotnet/runtime/pull/117489
* [automated] Merge branch 'release/8.0' => 'release/8.0-staging' by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/117672
* [release/8.0-staging] [Test Only] Fix BuildChainCustomTrustStore test
by @​github-actions[bot] in
https://github.com/dotnet/runtime/pull/117762
* [release/8.0-staging] Update dependencies from dotnet/hotreload-utils
by @​dotnet-maestro[bot] in
https://github.com/dotnet/runtime/pull/118128
* [release/8.0-staging] fixing a bug in card mark stealing by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/118009
* [release/8.0-staging] Fix broken debugger/debuggee startup handshake
protocol on macOS26. by @​github-actions[bot] in
https://github.com/dotnet/runtime/pull/118213
* Update branding to 8.0.20 by @​vseanreesermsft in
https://github.com/dotnet/runtime/pull/118348
* Merging internal commits for release/8.0 by @​vseanreesermsft in
https://github.com/dotnet/runtime/pull/118452
* [release/8.0] Merge release/8.0-staging changes by @​krwq in
https://github.com/dotnet/runtime/pull/118763
* [release/8.0] Update dependencies from dotnet/emsdk by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117878


**Full Changelog**:
https://github.com/dotnet/runtime/compare/v8.0.19...v8.0.20

## 8.0.19

[Release](https://github.com/dotnet/core/releases/tag/v8.0.19)

## What's Changed
* [release/8.0-staging] Fix return in zlib-intel when window allocation
fails by @​ericstj in https://github.com/dotnet/runtime/pull/116550
* [release/8.0-staging] Move DNS EventSource tests to RemoteExecutor by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/116609
* [automated] Merge branch 'release/8.0' => 'release/8.0-staging' by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/115577
* [release/8.0-staging] Fix absolute path check when loading
hostfxr/hostpolicy/coreclr by @​elinor-fung in
https://github.com/dotnet/runtime/pull/116776
* [release/8.0-staging] Remove invalid `GCPROTECT` for duplicate slot by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/117030
* [release/8.0-staging] Map version for Tahoe compatibility. by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/116642
* Update branding to 8.0.19 by @​vseanreesermsft in
https://github.com/dotnet/runtime/pull/117282
* [release/8.0-staging] Update dependencies from
dotnet/source-build-reference-packages by @​dotnet-maestro[bot] in
https://github.com/dotnet/runtime/pull/116533
* [release/8.0-staging] Update dependencies from dotnet/hotreload-utils
by @​dotnet-maestro[bot] in
https://github.com/dotnet/runtime/pull/116551
* [release/8.0-staging] Update dependencies from dotnet/runtime-assets
by @​dotnet-maestro[bot] in
https://github.com/dotnet/runtime/pull/116572
* [release/8.0-staging] Harden `Ping_TimedOut_*` tests by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/116631
* Merging internal commits for release/8.0 by @​vseanreesermsft in
https://github.com/dotnet/runtime/pull/117440
* [automated] Merge branch 'release/8.0' => 'release/8.0-staging' by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/117311
* [release/8.0-staging] Update dependencies from dotnet/xharness by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116532
* [release/8.0] Update dependencies from dotnet/emsdk by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116552
* [release/8.0] Delete s390x and ppc64le helix queues by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/117488
* [release/8.0-staging] [Test Only]Address failures for
Import_IterationCountLimitExceeded_ThrowsInAllottedTime by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/116439
* [release/8.0-staging] Update dependencies from dotnet/arcade by
@​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116534
* [automated] Merge branch 'release/8.0' => 'release/8.0-staging' by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/117482
* [release/8.0] Fix `BigInteger.Rotate{Left,Right}` for backport by
@​github-actions[bot] in https://github.com/dotnet/runtime/pull/112992
* [release/8.0-staging] Fix few RandomAccess.Write edge case bugs by
@​adamsitnik in https://github.com/dotnet/runtime/pull/109648
* [8.0] Revert an earlier change to improve distribute free regions. by
@​mangod9 in https://github.com/dotnet/runtime/pull/117543
* [manual] Merge release/8.0-staging into release/8.0 by @​tarekgh in
https://github.com/dotnet/runtime/pull/117636


**Full Changelog**:
https://github.com/dotnet/runtime/compare/v8.0.18...v8.0.19

## 8.0.18

[Release](https://github.com/dotnet/core/releases/tag/v8.0.18)

## What's Changed
* [release/8.0-staging] [STJ] Account for F# CompilationMappingAttribute
now supporting multiple declarations. by @​github-actions in
https://github.com/dotnet/…
This was referenced Sep 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-System.Formats.Nrbf binaryformatter-migration Issues related to the removal of BinaryFormatter and migrations away from it Servicing-approved Approved for servicing release
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants