0.6.6 (2021-08-24)
0.6.5 (2021-08-11)
0.6.4 (2021-03-03)
0.6.3 (2021-03-03)
0.6.2 (2021-03-03)
0.6.1 (2020-08-05)
- convert output of multihash.decode to buffer (20dd68f)
0.6.0 (2020-08-04)
-
util.serialize
returns aUint8Array
util.cid
returnsCID
s with a breaking API change - see multiformats/js-cid#117 for changes
0.5.3 (2020-07-24)
0.5.2 (2020-06-19)
- multihashes does not export default lengths any more (4f85c53), closes /github.com/multiformats/js-multihash/pull/76#issuecomment-646561123
- package: update cids to version 0.8.0 (9da8893)
0.5.1 (2020-01-13)
- package: update multicodec to version 1.0.0 (6dbc3c8)
- package: update multihashing-async to version 0.8.0 (fcf7f6f)
0.5.0 (2019-05-10)
- package: update cids to version 0.7.0 (2d87c9e)
- package: Returned v1 CIDs now default to base32 encoding
Previous versions returned a base58 encoded string when toString()
/
toBaseEncodedString()
was called on a CIDv1. It now returns a base32
encoded string.
0.4.0 (2019-05-08)
- package: update cids to version 0.6.0 (fe0ac8b)
- package: update multihashing-async to version 0.6.0 (784c464)
- new IPLD Format API (e39a7d9)
- The API is now async/await based
There are numerous changes, the most significant one is that the API is no longer callback based, but it using async/await.
For the full new API please see the IPLD Formats spec.
0.3.0 (2019-03-27)
- Dates are now returned in ISO 8601/RFC3399 format
0.2.3 (2019-01-18)
0.2.2 (2018-10-12)
- parse mergetags (f2010df)
0.2.1 (2018-06-29)
- the first argument is now the serialized output NOT the dag node. See ipld/interface-ipld-format#32
0.2.0 (2018-02-12)
- use binary blobs directly (334f2f0)
- 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) => {…}
0.1.1 (2017-11-07)
0.1.0 (2017-09-02)
- deps in package.json (fece381)
- v0.1.0 (51a9b5e)