summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Early <alexander.early@gmail.com>2016-04-07 14:08:02 -0700
committerAlexander Early <alexander.early@gmail.com>2016-04-07 14:08:02 -0700
commit425e7c379f64d68564b73a5d0f8d42310e29542c (patch)
tree6335d9f3bc9ff961b039de695aa3c6027c64c896
parentb00abf296e13ee33b5a987e9b8484881aefa6d0f (diff)
downloadasync-425e7c379f64d68564b73a5d0f8d42310e29542c.tar.gz
update changelog
-rw-r--r--CHANGELOG.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1ac1ec9..e8d23bb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -29,10 +29,11 @@ Another theme is performance. We have eliminated internal deferrals in all cases
- Added `reflect` and `reflectAll`, analagous to [`Promise.reflect()`](http://bluebirdjs.com/docs/api/reflect.html), a wrapper for async tasks that always succeeds, by gathering results and errors into an object. (#942, #1012, #1095)
- `constant` supports dynamic arguments -- it will now always use its last argument as the callback. (#1016, #1052)
- `setImmediate` and `nextTick` now support arguments to partially apply to the deferred function, like the node-native versions do. (#940, #1053)
-- Added `autoInject`, a relative of `auto` that automatically spreads a task's dependencies as arguments to the task function. (#608, #1055)
+- Added `autoInject`, a relative of `auto` that automatically spreads a task's dependencies as arguments to the task function. (#608, #1055, #1099, #1100)
- You can now limit the concurrency of `auto` tasks. (#635, #637)
- Added `retryable`, a relative of `retry` that wraps an async function, making it retry when called. (#1058)
- Added `q.unsaturated` -- callback called when a `queue`'s number of running workers falls below a threshold. (#868, #1030, #1033, #1034)
+- `applyEach` and `applyEachSeries` now pass results to the final callback. (#1088)
## Breaking changes