v5.0.0
5.0.0 (2022-07-28)
This is a breaking release that brings support for Bee 1.7 and cleans up some long awaiting breaking changes that we had lined up:
- We have removed interfaces
DebugPostageBatch
(forPostageBatch
) andNodesInfo
(forNodeInfo
). - We have changed the
cid
property of theUploadResultWithCid
interface to be a function instead of getter as this property is not available for encrypted references which caused some troubles when serializing the whole object. - We have enabled by default waiting for the newly created postage batches to be usable (originally the
waitForUsable
property of theBeeDebug.createPostageBatch()
defaulted tofalse
, now it istrue
). - We have added support for the
Bee. createFeedManifest()
to return object instead of directly reference that also has support for getting CID with the.cid()
function.
⚠ BREAKING CHANGES
- enable waiting for postage batch to be usable by default (#746)
- adds support for Feed Manifest CID (#745)
- drop node 12 support (#741)
- drop DebugPostageBatch in favor of PostageBatch inteface (#743)
- drop NodesInfo in favor of NodeInfo inteface (#742)
- convert cid getter to function (#740)
Features
- adds support for Feed Manifest CID (#745) (37c5b55)
- enable waiting for postage batch to be usable by default (#746) (cb05d22)
Bug Fixes
Code Refactoring
- drop DebugPostageBatch in favor of PostageBatch inteface (#743) (3f66764)
- drop NodesInfo in favor of NodeInfo inteface (#742) (acddb14)