Skip to content

Vapor Queues 1.0.0

Compare
Choose a tag to compare
@m-barthelemy m-barthelemy released this 17 Apr 02:29
· 69 commits to master since this release
  • Pairs with Vapor Queues 1.0.0
  • Brings support for custom JobIdentifier implemented in Queues 1.0.0
  • Proper support for multiple queues: previously, a worker would pick any pending job even if it didn’t match its queue name
  • Breaking change: the database table storing the jobs has been renamed from jobs to _jobs, has two new columns, job_id and queue, and new indices. See “Upgrading” note below.
  • Fixed a bug with the list() method introduced in last release didn’t work when setting its queue: parameter.

Upgrading:

This package will support proper Fluent migrations once it gets out of “experimental” status. For now, to upgrade to 0.3 you should run DELETE FROM _fluent_migrations WHERE name='JobModelMigrate’ and DROP TABLE jobs. Sorry for the inconvenience.