Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Releases: davbeck/graphile-scheduler

0.8.0

18 Dec 15:45
Compare
Choose a tag to compare
  • Upgrade to worker 0.8, pg 8.x and added support for Node 14. (Thanks mbyrne00)
  • Fix upsertSchedule to use user custom schema. (Thanks marcschregardus)
  • Fix timezone handling. Previously the timezone on schedules was ignored. (Thanks mbyrne00)

0.5.0

25 Apr 18:49
Compare
Choose a tag to compare

Worker and scheduler use different schemas so you will need to specify schemas for them separately:

run({
  // maps to the schema option for graphile-worker
  workerSchema: 'my_worker',
  schedulerSchema: 'my_scheduler',
});