Skip to content

Commit

Permalink
Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
s2quake committed Feb 14, 2024
1 parent 2cbfc48 commit 78e25e5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ To be released.
- Removed the '#nullable disable' from the Libplanet.Store project. [[#3644]]
- Removed the '#nullable disable' from the Libplanet.RocksDBStore project.
[[#3651]]
- (Libplanet.Net) Changed swarm-related types due to removal of
'nullable keyword'. [[#3670]]
- Changed `options` parameter type of `Swarm` class constructor from
`SwarmOptions` to `SwarmOptions?`.
- Changed `consensusTransport` parameter type of `Swarm` class constructor
from `ITransport` to `ITransport?`.
- Changed `Swarm.Validators` property type
from `IReadOnlyList<BoundPeer>` to `IReadOnlyList<BoundPeer>?`.
- Changed `progress` parameter type of `Swarm.PreloadAsync` method
from `IProgress<BlockSyncState>` to `IProgress<BlockSyncState>?`.
- Changed return type of `Swarm.FindSpecificPeerAsync` method
from `Task<BoundPeer>` to `Task<BoundPeer?>`.

### Backward-incompatible network protocol changes

Expand Down Expand Up @@ -45,6 +57,7 @@ To be released.
[#3644]: https://github.com/planetarium/libplanet/pull/3644
[#3651]: https://github.com/planetarium/libplanet/pull/3651
[#3669]: https://github.com/planetarium/libplanet/pull/3669
[#3670]: https://github.com/planetarium/libplanet/pull/3670


Version 4.0.4
Expand Down

0 comments on commit 78e25e5

Please sign in to comment.