All Versions
45
Latest Version
Avg Release Cycle
61 days
Latest Release
563 days ago

Changelog History
Page 4

  • v2.2.3 Changes

    August 19, 2017
    • โšก๏ธ Updated all examples to neatly include .catch(...) callbacks.
  • v2.2.2 Changes

    July 08, 2017
    • ๐Ÿ›  Fixed #25: timer of a timeout starting when the task is created instead of when the task is started. Thanks @eclipsesk for input.
  • v2.2.1 Changes

    May 07, 2017
    • ๐Ÿ›  Fixed #2 and #19: support for debugging child processes. Thanks @tptee.
  • v2.2.0 Changes

    November 26, 2016
    • Implemented #18: method pool.stats().
  • v2.1.0 Changes

    October 11, 2016
    • ๐Ÿ‘ท Implemented support for registering the workers methods asynchronously. This enables asynchronous initialization of workers, for example when using AMD modules. Thanks @natlibfi-arlehiko.
    • Implemented environment variables platform, isMainThread, and cpus. Thanks @natlibfi-arlehiko.
    • ๐Ÿ‘ท Implemented option minWorkers. Thanks @sergei202.
  • v2.0.0 Changes

    September 18, 2016
    • Replaced conversion of Error-objecting using serializerr to custom implementation to prevent issues with serializing/deserializing functions. This conversion implementation loses the prototype object which means that e.g. 'TypeError' will become just 'Error' in the main code. See #8. Thanks @natlibfi-arlehiko.
  • v1.3.1 Changes

    September 12, 2016
    • ๐Ÿ›  Fix for a bug in PhantomJS (see #7). Thanks @natlibfi-arlehiko.
  • v1.3.0 Changes

    August 21, 2016
    • ๐Ÿ‘€ Determine maxWorkers as the number of CPU's minus one in browsers too. See #6.
  • v1.2.1 Changes

    June 25, 2016
    • ๐Ÿ›  Fixed #5 error when loading via AMD or bundling using Webpack.
  • v1.2.0 Changes

    May 22, 2016
    • Implemented serializing errors with stacktrace. Thanks @mujx.