Skip to content

Releases: wojtekmaj/async-array-utils

v2.0.0

20 Mar 22:32
4e8da94
Compare
Choose a tag to compare

❗️ = breaking change

What's new?

  • ❗️ Dropped CommonJS build, making the package ESM-only. Remember, you can still use require() with ESM in all current LTS Node.js versions!

v1.8.1

18 Oct 13:20
8b507b3
Compare
Choose a tag to compare

What's new?

v1.8.0

27 Jul 16:59
7a0d5ac
Compare
Choose a tag to compare

What's new?

  • Added support for native ESM modules (#71).

v1.7.0

21 Apr 12:43
f770039
Compare
Choose a tag to compare

What's new?

  • Added asyncFind, asyncFindIndex utils

v1.6.1

02 Feb 08:11
6f007f1
Compare
Choose a tag to compare

Bug fixes

  • Fixed types not picked up correctly by some tools (e.g. Next.js).

v1.6.0

30 Jan 14:21
41b9248
Compare
Choose a tag to compare

What's new?

  • Converted package to TypeScript (#29).

v1.5.0

05 May 19:16
eb9ed7b
Compare
Choose a tag to compare

What's new?

  • Improved rejection handling

Bug fixes

  • Prevent multiple attempts to resolve the same Promise
  • Fixed asyncForEach function name

v1.4.0

19 Nov 11:35
d604259
Compare
Choose a tag to compare

What's new?

  • Refactored asyncMapStrict, asyncReduce utils not to use async, resulting in size savings
  • Removed @babel/runtime dependency, resulting in substantial size savings

v1.3.0

19 Nov 11:33
8ab8d3e
Compare
Choose a tag to compare

What's new?

  • Refactored asyncEvery, asyncEveryStrict, asyncFilter, asyncFilterStrict, asyncForEach, asyncForEachStrict, asyncSome, asyncSomeStrict utils not to use async, resulting in size savings.

v1.2.0

19 Nov 09:46
e8b48cc
Compare
Choose a tag to compare

What's new?

  • Added asyncEveryStrict, asyncFilter, asyncFilterStrict utils
  • Improved examples in README

What's changed?

  • Refactored asyncSomeStrict util