-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: release 0.10.0 #327
Conversation
🚀 Release checklistBefore release
After release
|
4bb1b14
to
a631d14
Compare
From #325 Breaking change:
|
27d4c57
to
72b5a50
Compare
Release notes: We would like to introduce you to a new release that brings access to other new features of
|
72b5a50
to
18722a9
Compare
18722a9
to
e41fefa
Compare
🤖 Release is at https://github.com/ethersphere/bee-js/releases/tag/v0.10.0 🌻 |
🤖 I have created a release *beep* *boop*
0.10.0 (2021-06-01)
We would like to introduce you to a new release that brings access to other new features of
0.6.0
Bee release and several other improvements. This version is compatible with0.6.2
version of Bee.Until now most returned Errors contained very limited information on what actually went wrong as most of the problems originated directly from the Bee node. We improved our internal handling of these errors and now if Bee returns the reason for the error we pass it along with our thrown errors.
⛓ New endpoints
We have included support for the new Bee Debug's endpoints that exposes chain state with
BeeDebug.getChainState()
(/chainstate
) and reserve stateBeeDebug.getReserveState()
(/reservestate
).♻️ Reupload support
Now you can re-upload content that you have locally pinned in your node to the network with
Bee.reuploadPinnedData()
. If the data is not pinned, then an error is thrown.⛽️ Gas prices and limits for transactions
Now you can specify a gas price for methods that create transactions:
BeeDebug.cashoutLastCheque()
BeeDebug.depositTokens()
BeeDebug.withdrawTokens()
⚠ BREAKING CHANGES
Promise
returning methods from now on never throw errors, but return rejected promise instead (fix!: correctly return reject promise for promise returning fnc #326)BeeDebug.cashoutLastCheque()
now directly returns the transaction hash as string and not object (feat!: support gas price and limit for cashout #325)BeeDebug.depositTokens()
now directly returns the transaction hash as string and not object (feat: gas price for deposit and withdraw tokens #336)BeeDebug.withdrawTokens()
now directly returns the transaction hash as string and not object (feat: gas price for deposit and withdraw tokens #336)Features
Bug Fixes
This PR was generated with Release Please. See documentation.