Skip to content

Commit d2b6f47

Browse files
authored
chore(deps) Change SystemTextJson to 6.0.10 (#125)
1 parent 80e595f commit d2b6f47

5 files changed

Lines changed: 7 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ The `Unreleased` section name is replaced by the expected version of next releas
1313
- `TimelineEvent.ToString`: Render Unfold/Event state, EventType, Index [#123](https://github.com/jet/FsCodec/pull/123)
1414

1515
### Changed
16+
17+
- `SystemTextJson`: Dropped minimum `System.Text.Json` version to `6.0.10` per [CVE-2024-43485](https://github.com/advisories/GHSA-8g4q-xg66-9fp4) [#125](https://github.com/jet/FsCodec/pull/125)
18+
1619
### Removed
1720
### Fixed
1821

src/FsCodec.SystemTextJson/FsCodec.SystemTextJson.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<PackageReference Include="FSharp.Core" Version="4.5.4" />
2828

29-
<PackageReference Include="System.Text.Json" Version="8.0.4" />
29+
<PackageReference Include="System.Text.Json" Version="6.0.10" />
3030
</ItemGroup>
3131

3232
<ItemGroup>

tests/FsCodec.NewtonsoftJson.Tests/FsCodec.NewtonsoftJson.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<DisableImplicitFSharpCoreReference>false</DisableImplicitFSharpCoreReference>
66
</PropertyGroup>
77

tests/FsCodec.SystemTextJson.Tests/FsCodec.SystemTextJson.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<DisableImplicitFSharpCoreReference>false</DisableImplicitFSharpCoreReference>
66
<DefineConstants>SYSTEM_TEXT_JSON</DefineConstants>
77
</PropertyGroup>

tests/FsCodec.Tests/FsCodec.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<DisableImplicitFSharpCoreReference>false</DisableImplicitFSharpCoreReference>
66
</PropertyGroup>
77

0 commit comments

Comments
 (0)