Skip to content

Releases: node-fetch/fetch-charset-detection

1.0.1

Choose a tag to compare

@Richienb Richienb released this 16 Oct 06:48
52c7b5d
  • Fix HTML4 charset detection 52c7b5d

1.0.0...1.0.1

1.0.0

Choose a tag to compare

@Richienb Richienb released this 04 Sep 04:12
50634a7

Bump version

0.7.0

Choose a tag to compare

@Richienb Richienb released this 10 Aug 07:13
cef4503

Breaking

  • Require Node.js 12.20 and support typed arrays cef4503

0.6.0...0.7.0

0.6.0

Choose a tag to compare

@Richienb Richienb released this 06 Aug 04:45
315fcfb

Breaking changes

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

0.5.0...0.6.0

0.5.0

Choose a tag to compare

@Richienb Richienb released this 16 Sep 07:04
b8446ff

Breaking

  • No longer accepts a string as the first argument.

Release 0.4.0

Choose a tag to compare

@Richienb Richienb released this 13 Feb 08:37
bff7299

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

Choose a tag to compare

@Richienb Richienb released this 04 Jan 03:15
b659669

Changed

  • Update dependencies

Release 0.3.0

Choose a tag to compare

@Richienb Richienb released this 18 Nov 03:05
cd2689e

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

Choose a tag to compare

@Richienb Richienb released this 17 Nov 03:19
ff089e1

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

Choose a tag to compare

@Richienb Richienb released this 17 Nov 02:07
1b1d6f8

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.