Skip to content

Latest commit

 

History

History
149 lines (83 loc) · 5.33 KB

CHANGELOG.md

File metadata and controls

149 lines (83 loc) · 5.33 KB

Release Notes

7.0.0 (2024-02-27)

⚠ BREAKING CHANGES

  • Drop support for CommonJS (#487)
  • Drop support for Node 16 (#485)

Features

6.0.0 (2023-08-24)

⚠ BREAKING CHANGES

  • Drop support for Node 14 (#380)

Features

5.0.2 (2023-02-28)

Bug Fixes

  • Do not package redundant .js and .d.ts files (cd5afd0)

5.0.1 (2023-02-28)

Bug Fixes

  • do not package .tsbuildInfo (4ae236f)

5.0.0 (2023-02-28)

⚠ BREAKING CHANGES

  • Support ESM (#283)

Features

4.0.3 (2022-12-08)

Bug Fixes

4.0.2 (2022-08-30)

Bug Fixes

4.0.1 (2022-08-30)

Bug Fixes

  • clean up the async reducers (#21) (0bf7525)
  • correctly handle undefined initial value. (0bf7525)
  • Sequence is type compatible with Sequence (#25) (2834953)
  • Update Publication Process (483732c)
  • Update Typescript (#228) (ae21653)

Miscellaneous Chores

[4.0.0]

  • Drop support for Node 10 and 12.

[3.1.0]

[3.0.0]

  • Supports Node >= 10
  • Add the ability to pipe operators

[2.2.0]

  • Move operator functions out of GenSequence
  • Update to TypeScript

[2.1.3]

  • Update dev packages to address issues with code coverage generation in Node 10

2.1.1

  • Update dev packages
  • add forEach function

2.1.0

  • fix a function signature issue surfaced by typescript 2.4.2

2.0.1

  • minor update to README.md.
  • added test showing how it is not possible to reuse some iterators.

2.0.0

  • sequences are now reusable as long as the original iterator is reusable.
  • it is not possible to initialize a sequence with a function that returns an iterator This is very powerful.
  • .count() added.
  • special thanks to @sea1jxr for all of the above.

1.3.0

  • Refactor the methods to give them a logical grouping - thanks to @sea1jxr

1.2.0

  • Added min and max - thanks to @sea1jxr

1.1.0

  • Added all and any - thanks to @sea1jxr

1.0.0

  • Added full test coverage
  • Fix an issue with scan and working with arrays.
  • Fix the .next() function to correctly work with arrays.
  • Sequence supports both Iterable and IterableIterator interfaces

0.1.0 - 0.2.4

  • These were the initial set of releases