Created by: renovate[bot]
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| async (source) | devDependencies | major | ^2.0.0 -> ^3.0.0 |
Release Notes
caolan/async
v3.1.0
- Added
q.pushAsyncandq.unshiftAsync, analagous toq.pushandq.unshift, except they always do not accept a callback, and reject if processing the task errors. (#1659) - Promises returned from
q.pushandq.unshiftwhen a callback is not passed now resolve even if an error ocurred. (#1659) - Fixed a parsing bug in
autoInjectwith complicated function bodies (#1663) - Added ES6+ configuration for Browserify bundlers (#1653)
- Various doc fixes (#1664, #1658, #1665, #1652)
v3.0.1
Bug fixes
- Fixed a regression where arrays passed to
queueandcargowould be completely flattened. (#1645) - Clarified Async's browser support (#1643)
v3.0.0
The async/await release!
There are a lot of new features and subtle breaking changes in this major version, but the biggest feature is that most Async methods return a Promise if you omit the callback, meaning you can await them from within an async function.
const results = await async.mapLimit(urls, 5, async url => {
const resp = await fetch(url)
return resp.body
})
Breaking Changes
- Most Async methods return a Promise when the final callback is omitted, making them
await-able! (#1572) - We are now making heavy use of ES2015 features, this means we have dropped out-of-the-box support for Node 4 and earlier, and many old versions of browsers. (#1541, #1553)
- In
queue,priorityQueue,cargoandcargoQueue, the "event"-style methods, likeq.drainandq.saturatedare now methods that register a callback, rather than properties you assign a callback to. They are now of the formq.drain(callback). If you do not pass a callback a Promise will be returned for the next occurrence of the event, making themawait-able, e.g.await q.drain(). (#1586, #1641) - Calling
callback(false)will cancel an async method, preventing further iteration and callback calls. This is useful for preventing memory leaks when you break out of an async flow by calling an outer callback. (#1064, #1542) -
duringanddoDuringhave been removed, and insteadwhilst,doWhilst,untilanddoUntilnow have asynchronoustestfunctions. (#850, #1557) -
limitsof less than 1 now cause an error to be thrown in queues and collection methods. (#1249, #1552) -
memoizeno longer memoizes errors (#1465, #1466) -
applyEach/applyEachSerieshave 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. (#1228, #1640)
New Features
- Async generators are now supported in all the Collection methods. (#1560)
- Added
cargoQueue, a queue with bothconcurrencyandpayloadsize parameters. (#1567) - Queue objects returned from
queuenow have aSymbol.iteratormethod, meaning they can be iterated over to inspect the current list of items in the queue. (#1459, #1556) - A ESM-flavored
async.mjsis included in theasyncpackage. This is described in thepackage.json"module"field, meaning it should be automatically used by Webpack and other compatible bundlers.
Bug fixes
Other
- Removed Lodash as a dependency (#1283, #1528)
- Miscellaneous docs fixes (#1393, #1501, #1540, #1543, #1558, #1563, #1564, #1579, #1581)
- Miscellaneous test fixes (#1538)
Renovate configuration
rebase!".
-
If you want to rebase/retry this PR, check this box
This PR has been generated by Renovate Bot. View repository job log here.