async-promises
Version:
Async control flow patterns using promises based on https://github.com/caolan/async
68 lines (31 loc) • 2.48 kB
Markdown
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [0.2.3](https://github.com/assisrafael/async-promises/compare/v0.2.2...v0.2.3) (2020-07-16)
### [0.2.2](https://github.com/assisrafael/async-promises/compare/v0.2.1...v0.2.2) (2019-05-10)
<a name="0.2.1"></a>
## [0.2.1](https://github.com/assisrafael/async-promises/compare/v0.2.0...v0.2.1) (2017-09-29)
### Bug Fixes
* **eachSeries:** handle errors thrown by iterator ([f7fc0cb](https://github.com/assisrafael/async-promises/commit/f7fc0cb))
* **eachSeries:** handle null elements in the array ([583ed7d](https://github.com/assisrafael/async-promises/commit/583ed7d))
<a name="0.2.0"></a>
# [0.2.0](https://github.com/assisrafael/async-promises/compare/v0.1.2...v0.2.0) (2016-06-24)
### Bug Fixes
* **series:** change error message ([4d06b2d](https://github.com/assisrafael/async-promises/commit/4d06b2d))
### Features
* **times:** implement "times" and "timesSeries" control flow functions ([94e354f](https://github.com/assisrafael/async-promises/commit/94e354f))
<a name="0.1.2"></a>
## [0.1.2](https://github.com/assisrafael/async-promises/compare/v0.1.1...v0.1.2) (2015-12-09)
### Bug Fixes
* **each-series:** preserve the original array immutable ([c36b307](https://github.com/assisrafael/async-promises/commit/c36b307))
<a name="0.1.1"></a>
## [0.1.1](https://github.com/assisrafael/async-promises/compare/v0.1.0...v0.1.1) (2015-12-02)
### Bug Fixes
* add iojs 2.5 compatibility ([92238eb](https://github.com/assisrafael/async-promises/commit/92238eb))
<a name="0.1.0"></a>
# [0.1.0](https://github.com/assisrafael/async-promises/compare/3dda59b...v0.1.0) (2015-11-20)
### Features
* **each:** implements "each of collection" control flow ([3dda59b](https://github.com/assisrafael/async-promises/commit/3dda59b))
* **eachSeries:** implements "each of collection" control flow with sequential processing of items ([1fc7f68](https://github.com/assisrafael/async-promises/commit/1fc7f68))
* **parallel:** implement parallel tasks ([65ccaaa](https://github.com/assisrafael/async-promises/commit/65ccaaa))
* **series:** implement serial tasks ([df824fa](https://github.com/assisrafael/async-promises/commit/df824fa))
* **waterfall:** implement waterfall tasks composition ([d77b624](https://github.com/assisrafael/async-promises/commit/d77b624))