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

Latest commit

 

History

History
233 lines (99 loc) · 6.42 KB

CHANGELOG.md

File metadata and controls

233 lines (99 loc) · 6.42 KB

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)

Bug Fixes

  • convert output of multihash.decode to buffer (20dd68f)

0.6.0 (2020-08-04)

Bug Fixes

  • replace node buffers with uint8arrays (#70) (8c999ba)

BREAKING CHANGES

    • util.serialize returns a Uint8Array

0.5.3 (2020-07-24)

0.5.2 (2020-06-19)

Bug Fixes

0.5.1 (2020-01-13)

Bug Fixes

  • 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)

Bug Fixes

  • package: update cids to version 0.7.0 (2d87c9e)

BREAKING CHANGES

  • 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)

Bug Fixes

  • package: update cids to version 0.6.0 (fe0ac8b)
  • package: update multihashing-async to version 0.6.0 (784c464)

Features

BREAKING CHANGES

  • 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)

Bug Fixes

  • order tree directory entries correctly (fixes #44) (02be41f)

Features

  • use RFC3339 to format dates, fixes ipfs/go-ipld-git#16 (#43) (8a9f7cb)

BREAKING CHANGES

  • Dates are now returned in ISO 8601/RFC3399 format

0.2.3 (2019-01-18)

Bug Fixes

0.2.2 (2018-10-12)

Features

0.2.1 (2018-06-29)

Bug Fixes

Features

BREAKING CHANGES

0.2.0 (2018-02-12)

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) => {…}

0.1.1 (2017-11-07)

Bug Fixes

0.1.0 (2017-09-02)

Bug Fixes

Features