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 forpushJob
andIronium.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 whenDEBUG=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.