2.2.2 (2020-05-05)
- fix headers and abort signals (#41) (ad977a9)
- ci: add empty commit to fix lint checks on master (ad2fdc4)
2.2.1 (2020-05-01)
2.2.0 (2020-04-14)
2.1.0 (2020-04-13)
2.0.0 (2020-04-09)
-
- The
.ndjson
,.stream
and.iterator
methods have been removed
- The
- An
.ndjson
async generator function has been added to the response which does the same thing the.ndjson
instance method used to
Old:
for await (const datum of http.ndjson('http://...')) {
}
New:
const response = await http.post('http://...')
for await (const datum of response.ndjson()) {
}
1.2.4 (2020-04-08)
1.2.3 (2020-04-07)
1.2.2 (2020-04-06)
1.2.1 (2020-03-31)
- fix path join swap (b538ee4)
1.2.0 (2020-03-31)
- add path join (a535e42)
1.1.0 (2020-03-26)
- fix error code param (dd73a33)
- add temp dir function (7714c66)
1.0.0 (2020-03-20)
0.7.2 (2020-02-10)
- number is not a valid mtime value (#24) (bb2d841), closes /github.com/ipfs/js-ipfs-unixfs/blob/master/src/index.js#L104-L106
0.7.1 (2020-01-23)
0.7.0 (2020-01-23)
0.6.0 (2020-01-09)
0.5.0 (2019-12-06)
- convert to async iterators (#15) (251eff0)
- support unixfs metadata and formatting it (#14) (173e4bf)
- In order to support metadata on intermediate directories, globSource in this module will now emit directories and files where previously it only emitted files.
- Support for Node.js streams and Pull Streams has been removed
0.4.0 (2019-09-19)
0.3.0 (2019-09-15)
0.2.0 (2019-09-06)
0.1.0 (2019-09-04)
- add glob-source from js-ipfs to be shared (#9) (0a95ef8)
- add normalise input function (#5) (b22b8de), closes #8
0.0.4 (2019-07-18)
- add globalThis polyfill (f0c7c42)
0.0.3 (2019-05-16)
- use is-buffer (bbf5baf)