From c9abba1a3570ecaf6998b97e8792d4f2a77d683a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 May 2026 09:48:05 +0000 Subject: [PATCH 1/2] Bump OpenTelemetry.Exporter.OpenTelemetryProtocol from 1.11.2 to 1.15.3 --- updated-dependencies: - dependency-name: OpenTelemetry.Exporter.OpenTelemetryProtocol dependency-version: 1.15.3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- tests/FSharp.Test.Utilities/FSharp.Test.Utilities.fsproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/FSharp.Test.Utilities/FSharp.Test.Utilities.fsproj b/tests/FSharp.Test.Utilities/FSharp.Test.Utilities.fsproj index cb5f54ad381..a4f64a0f893 100644 --- a/tests/FSharp.Test.Utilities/FSharp.Test.Utilities.fsproj +++ b/tests/FSharp.Test.Utilities/FSharp.Test.Utilities.fsproj @@ -106,7 +106,7 @@ - + From 786177483674a9bcdd48bc7d208622661ede4ec6 Mon Sep 17 00:00:00 2001 From: Tomas Grosup Date: Wed, 6 May 2026 13:43:23 +0200 Subject: [PATCH 2/2] Fix test scripts to use System.Memory 4.6.3 instead of 4.5.3 The neg107 and span tests hardcoded System.Memory 4.5.3 path for #r references. This version was previously available as a transitive dependency of OpenTelemetry.Exporter.OpenTelemetryProtocol 1.11.2 but is no longer restored with version 1.15.3. Update to 4.6.3 which matches SystemMemoryVersion in eng/Versions.props and is guaranteed to be in the NuGet cache since the compiler itself depends on it. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- tests/fsharp/core/span/common-pre.fsx | 2 +- tests/fsharp/typecheck/sigs/neg107-pre.fsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fsharp/core/span/common-pre.fsx b/tests/fsharp/core/span/common-pre.fsx index ddd4a03e8fb..ad98f2d01a9 100644 --- a/tests/fsharp/core/span/common-pre.fsx +++ b/tests/fsharp/core/span/common-pre.fsx @@ -5,4 +5,4 @@ let packagesDir = match Environment.GetEnvironmentVariable("NUGET_PACKAGES") with | null -> Path.Combine(Environment.GetEnvironmentVariable("USERPROFILE"), ".nuget", "packages") | path -> path -File.WriteAllText("refs.generated.fsx", sprintf @"#r @""%s\System.Memory\4.5.3\lib\netstandard2.0\System.Memory.dll""" packagesDir) +File.WriteAllText("refs.generated.fsx", sprintf @"#r @""%s\System.Memory\4.6.3\lib\netstandard2.0\System.Memory.dll""" packagesDir) diff --git a/tests/fsharp/typecheck/sigs/neg107-pre.fsx b/tests/fsharp/typecheck/sigs/neg107-pre.fsx index b090dbcbbfe..b7d9aff7315 100644 --- a/tests/fsharp/typecheck/sigs/neg107-pre.fsx +++ b/tests/fsharp/typecheck/sigs/neg107-pre.fsx @@ -5,4 +5,4 @@ let packagesDir = match Environment.GetEnvironmentVariable("NUGET_PACKAGES") with | null -> Path.Combine(Environment.GetEnvironmentVariable("USERPROFILE"), ".nuget", "packages") | path -> path -File.WriteAllText("neg107.generated.fsx", sprintf @"#r @""%s\System.Memory\4.5.3\lib\netstandard2.0\System.Memory.dll""" packagesDir) +File.WriteAllText("neg107.generated.fsx", sprintf @"#r @""%s\System.Memory\4.6.3\lib\netstandard2.0\System.Memory.dll""" packagesDir)