Skip to content

Commit

Permalink
October 2024 security updates (#100)
Browse files Browse the repository at this point in the history
* Upgrade vulnerable version of System.Text.Json to patched version (GHSA-8g4q-xg66-9fp4)

* Bump version
  • Loading branch information
adams85 authored Oct 9, 2024
1 parent c589c37 commit 53af703
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
environment:
build_version: 9.3.1
build_version: 9.3.2
version: $(build_version)-{build}
image: Visual Studio 2022
configuration: Release
Expand Down
8 changes: 4 additions & 4 deletions src/ConfigCatClient/ConfigCatClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -69,29 +69,29 @@
<Reference Include="System.Net.Http" />
<!--Do not remove this reference, it was added due to a SNYK security report-->
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="System.Text.Json" Version="6.0.0" />
<PackageReference Include="System.Text.Json" Version="6.0.10" />
</ItemGroup>
</When>

<When Condition="'$(TargetFramework)' == 'netstandard2.0'">
<ItemGroup>
<!--Do not remove this reference, it was added due to a SNYK security report-->
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="System.Text.Json" Version="6.0.0" />
<PackageReference Include="System.Text.Json" Version="6.0.10" />
</ItemGroup>
</When>

<When Condition="'$(TargetFramework)' == 'netstandard2.1'">
<ItemGroup>
<!--Do not remove this reference, it was added due to a SNYK security report-->
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="System.Text.Json" Version="6.0.0" />
<PackageReference Include="System.Text.Json" Version="6.0.10" />
</ItemGroup>
</When>

<When Condition="'$(TargetFramework)' == 'net5.0'">
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="6.0.0" />
<PackageReference Include="System.Text.Json" Version="6.0.10" />
</ItemGroup>
</When>
</Choose>
Expand Down

0 comments on commit 53af703

Please sign in to comment.