Skip to content

Commit

Permalink
Merge pull request #117 from stephentoub/patch-1
Browse files Browse the repository at this point in the history
Remove upper bound on System.Text.Json package reference
  • Loading branch information
baywet authored Nov 15, 2024
2 parents a515b33 + 36d24fd commit 9c38f61
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [0.5.6] - 2024-03-06

### Changed

- Removed upper bound on system.text.json to allow people migrate to net9

## [0.5.5] - 2024-03-06

### Changed
Expand Down
7 changes: 5 additions & 2 deletions src/lib/apimanifest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>Microsoft.OpenApi.ApiManifest</PackageId>
<VersionPrefix>0.5.5</VersionPrefix>
<VersionPrefix>0.5.6</VersionPrefix>
<VersionSuffix>preview</VersionSuffix>
<PackageIconUrl>http://go.microsoft.com/fwlink/?LinkID=288890</PackageIconUrl>
<PackageProjectUrl>https://github.com/Microsoft/OpenApi.ApiManifest</PackageProjectUrl>
Expand Down Expand Up @@ -35,7 +35,10 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="System.Text.Json" Version="[6.0,9.0)" />
<!-- suppressed because of this CVE https://github.com/advisories/GHSA-hh2w-p6rv-4g7w
The target application is the one which will resolve the correct version
when the version range is updated to > 8.0.4 in the future, remove the nowarn suppression -->
<PackageReference Include="System.Text.Json" Version="[6.0,)" NoWarn="NU1903" />
</ItemGroup>

</Project>

0 comments on commit 9c38f61

Please sign in to comment.