Releases: wojtekmaj/async-array-utils
Releases · wojtekmaj/async-array-utils
v2.0.0
❗️ = 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.0
What's new?
- Added support for native ESM modules (#71).
v1.7.0
What's new?
- Added
asyncFind
, asyncFindIndex
utils
v1.6.1
Bug fixes
- Fixed types not picked up correctly by some tools (e.g. Next.js).
v1.6.0
What's new?
- Converted package to TypeScript (#29).
v1.5.0
What's new?
- Improved rejection handling
Bug fixes
- Prevent multiple attempts to resolve the same Promise
- Fixed asyncForEach function name
v1.4.0
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
What's new?
- Refactored
asyncEvery
, asyncEveryStrict
, asyncFilter
, asyncFilterStrict
, asyncForEach
, asyncForEachStrict
, asyncSome
, asyncSomeStrict
utils not to use async, resulting in size savings.
v1.2.0
What's new?
- Added
asyncEveryStrict
, asyncFilter
, asyncFilterStrict
utils
- Improved examples in README
What's changed?
- Refactored
asyncSomeStrict
util