From a7b9150fb5f3a308323c80be4fedf099d3f7c289 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 10 Sep 2026 02:13:38 +0000 Subject: [PATCH 1/2] Update dependencies from https://github.com/dotnet/roslyn build 20260909.2 On relative base path root Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.Compilers , Microsoft.CodeAnalysis.CSharp , Microsoft.CodeAnalysis.EditorFeatures , Microsoft.CodeAnalysis.EditorFeatures.Text , Microsoft.CodeAnalysis.ExternalAccess.FSharp , Microsoft.CodeAnalysis.Features , Microsoft.VisualStudio.LanguageServices From Version 5.0.0-2.26454.15 -> To Version 5.0.0-2.26459.2 --- eng/Version.Details.props | 16 ++++++++-------- eng/Version.Details.xml | 32 ++++++++++++++++---------------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 7aef7ebb931..fb2bcb76074 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -19,14 +19,14 @@ This file should be imported by eng/Versions.props 1.0.0-prerelease.25467.1 1.0.0-prerelease.25467.1 - 5.0.0-2.26454.15 - 5.0.0-2.26454.15 - 5.0.0-2.26454.15 - 5.0.0-2.26454.15 - 5.0.0-2.26454.15 - 5.0.0-2.26454.15 - 5.0.0-2.26454.15 - 5.0.0-2.26454.15 + 5.0.0-2.26459.2 + 5.0.0-2.26459.2 + 5.0.0-2.26459.2 + 5.0.0-2.26459.2 + 5.0.0-2.26459.2 + 5.0.0-2.26459.2 + 5.0.0-2.26459.2 + 5.0.0-2.26459.2 9.0.0 9.0.0 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 600588d3283..f7a7bad9470 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -42,37 +42,37 @@ https://github.com/dotnet/runtime 9d5a6a9aa463d6d10b0b0ba6d5982cc82f363dc3 - + https://github.com/dotnet/roslyn - 6773d8c49c142c794fefb104d4282f8560d7b93f + 0ea4de6ed5bc350a1ce1479344105fdd2c75ce93 - + https://github.com/dotnet/roslyn - 6773d8c49c142c794fefb104d4282f8560d7b93f + 0ea4de6ed5bc350a1ce1479344105fdd2c75ce93 - + https://github.com/dotnet/roslyn - 6773d8c49c142c794fefb104d4282f8560d7b93f + 0ea4de6ed5bc350a1ce1479344105fdd2c75ce93 - + https://github.com/dotnet/roslyn - 6773d8c49c142c794fefb104d4282f8560d7b93f + 0ea4de6ed5bc350a1ce1479344105fdd2c75ce93 - + https://github.com/dotnet/roslyn - 6773d8c49c142c794fefb104d4282f8560d7b93f + 0ea4de6ed5bc350a1ce1479344105fdd2c75ce93 - + https://github.com/dotnet/roslyn - 6773d8c49c142c794fefb104d4282f8560d7b93f + 0ea4de6ed5bc350a1ce1479344105fdd2c75ce93 - + https://github.com/dotnet/roslyn - 6773d8c49c142c794fefb104d4282f8560d7b93f + 0ea4de6ed5bc350a1ce1479344105fdd2c75ce93 - + https://github.com/dotnet/roslyn - 6773d8c49c142c794fefb104d4282f8560d7b93f + 0ea4de6ed5bc350a1ce1479344105fdd2c75ce93 https://github.com/dotnet/runtime From c42d17fdbf029d9ed04cbd7257ed3755e9aed2e2 Mon Sep 17 00:00:00 2001 From: Copilot Date: Thu, 10 Sep 2026 14:47:01 +0200 Subject: [PATCH 2/2] Fix CI failures Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../EmittedIL/TryCatch/TryCatch.fs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/FSharp.Compiler.ComponentTests/EmittedIL/TryCatch/TryCatch.fs b/tests/FSharp.Compiler.ComponentTests/EmittedIL/TryCatch/TryCatch.fs index b13739fa603..f198c1a24c3 100644 --- a/tests/FSharp.Compiler.ComponentTests/EmittedIL/TryCatch/TryCatch.fs +++ b/tests/FSharp.Compiler.ComponentTests/EmittedIL/TryCatch/TryCatch.fs @@ -65,7 +65,14 @@ module TryCatch = let result = CompilerAssert.ExecuteAndReturnResult (dllFile, isFsx=false, deps = s.Dependencies, newProcess=true) printfn "%A" result - Assert.True(result.StdErr.Contains "stack overflow" || result.StdErr.Contains "StackOverflow", result.StdErr) + Assert.True( + result.StdErr.Contains "stack overflow" + || result.StdErr.Contains "StackOverflow" + // On macOS, a stack overflow can cause SIGSEGV (128 + 11) without a runtime diagnostic. + || (TestFramework.getOperatingSystem () = "osx" + && result.Outcome = ExitCode 139 + && result.StdErr = ""), + sprintf "%A" result) | _ -> failwith (sprintf "%A" compilationResult)