Skip to content

Releases: ipfs/js-ipfs-utils

v2.3.0

10 Jun 14:10
Compare
Choose a tag to compare

Bug Fixes

  • text encoder / decoder exports (c4792e1)

v2.2.2

05 May 14:22
Compare
Choose a tag to compare

Bug Fixes

  • fix headers and abort signals (#41) (ad977a9)
  • ci: add empty commit to fix lint checks on master (ad2fdc4)

v2.2.1

01 May 10:31
Compare
Choose a tag to compare

Bug Fixes

Features

  • pass in Options Object to http Constructor (#37) (727f28d)

v2.2.0

14 Apr 11:36
Compare
Choose a tag to compare

Features

v2.1.0

13 Apr 14:10
Compare
Choose a tag to compare

Features

v2.0.0

09 Apr 18:29
Compare
Choose a tag to compare

Bug Fixes

BREAKING CHANGES

    • The .ndjson, .stream and .iterator methods have been removed
  • 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()) {

}

v1.2.4

08 Apr 14:07
Compare
Choose a tag to compare

Bug Fixes

  • detect node stream with hasOwnProperty (#33) (1c1d894)

v1.2.3

07 Apr 11:45
Compare
Choose a tag to compare

Bug Fixes

  • destroy request body when we are aborting it midway though r… (#31) (1f7506d)

v1.2.2

06 Apr 15:07
Compare
Choose a tag to compare

Bug Fixes

  • avoid Identifier 'global' has already been declared (#30) (f468065)

v1.2.1

31 Mar 18:47
Compare
Choose a tag to compare

Bug Fixes