Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Releases: ipfs/js-ipfs

v0.39.0-rc.0

08 Oct 10:54
Compare
Choose a tag to compare
v0.39.0-rc.0 Pre-release
Pre-release

Bug Fixes

  • limit concurrent HTTP requests in browser (#2304) (cf38aea)
  • only try to get ipfs if argv is present (#2504) (1281b9f)
  • pull in preconfigured chai from interface tests (#2510) (8c01259)

Features

Reverts

v0.38.0

30 Sep 16:05
Compare
Choose a tag to compare

Bug Fixes

  • tests: remove Math.random from tests (#2431) (60bf020)
  • make progress bar work again when adding files (#2386) (f6dcb0f), closes #2379
  • really allow logo to appear on npm (02e521e)

Features

BREAKING CHANGES

  • pubsub is now enabled by default and the experimental flag was removed
  • recursive is now true by default in ipfs resolve
  • The default pubsub implementation has changed from floodsub to gossipsub

v0.38.0-rc.6

25 Sep 08:43
Compare
Choose a tag to compare
v0.38.0-rc.6 Pre-release
Pre-release
chore: release version v0.38.0-rc.6

v0.38.0-rc.4

17 Sep 23:26
Compare
Choose a tag to compare
v0.38.0-rc.4 Pre-release
Pre-release
chore: release version v0.38.0-rc.4

v0.38.0-rc.3

17 Sep 21:18
Compare
Choose a tag to compare
v0.38.0-rc.3 Pre-release
Pre-release
chore: release version v0.38.0-rc.3

v0.38.0-rc.2

16 Sep 10:36
Compare
Choose a tag to compare
v0.38.0-rc.2 Pre-release
Pre-release
chore: release version v0.38.0-rc.2

v0.38.0-rc.1

13 Sep 11:28
Compare
Choose a tag to compare
v0.38.0-rc.1 Pre-release
Pre-release
chore: release version v0.38.0-rc.1

v0.38.0-rc.0

09 Sep 17:41
Compare
Choose a tag to compare
v0.38.0-rc.0 Pre-release
Pre-release

Bug Fixes

Features

BREAKING CHANGES

  • pubsub is now enabled by default and the experimental flag was removed
  • recursive is now true by default in ipfs resolve

v0.38.0-pre.1

02 Sep 21:07
Compare
Choose a tag to compare
v0.38.0-pre.1 Pre-release
Pre-release

Bug Fixes

  • package: update ipfs-http-client to version 34.0.0 (#2407) (f7e5094)

Features

Reverts

BREAKING CHANGES

  • The default pubsub implementation has changed from floodsub to gossipsub. Additionally, to enable pubsub programmatically set pubsub.enabled: true instead of EXPERIMENTAL.pubsub: true or via the CLI pass --enable-pubsub instead of --enable-pubsub-experiment to jsipfs daemon.

v0.38.0-pre.0

27 Aug 09:14
Compare
Choose a tag to compare
v0.38.0-pre.0 Pre-release
Pre-release

Bug Fixes

  • make progress bar work again when adding files (#2386) (f6dcb0f), closes #2379
  • really allow logo to appear on npm (02e521e)

Features

BREAKING CHANGES

  • Order of output from the CLI command ipfs add may change between invocations given the same files since it is not longer buffered and sorted.

Previously, js-ipfs buffered all hashes of added files and sorted them before outputting to the terminal, this might be because the glob module does not return stable results. This gives a poor user experience as you see nothing then everything, compared to go-ipfs which prints out the hashes as they become available. The tradeoff is the order might be slightly different between invocations, though the hashes are always the same as we sort DAGNode links before serializing so it doesn't matter what order you import them in.