Skip to content

Commit ebd15f6

Browse files
Bump System.Text.Json version due to [CVE-2024-30105](dotnet/runtime#104619)
1 parent 46265e3 commit ebd15f6

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

Directory.Packages.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@
5555
<PackageVersion Include="System.Diagnostics.DiagnosticSource" Version="8.0.0" />
5656

5757
<!-- A conservative version of System.Text.Encodings.Web must be used here since there is no backward compatibility guarantee during major version bumps. -->
58-
<PackageVersion Include="System.Text.Encodings.Web" Version="4.7.2" />
58+
<PackageVersion Include="System.Text.Encodings.Web" Version="8.0.0" />
5959

6060
<!-- A conservative version of System.Text.Json must be used here since there is no backward compatibility guarantee during major version bumps. -->
61-
<PackageVersion Include="System.Text.Json" Version="4.7.2" />
61+
<PackageVersion Include="System.Text.Json" Version="8.0.4" />
6262

6363
<!-- A conservative version of System.Threading.Tasks.Extensions must be used here since there is no backward compatibility guarantee during major version bumps. -->
6464
<PackageVersion Include="System.Threading.Tasks.Extensions" Version="4.5.4" />

examples/Directory.Packages.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Packages.props, $(MSBuildThisFileDirectory)..))" />
33
<ItemGroup>
4-
<PackageVersion Update="System.Text.Json" Version="6.0.5" />
4+
<PackageVersion Update="System.Text.Json" Version="8.0.4" />
55
</ItemGroup>
66
</Project>

src/OpenTelemetry.Exporter.Console/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Unreleased
44

5+
* Bumped the minimum required version of `System.Text.Json` to 8.0.4 and its
6+
indirect dependency on `System.Text.Encodings.Web` to 8.0.0 in response to
7+
[CVE-2024-30105](https://github.com/dotnet/runtime/issues/104619).
8+
([#](https://github.com/open-telemetry/opentelemetry-dotnet/pull/))
9+
510
## 1.9.0
611

712
Released 2024-Jun-14

src/OpenTelemetry.Exporter.Zipkin/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
`Convert.ToString` will now format using `CultureInfo.InvariantCulture`.
77
([#5700](https://github.com/open-telemetry/opentelemetry-dotnet/pull/5700))
88

9+
* Bumped the minimum required version of `System.Text.Json` to 8.0.4 in response
10+
to [CVE-2024-30105](https://github.com/dotnet/runtime/issues/104619).
11+
([#](https://github.com/open-telemetry/opentelemetry-dotnet/pull/))
12+
913
## 1.9.0
1014

1115
Released 2024-Jun-14

test/Directory.Packages.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Packages.props, $(MSBuildThisFileDirectory)..))" />
33
<ItemGroup>
4-
<PackageVersion Update="System.Text.Json" Version="7.0.1" />
4+
<PackageVersion Update="System.Text.Json" Version="8.0.4" />
55
<PackageVersion Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
66
<PackageVersion Include="Microsoft.Coyote" Version="1.7.10" />
77
</ItemGroup>

0 commit comments

Comments
 (0)