This repository was archived by the owner on Feb 12, 2024. It is now read-only.
v0.38.0-pre.0
Pre-release
Pre-release
·
4484 commits
to master
since this 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.