Skip to content
Pranay Dubey edited this page Mar 14, 2016 · 3 revisions

0.7.0

  1. Added reply.finalize(data) to break series chain in between. Available ONLY on series.execute

  2. Update test cases for more structure and organisation.

0.6.0

  1. Added series.parallel for functions that can be invoked in parallel. However each function should either be resolved successfully or any of them should be rejected for the response to be sent back.

0.5.0

  1. Added support for boom error with PR for issue #5

  2. Added series.background for functions that can be invoked in parallel and in background, and also sends the response back immediately without waiting for the functions to be finished.

0.4.0

  1. Added back series.promise as a new method of passing values in between. This is useful when we don't necessarily need to use callbacks, instead simply return promise from each function.

  2. Calling reply.next(err) since 0.4.0 needs either an object or just an error message(string). See example for details

0.3.0

  1. Removed data as a third argument from the functions. Use reply.data instead for passing data between functions.

0.2.1

  1. Removed Series.promise and its related components
Clone this wiki locally