Skip to content
This repository has been archived by the owner on Aug 24, 2021. It is now read-only.

v0.2.0

Compare
Choose a tag to compare
@vmx vmx released this 12 Feb 15:43
· 81 commits to master since this release

Bug Fixes

  • use binary blobs directly (334f2f0)

BREAKING CHANGES

  • Everyone calling the functions of resolve need to
    pass in the binary data instead of an IPFS block.

So if your input is an IPFS block, the code changes from

resolver.resolve(block, path, (err, result) => {…}

to

resolver.resolve(block.data, path, (err, result) => {…}