v0.6.0 (2019-01-09)
This release introduces a large refactoring of feeds interactions, notably to provide some high-level APIs.
As a result, various breaking changes were needed to keep the APIs consistent and provide more security options, as detailed below.
Breaking changes
The Bzz APIs do not provide built-in feed signing anymore
- The
createFeedDigest()
and createKeyPair()
functions have been removed from the @erebos/api-bzz-base
and @erebos/swarm
packages. - The
Bzz
instance constructor now requires to be provided a BzzConfig
object rather than only the HTTP gateway url
. - The
postFeedValue()
method arguments have changed.
HTTP headers must be provided as options
Most Bzz methods arguments have changed, the headers
that were previously passed as argument must now be provided in the options
object instead.
Additional features and APIs