summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Early <alexander.early@gmail.com>2019-05-19 17:48:51 -0700
committerAlexander Early <alexander.early@gmail.com>2019-05-19 17:50:54 -0700
commit1d458d980a8bfee8c941061dca364a33cf15fac0 (patch)
tree12d9f6887ec2232a6a1361fa646a6184a80e3585
parent667e71760e7f2dd558e868796bd6e6008a3bac16 (diff)
downloadasync-1d458d980a8bfee8c941061dca364a33cf15fac0.tar.gz
update changelog
-rw-r--r--CHANGELOG.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4ac798c..cdb618b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,6 +18,7 @@ const results = await async.mapLimit(urls, 5, async url => {
- `during` and `doDuring` have been removed, and instead `whilst`, `doWhilst`, `until` and `doUntil` now have asynchronous `test` functions. (#850, #1557)
- `limits` of less than 1 now cause an error to be thrown in queues and collection methods. (#1249, #1552)
- `memoize` no longer memoizes errors (#1465, #1466)
+- `applyEach`/`applyEachSeries` have a simpler interface, to make them more easily type-able. It always returns a function that takes in a single callback argument. If that callback is omitted, a promise is returned, making it awaitable.
## New Features
- Async generators are now supported in all the Collection methods. (#1560)