v0.8.0
What's Changed
- feat: check that the CidBuilder hasher is usable by @rvagg in #91
- feat: check links on setting and sanitise on encoding by @rvagg in #92
Breaking API changes in this release are the addition of error
returns which should be checked:
(*ProtoNode).SetCidBuilder
: changed fromfunc(github.com/ipfs/go-cid.Builder)
tofunc(github.com/ipfs/go-cid.Builder) error
(*ProtoNode).SetLinks
: changed fromfunc([]*github.com/ipfs/go-ipld-format.Link)
tofunc([]*github.com/ipfs/go-ipld-format.Link) error
Additional errors may be returned on ProtoNode
state change operations where those changes may put the ProtoNode
instance into an unencodable state.
Full Changelog: v0.7.0...v0.8.0