This repository has been archived by the owner on Jun 15, 2022. It is now read-only.
Releases: veliovgroup/Meteor-CRON-jobs
Releases Β· veliovgroup/Meteor-CRON-jobs
v2.0.0
- Remove obsolete dependencies, now it depends form only 1 package -
ecmascript
- Move codebase to ES6 from CoffeeScript
- Move core-package to NPM
- ES6 import style only, no littering in global space name
v1.0.8
- Fix potential memory leak
- Second parameter of
setTimeout
,setInterval
andsetImmediate
now is optional - Use
Meteor.setInterval
instead ofMeteor.setTimeout
in lib codebase
v1.0.7
- Compatibility with
Meteor@1.4.2
- ES6 modules and import support
- Codebase updated with efficiency in mind
v1.0.6
- βKill dat zombie!β: new third parameter
zombieTime
in milliseconds, after that time task will be interpreted as zombie and killed (executed and refreshed). Useful to rescue task from "zombie mode" in case whenready()
wasn't called, exception during runtime was thrown, or caused by bad logic. - Overall improvements
v1.0.5
- Fix when delay wasnβt updated in already added task
- Add
resetOnInit
to make sure all old tasks is completed before set new one. Useful when you run only one instance of app, or multiple app instances on one machine, in case machine was reloaded during running task and task is unfinished - Efficiency enhancements
v1.0.4
- Fully refactored to meet requirements and docs (After few days of production testing)
- API stayed same
v1.0.3
- minor changes + better wording
v1.0.2
- minor fix
v1.0.1
- Pretty message and trace when multiple instances overrides same tasks
v1.0.0
- Initial (see docs)