All Versions
92
Latest Version
Avg Release Cycle
40 days
Latest Release
-

Changelog History
Page 5

  • v1.2.4 Changes

    ⚡️ Updated to Babel.js 4.7.1.

  • v1.2.3 Changes

    ⚡️ Updated to Babel.js 4.4.5.

  • v1.2.2 Changes

    🛠 FIXED trying to catch "write after" end errors.

  • v1.2.1 Changes

    ⬆️ Upgraded to 6to5 3.0.

  • v1.2.0 Changes

    ➕ ADDED support for queuing with streams.

    👷 For example, to queue all the jobs from the source stream, and log the queued 👷 job IDs:

    source .pipe( queue.stream() ) .pipe( process.stdout );

    ➕ ADDED queueJob as alias for pushJob and Ironium.queueJob shortcut.

    ➕ ADDED you can use queueJob, delayJob, etc without an object reference.

    🔄 CHANGED switched from Traceur to 6to5, which works much better for 3rd party libraries.

  • v1.1.0 Changes

    ➕ ADDED you can now use pushJob with a string or buffer; objects are always serialized to JSON.

    🔄 CHANGED push deprecated, use pushJob instead

    🔄 CHANGED delay deprecated, use delayJob

    🔄 CHANGED each deprecated, used eachJob instead

    🔄 CHANGED schedule deprecated, use scheduleJob instead

    🔄 CHANGED once deprecated, use runOnce instead

    🔄 CHANGED reset deprecated, use purgeQueues instead

    🔄 CHANGED width deprecated, use queueWidth instead

  • v1.0.3 Changes

    🛠 FIXED no longer user timeout to detect connection failure, this allows better 👷 concurrency for job push on slow connections.

  • v1.0.1 Changes

    ✂ REMOVED "possible EventEmitter memory leak detected" message when we have hundred of writers pushing to the same queue.

  • v1.0.0 Changes

    ➕ ADDED emit error events and output error message when DEBUG=ironium

  • v0.13.0 Changes

    ➕ ADDED when executing job, current job ID available from process.domain.jobID

    Since the domain is accessible in callbacks and event handlers, you can use this 👷 to trace the execution of the job, specifically for logging messages.