This repository has been archived by the owner on Aug 24, 2021. It is now read-only.
Releases: ipld/js-ipld-git
Releases · ipld/js-ipld-git
v0.3.0
v0.2.3
v0.2.2
v0.2.1
v0.2.0
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) => {…}