All Versions
34
Latest Version
Avg Release Cycle
148 days
Latest Release
-
Changelog History
Page 4
Changelog History
Page 4
-
v1.2.0 Changes
-
v1.1.1 Changes
๐ Bug Fix:
- ๐ Small regression with synchronous iterator behavior in
eachSeries
with a 1-element array. Before 1.1.0,eachSeries
's callback was called on the same tick, which this patch restores. In 2.0.0, it will be called on the next tick. (#782)
- ๐ Small regression with synchronous iterator behavior in
-
v1.1.0 Changes
๐ New Features:
- ๐
cargo
now supports all of the same methods and event callbacks asqueue
. - โ Added
ensureAsync
- A wrapper that ensures an async function calls its callback on a later tick. (#769) - โก๏ธ Optimized
map
,eachOf
, andwaterfall
families of functions - Passing a
null
orundefined
array tomap
,each
,parallel
and families will be treated as an empty array (#667). - The callback is now optional for the composed results of
compose
andseq
. (#618) - โฌ๏ธ Reduced file size by 4kb, (minified version by 1kb)
- โ Added code coverage through
nyc
andcoveralls
(#768)
๐ Bug Fixes:
- ๐
forever
will no longer stack overflow with a synchronous iterator (#622) eachLimit
and other limit functions will stop iterating once an error occurs (#754)- Always pass
null
in callbacks when there is no error (#439) - Ensure proper conditions when calling
drain()
after pushing an empty data set to a queue (#668) each
and family will properly handle an empty array (#578)eachSeries
and family will finish if the underlying array is modified during execution (#557)queue
will throw if a non-function is passed toq.push()
(#593)- ๐ Doc fixes (#629, #766)
- ๐
-
v1.0.0 Changes
No known breaking changes, we are simply complying with semver from here on out.
๐ Changes:
- Start using a changelog!
- โ Add
forEachOf
for iterating over Objects (or to iterate Arrays with indexes available) (#168 #704 #321) - Detect deadlocks in
auto
(#663) - ๐ Better support for require.js (#527)
- Throw if queue created with concurrency
0
(#714) - ๐ Fix unneeded iteration in
queue.resume()
(#758) - ๐คก Guard against timer mocking overriding
setImmediate
(#609 #611) - ๐ Miscellaneous doc fixes (#542 #596 #615 #628 #631 #690 #729)
- ๐ Use single noop function internally (#546)
- Optimize internal
_each
,_map
and_keys
functions.