Skip to content

Latest commit

 

History

History
285 lines (122 loc) · 7.97 KB

CHANGELOG.md

File metadata and controls

285 lines (122 loc) · 7.97 KB

2.2.2 (2020-05-05)

Bug Fixes

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

2.2.1 (2020-05-01)

Bug Fixes

Features

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

2.2.0 (2020-04-14)

Features

2.1.0 (2020-04-13)

Features

2.0.0 (2020-04-09)

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()) {

}

1.2.4 (2020-04-08)

Bug Fixes

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

1.2.3 (2020-04-07)

Bug Fixes

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

1.2.2 (2020-04-06)

Bug Fixes

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

1.2.1 (2020-03-31)

Bug Fixes

1.2.0 (2020-03-31)

Features

1.1.0 (2020-03-26)

Bug Fixes

Features

1.0.0 (2020-03-20)

Features

0.7.2 (2020-02-10)

Bug Fixes

0.7.1 (2020-01-23)

Bug Fixes

0.7.0 (2020-01-23)

Features

  • accept browser readable streams as input (#21) (0902067)

0.6.0 (2020-01-09)

Bug Fixes

0.5.0 (2019-12-06)

Features

  • convert to async iterators (#15) (251eff0)
  • support unixfs metadata and formatting it (#14) (173e4bf)

BREAKING CHANGES

  • 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)

Features

0.3.0 (2019-09-15)

Features

0.2.0 (2019-09-06)

Features

0.1.0 (2019-09-04)

Bug Fixes

Features

  • 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)

Features

  • add globalThis polyfill (f0c7c42)

0.0.3 (2019-05-16)

0.0.2 (2019-05-16)

Bug Fixes