Skip to content

Commit 993c927

Browse files
dependabot[bot]T-GroCopilot
authored
Bump OpenTelemetry.Exporter.OpenTelemetryProtocol from 1.11.2 to 1.15.3 (#19695)
* 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] <support@github.com> * 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> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tomas Grosup <tomasgrosup@microsoft.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 071271a commit 993c927

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/FSharp.Test.Utilities/FSharp.Test.Utilities.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="$(MicrosoftCodeAnalysisCSharpVersion)" />
107107
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="$(MicrosoftCodeAnalysisCSharpVersion)" />
108108
<PackageReference Include="Microsoft.CodeAnalysis.Test.Resources.Proprietary" Version="$(MicrosoftCodeAnalysisTestResourcesProprietaryVersion)" />
109-
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.11.2" />
109+
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.15.3" />
110110
<PackageReference Include="Newtonsoft.Json" Version="$(NewtonsoftJsonVersion)" />
111111
<!-- xUnit3 extensibility packages for custom test utilities -->
112112
<PackageReference Include="xunit.v3.common" Version="$(XunitVersion)" />

tests/fsharp/core/span/common-pre.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ let packagesDir =
55
match Environment.GetEnvironmentVariable("NUGET_PACKAGES") with
66
| null -> Path.Combine(Environment.GetEnvironmentVariable("USERPROFILE"), ".nuget", "packages")
77
| path -> path
8-
File.WriteAllText("refs.generated.fsx", sprintf @"#r @""%s\System.Memory\4.5.3\lib\netstandard2.0\System.Memory.dll""" packagesDir)
8+
File.WriteAllText("refs.generated.fsx", sprintf @"#r @""%s\System.Memory\4.6.3\lib\netstandard2.0\System.Memory.dll""" packagesDir)

tests/fsharp/typecheck/sigs/neg107-pre.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ let packagesDir =
55
match Environment.GetEnvironmentVariable("NUGET_PACKAGES") with
66
| null -> Path.Combine(Environment.GetEnvironmentVariable("USERPROFILE"), ".nuget", "packages")
77
| path -> path
8-
File.WriteAllText("neg107.generated.fsx", sprintf @"#r @""%s\System.Memory\4.5.3\lib\netstandard2.0\System.Memory.dll""" packagesDir)
8+
File.WriteAllText("neg107.generated.fsx", sprintf @"#r @""%s\System.Memory\4.6.3\lib\netstandard2.0\System.Memory.dll""" packagesDir)

0 commit comments

Comments
 (0)