Releases: wojtekmaj/async-array-utils
Releases · wojtekmaj/async-array-utils
v2.0.0
20 Mar 22:32
7ead267
This commit was signed with the committer’s verified signature .
❗️ = 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
This commit was signed with the committer’s verified signature .
v1.8.0
27 Jul 16:59
7a0d5ac
This commit was signed with the committer’s verified signature .
What's new?
Added support for native ESM modules (#71 ).
v1.7.0
21 Apr 12:43
f770039
This commit was signed with the committer’s verified signature .
What's new?
Added asyncFind
, asyncFindIndex
utils
v1.6.1
02 Feb 08:11
6f007f1
This commit was signed with the committer’s verified signature .
Bug fixes
Fixed types not picked up correctly by some tools (e.g. Next.js).
v1.6.0
30 Jan 14:21
41b9248
This commit was signed with the committer’s verified signature .
What's new?
Converted package to TypeScript (#29 ).
v1.5.0
05 May 19:16
eb9ed7b
This commit was signed with the committer’s verified signature .
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
This commit was signed with the committer’s verified signature .
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
This commit was signed with the committer’s verified signature .
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
This commit was signed with the committer’s verified signature .
What's new?
Added asyncEveryStrict
, asyncFilter
, asyncFilterStrict
utils
Improved examples in README
What's changed?
Refactored asyncSomeStrict
util