9.0.14 (2023-01-13)
9.0.13 (2023-01-11)
- restore old stream conversion (d7495e4)
9.0.12 (2023-01-11)
- downgrade nanoid (db87fb5)
9.0.11 (2023-01-11)
- add missing it-all dependency (6679755)
9.0.10 (2023-01-11)
- use semantic-release for releases (3267e99)
9.0.9 (2022-11-18)
9.0.8 (2022-11-18)
- Update .github/workflows/stale.yml [skip ci] (9229386)
9.0.7 (2022-06-23)
9.0.6 (2022-04-19)
9.0.5 (2022-03-01)
9.0.4 (2022-01-14)
9.0.2 (2021-09-28)
9.0.1 (2021-09-23)
9.0.0 (2021-09-23)
- the globSource call signature has changed and no longer supports the recursive or ignore options
8.1.6 (2021-08-27)
8.1.5 (2021-08-19)
8.1.4 (2021-07-09)
8.1.3 (2021-06-18)
8.1.2 (2021-06-01)
8.1.1 (2021-05-28)
8.1.0 (2021-05-21)
8.0.0 (2021-05-10)
- text encoder/decoder files have been removed
7.0.0 (2021-05-04)
ResponseWithURL
type is not exported any more as it uses a private name and causes an inconsistency between node and the browser
6.0.8 (2021-04-30)
6.0.7 (2021-04-14)
6.0.6 (2021-04-06)
6.0.5 (2021-04-01)
6.0.4 (2021-03-22)
6.0.3 (2021-03-15)
6.0.2 (2021-03-15)
6.0.1 (2021-02-07)
6.0.0 (2021-01-15)
- add types, gh actions and remove unused methods (#89) (707174c)
- make urlSource compatible with new ipfs.add (#53) (2b3ebbe), closes ipfs/js-ipfs#3195
- removed globalThis and normalise-input, format-mode and format-mtime
5.0.1 (2020-11-25)
5.0.0 (2020-11-16)
4.0.1 (2020-11-09)
4.0.0 (2020-10-10)
3.0.0 (2020-08-18)
2.4.0 (2020-08-12)
- detect support for WebRTC data channels (#56) (78ad2d2), closes #50
- http upload/download progress handlers (#54) (d30be96), closes #52 #52
2.3.1 (2020-06-18)
2.3.0 (2020-06-10)
- text encoder / decoder exports (c4792e1)
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)