From 23987db5ab1c646460a0aa0648414006fc3772f5 Mon Sep 17 00:00:00 2001 From: Copilot <223556219+Copilot@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:54:13 -0700 Subject: [PATCH 1/3] Add .NET 11 RC 1 runtime release notes Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: a851ab96-8780-407d-97d0-50eed422ead5 --- release-notes/11.0/preview/rc1/runtime.md | 56 +++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 release-notes/11.0/preview/rc1/runtime.md diff --git a/release-notes/11.0/preview/rc1/runtime.md b/release-notes/11.0/preview/rc1/runtime.md new file mode 100644 index 0000000000..d4078623ae --- /dev/null +++ b/release-notes/11.0/preview/rc1/runtime.md @@ -0,0 +1,56 @@ +# .NET Runtime in .NET 11 RC 1 - Release Notes + +.NET 11 RC 1 includes new runtime platform and diagnostics capabilities: + +- [CoreCLR support for linux-bionic](#coreclr-support-for-linux-bionic) +- [In-process crash reporting on Unix](#in-process-crash-reporting-on-unix) +- [Bug fixes](#bug-fixes) +- [Community contributors](#community-contributors) + +.NET Runtime updates in .NET 11: + +- [What's new in the .NET 11 runtime](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-11/runtime) + +## CoreCLR support for linux-bionic + +CoreCLR is now enabled for `linux-bionic-arm64` and `linux-bionic-x64`, including Termux scenarios on Android ([dotnet/runtime #131115](https://github.com/dotnet/runtime/pull/131115)). The linux-bionic AppHost pack now includes `singlefilehost`, so self-contained single-file applications use the expected bundled host instead of falling back to an apphost that cannot launch the bundle. + +The build selects CoreCLR alongside Mono, the libraries, host, and packs on the supported linux-bionic architectures. NativeAOT remains the fallback for linux-bionic architectures where CoreCLR isn't enabled. + +## In-process crash reporting on Unix + +The in-process crash reporter is now available on Linux and macOS through the existing crash-report settings ([dotnet/runtime #131410](https://github.com/dotnet/runtime/pull/131410)). When `DOTNET_DbgEnableMiniDump` isn't enabled, setting `DOTNET_EnableCrashReport=1` or `DOTNET_EnableCrashReportOnly=1` selects the in-process reporter. Existing createdump behavior remains in place when minidumps are enabled. + +The reporter can also generate a JSON or text report on demand while the runtime is still running ([dotnet/runtime #131220](https://github.com/dotnet/runtime/pull/131220)). This internal entry point separates report generation from fatal-signal handling and writes to a caller-provided callback, enabling native fatal-error handlers to request the same diagnostic data without managing the reporter's watchdog or file output. + +Community contributions extended the in-process reporter across the remaining Unix platforms and added s390x support ([dotnet/runtime #131604](https://github.com/dotnet/runtime/pull/131604), [dotnet/runtime #131796](https://github.com/dotnet/runtime/pull/131796)). Thank you [@am11](https://github.com/am11) and [@saitama951](https://github.com/saitama951) for these contributions! + + + +## Bug fixes + +- **Garbage collection** + - `GC.GetTotalMemory` no longer reports negative values when regions are enabled ([dotnet/runtime #130888](https://github.com/dotnet/runtime/pull/130888)). + - `GC.GetTotalAllocatedBytes` remains monotonic with Dynamic Adaptation To Application Sizes (DATAS) under Server GC ([dotnet/runtime #131069](https://github.com/dotnet/runtime/pull/131069)). +- **Hosting** + - `Environment.GetCommandLineArgs()[0]` now reports the host invocation name instead of a rewritten path in affected hosting scenarios ([dotnet/runtime #131671](https://github.com/dotnet/runtime/pull/131671)). + - Native exception handling in external shared libraries works correctly on macOS ([dotnet/runtime #130693](https://github.com/dotnet/runtime/pull/130693)). +- **Runtime diagnostics** + - In-process crash reports no longer assert while processing certain stack frames ([dotnet/runtime #131273](https://github.com/dotnet/runtime/pull/131273)). + - Concurrent in-process crash-report requests are serialized to protect shared reporting state ([dotnet/runtime #130436](https://github.com/dotnet/runtime/pull/130436)). +- **Type system and interop** + - Loading recursive nullable types that implement static abstract interfaces no longer crashes on Linux ([dotnet/runtime #130088](https://github.com/dotnet/runtime/pull/130088)). + - The `ComWrappers` runtime-callable-wrapper cache is partitioned into per-processor buckets, reducing contention between native-to-managed transitions and finalization ([dotnet/runtime #132033](https://github.com/dotnet/runtime/pull/132033)). + +## Community contributors + +Thank you contributors! ❤️ + +- [@abhishekabhi73cc-design](https://github.com/dotnet/runtime/pulls?q=is%3Apr+is%3Amerged+author%3Aabhishekabhi73cc-design) +- [@am11](https://github.com/dotnet/runtime/pulls?q=is%3Apr+is%3Amerged+author%3Aam11) +- [@saitama951](https://github.com/dotnet/runtime/pulls?q=is%3Apr+is%3Amerged+author%3Asaitama951) +- [@Sergio0694](https://github.com/dotnet/runtime/pulls?q=is%3Apr+is%3Amerged+author%3ASergio0694) From 620e91fdcb7034e361f35b729a8e7ce75a0c3faa Mon Sep 17 00:00:00 2001 From: Copilot <223556219+Copilot@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:57:22 -0700 Subject: [PATCH 2/3] Clarify Unix crash reporting release notes Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: a851ab96-8780-407d-97d0-50eed422ead5 --- release-notes/11.0/preview/rc1/runtime.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/release-notes/11.0/preview/rc1/runtime.md b/release-notes/11.0/preview/rc1/runtime.md index d4078623ae..89b480f6ad 100644 --- a/release-notes/11.0/preview/rc1/runtime.md +++ b/release-notes/11.0/preview/rc1/runtime.md @@ -21,11 +21,10 @@ The build selects CoreCLR alongside Mono, the libraries, host, and packs on the The in-process crash reporter is now available on Linux and macOS through the existing crash-report settings ([dotnet/runtime #131410](https://github.com/dotnet/runtime/pull/131410)). When `DOTNET_DbgEnableMiniDump` isn't enabled, setting `DOTNET_EnableCrashReport=1` or `DOTNET_EnableCrashReportOnly=1` selects the in-process reporter. Existing createdump behavior remains in place when minidumps are enabled. -The reporter can also generate a JSON or text report on demand while the runtime is still running ([dotnet/runtime #131220](https://github.com/dotnet/runtime/pull/131220)). This internal entry point separates report generation from fatal-signal handling and writes to a caller-provided callback, enabling native fatal-error handlers to request the same diagnostic data without managing the reporter's watchdog or file output. - Community contributions extended the in-process reporter across the remaining Unix platforms and added s390x support ([dotnet/runtime #131604](https://github.com/dotnet/runtime/pull/131604), [dotnet/runtime #131796](https://github.com/dotnet/runtime/pull/131796)). Thank you [@am11](https://github.com/am11) and [@saitama951](https://github.com/saitama951) for these contributions!