Skip to content

Commit

Permalink
Merge tag '4.5.1' into port/4.5.1-to-main
Browse files Browse the repository at this point in the history
Libplanet 4.5.1
  • Loading branch information
greymistcube committed May 27, 2024
2 parents a71dd8b + 56ecf05 commit afc31b1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,19 @@ reconstruct states with valid state root hashes purely from past
[#3799]: https://github.com/planetarium/libplanet/pull/3799


Version 4.5.1
-------------

Released on May 27, 2024.

- Suppressed build warnings as a temporary measure that may result in
build failures due to security vulnerabilities found in
[LiteDB 4.1.4] and [BouncyCastle.Cryptography 2.0.0] packages. [[#3800]]

[#3800]: https://github.com/planetarium/libplanet/pull/3800
[BouncyCastle.Cryptography 2.0.0]: https://www.nuget.org/packages/BouncyCastle.Cryptography/2.0.0


Version 4.5.0
-------------

Expand Down
2 changes: 2 additions & 0 deletions Libplanet.Store/Libplanet.Store.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
<Nullable>enable</Nullable>
<TargetFrameworks>netstandard2.0;netstandard2.1;netcoreapp3.1</TargetFrameworks>
<RootNamespace>Libplanet.Store</RootNamespace>
<NoWarn>$(NoWarn);NU1904</NoWarn>
<!-- FIXME: NU1904 should be removed once LiteDB is bumped to a secure version -->
<IsTestProject>false</IsTestProject>
<CodeAnalysisRuleSet>..\Libplanet.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
Expand Down
3 changes: 2 additions & 1 deletion Libplanet/Libplanet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ https://docs.libplanet.io/</Description>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Nullable>enable</Nullable>
<NoWarn>$(NoWarn);S4035;CS1591;NU5104;MEN001</NoWarn>
<NoWarn>$(NoWarn);S4035;CS1591;NU5104;MEN001;NU1902</NoWarn>
<!-- FIXME: S4035 and CS1591 should be turned on eventually. -->
<!-- FIXME: NU1902 should be removed once BouncyCastle is bumped to a secure version -->
<IsTestProject>false</IsTestProject>
<CodeAnalysisRuleSet>..\Libplanet.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
Expand Down

0 comments on commit afc31b1

Please sign in to comment.