Skip to content

v2.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 12 Oct 13:29
· 135 commits to main since this release

2.0.0 (2022-10-12)

⚠ BREAKING CHANGES

  • tabletorecords: tableToRecords now returns an Iterable, which is generated lazily, instead of
    returning an Array. If you need an Array, convert the Iterable using Array.from().
  • record: This module no longer exports the types Record or ReadonlyRecord. Use the built-in
    types Record<string, string> or Readonly<Record<string, string>> instead.
  • node: node versions 12, 17 are no longer supported.

Features

  • node: drop support for node 12, 17 (716a579)
  • record: remove Record type in favour of built-in TypeScript Record type (9d29c14)
  • tabletorecords: return an Iterable instead of an Array (8a20d5a)