All Versions
81
Latest Version
Avg Release Cycle
69 days
Latest Release
1451 days ago

Changelog History
Page 2

  • v1.0.1 Changes

    October 10, 2017
    • Update dependencies cron and debug (#505)
  • v1.0.0 Changes

    August 12, 2017
    • Gracefully recover from losing connection to MongoDB (#472)
    • Code cleanup (#492)

    ๐Ÿ’ฅ BREAKING

    ๐Ÿ“œ Previously Agenda would treat months as 0-11 where as normally, cron months are parsed as 1-12.

    * * * * * *
    | | | | | |
    | | | | | +-- Year              (range: 1900-3000)
    | | | | +---- Day of the Week   (range: 1-7, 1 standing for Monday)
    | | | +------ Month of the Year (range: 0-11) NOTE: Difference here
    | | +-------- Day of the Month  (range: 1-31)
    | +---------- Hour              (range: 0-23)
    +------------ Minute            (range: 0-59)
    

    ๐Ÿ’… Starting in version 1.0.0, cron will be parsed in the standard UNIX style:

    * * * * * *
    | | | | | |
    | | | | | +-- Year              (range: 1900-3000)
    | | | | +---- Day of the Week   (range: 1-7, 1 standing for Monday)
    | | | +------ Month of the Year (range: 1-12) NOTE: Difference here
    | | +-------- Day of the Month  (range: 1-31)
    | +---------- Hour              (range: 0-23)
    +------------ Minute            (range: 0-59)
    
  • v0.10.2 Changes

    August 10, 2017
  • v0.10.1 Changes

    August 10, 2017
    • Unpublished and re-published as v0.10.2
  • v0.10.0 Changes

    August 08, 2017
    • Replace the deprecated findAndModify method from native MongoDB driver to findOneAndUpdate (#448)
    • Going forward, we won't ensure Node.js v0.10 and v0.11 compatibility anymore (#449)
    • Code cleanup (#491, #489, #488, #487)
  • v0.9.1 Changes

    March 22, 2017

    ๐Ÿš€ Republish release for NPM. Includes fixes from 0.9.0 release:

    • add support for mongoose.connection for agenda.mongo(), fixes #156
    • Fix for race condition in the afterEach clean up code (#355)
    • Fixes + protects against concurrency not being honored (#379)
  • v0.9.0 Changes

    December 28, 2016
    • add support for mongoose.connection for agenda.mongo(), fixes #156
    • Fix for race condition in the afterEach clean up code (#355)
    • Fixes + protects against concurrency not being honored (#379)
    • Bump mongodb dep version to support ssl conns (#368)
    • Increase Mongo compatability to 2.4
  • v0.8.1 Changes

    May 08, 2016
    • Add Node v6 to CI
    • 1. Update dev dependencies for out of date. 2. Small fix to job.js for invalid repeatAt
    • Update .npmignore
    • Fix doc: cb not marked as optional (closes #279)
    • Including nextRunAt check in query for on the fly lock.
    • Picking up any job with an expired lock (not just recurring or queued).
    • Fixed failing test
    • throw on processJobResult error
    • Requeuing concurrency blocked jobs wrt priority.
    • Processing the next job that is not blocked by concurrency.
    • Fix test which fails only sometimes
    • Add agendash as alternative ui
    • Merge pull request #288 from diesal11/master
  • v0.8.0 Changes

    February 21, 2016
    • Implementing lock limit
    • Use callback to handle errors if we can.
  • v0.7.9 Changes

    February 05, 2016
    • fix: ReferenceError: MongoError is not defined