Skip to content

Releases: GettEngineering/work

v0.8.0

01 Dec 09:51
de7d308
Compare
Choose a tag to compare

What's Changed

  • Fix unique scheduled jobs - the jobs weren't deleted from inprocess queue.

Full Changelog: v0.7.0...v0.8.0

Update deps

18 Jan 11:03
e68231b
Compare
Choose a tag to compare
  • Bumped go version to 1.18
  • Added dependabot and gh-actions ci
  • Fixed tests
  • Updated dependencies and redigo changed from abandoned v2.0.0 to the actual v1.8.9

v0.6.1: fixes potential data race with access to job.Args (#4)

26 May 15:34
99ce2d6
Compare
Choose a tag to compare

Fix potential data race with access to job.Args. It could happen when, for example, the field Args was changed in middlewares.

v0.6.0: Fix/gett 94497 unique jobs (#3)

18 May 12:47
3173038
Compare
Choose a tag to compare

Unique jobs used to be deleted from the unique queue right before processing the jobs. Now they're deleted after they've successfully finished or been put into dead queue.

Also fixed bug in handling unique by key jobs that got into retry queue - fails counter wasn't preserved.