Skip to content

Releases: node-fetch/fetch-charset-detection

1.0.1

16 Oct 06:48
52c7b5d
Compare
Choose a tag to compare
  • Fix HTML4 charset detection 52c7b5d

1.0.0...1.0.1

1.0.0

04 Sep 04:12
50634a7
Compare
Choose a tag to compare

Bump version

0.7.0

10 Aug 07:13
cef4503
Compare
Choose a tag to compare

Breaking

  • Require Node.js 12.20 and support typed arrays cef4503

0.6.0...0.7.0

0.6.0

06 Aug 04:45
315fcfb
Compare
Choose a tag to compare

Breaking changes

  • Require Node.js 12 and move to ESM 416ab0b

0.5.0...0.6.0

0.5.0

16 Sep 07:04
b8446ff
Compare
Choose a tag to compare

Breaking

  • No longer accepts a string as the first argument.

Release 0.4.0

13 Feb 08:37
bff7299
Compare
Choose a tag to compare

BREAKING CHANGES

  • Node.js 10 or later is required.
  • The main function is now only exported with module.exports.

Changed

  • Update dependencies

Release 0.3.2

04 Jan 03:15
b659669
Compare
Choose a tag to compare

Changed

  • Update dependencies

Release 0.3.0

18 Nov 03:05
cd2689e
Compare
Choose a tag to compare

BREAKING CHANGES

  • Reverting back to default exports for ECMAScript and CommonJS
const { convertBody } = require("fetch-charset-detection") // 0.2.0
const convertBody = require("fetch-charset-detection") // 0.3.0

Release 0.2.0

17 Nov 03:19
ff089e1
Compare
Choose a tag to compare

BREAKING CHANGES

  • Reverting to named exports
const convertBody = require("fetch-charset-detection") // 0.1.0
const { convertBody } = require("fetch-charset-detection") // 0.2.0

Release 0.1.0

17 Nov 02:07
1b1d6f8
Compare
Choose a tag to compare

BREAKING CHANGES

  • Removed extractContentType, getTotalBytes and writeToStream.
const { convertBody } = require("fetch-charset-detection") // 0.0.2
const convertBody = require("fetch-charset-detection") // 0.1.0

Changed

  • Support strings as content for convertBody.