From 847f4c74193b99404e62d736f49e340fafe69c46 Mon Sep 17 00:00:00 2001 From: "Ben Sheldon [he/him]" Date: Sat, 22 Oct 2022 13:37:36 -0700 Subject: [PATCH] Release good_job v3.6.0 --- CHANGELOG.md | 14 ++++++++++++++ Gemfile.lock | 2 +- checksums/good_job-3.6.0.gem.sha256 | 1 + checksums/good_job-3.6.0.gem.sha512 | 1 + lib/good_job/version.rb | 2 +- 5 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 checksums/good_job-3.6.0.gem.sha256 create mode 100644 checksums/good_job-3.6.0.gem.sha512 diff --git a/CHANGELOG.md b/CHANGELOG.md index 3046a5eab..759f0b8c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [v3.6.0](https://github.com/bensheldon/good_job/tree/v3.6.0) (2022-10-22) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.5.1...v3.6.0) + +**Fixed bugs:** + +- 3.4.8 release breaks job retrying [\#728](https://github.com/bensheldon/good_job/issues/728) + +**Merged pull requests:** + +- Redo: When not preserving job records, ensure all prior executions are deleted after successful retry [\#730](https://github.com/bensheldon/good_job/pull/730) ([bensheldon](https://github.com/bensheldon)) +- Add configurable limit \(`queue_select_limit`\) when querying candidate jobs [\#727](https://github.com/bensheldon/good_job/pull/727) ([mitchellhenke](https://github.com/mitchellhenke)) +- Add index to `good_jobs` to improve querying candidate jobs [\#726](https://github.com/bensheldon/good_job/pull/726) ([mitchellhenke](https://github.com/mitchellhenke)) + ## [v3.5.1](https://github.com/bensheldon/good_job/tree/v3.5.1) (2022-10-20) [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.5.0...v3.5.1) diff --git a/Gemfile.lock b/Gemfile.lock index afd4747b0..0b5bc1547 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (3.5.1) + good_job (3.6.0) activejob (>= 6.0.0) activerecord (>= 6.0.0) concurrent-ruby (>= 1.0.2) diff --git a/checksums/good_job-3.6.0.gem.sha256 b/checksums/good_job-3.6.0.gem.sha256 new file mode 100644 index 000000000..7391ea927 --- /dev/null +++ b/checksums/good_job-3.6.0.gem.sha256 @@ -0,0 +1 @@ +e59a8e12c037592d30883573754d8e782c0b319bde227325ee2458da53ee106f diff --git a/checksums/good_job-3.6.0.gem.sha512 b/checksums/good_job-3.6.0.gem.sha512 new file mode 100644 index 000000000..b996891d7 --- /dev/null +++ b/checksums/good_job-3.6.0.gem.sha512 @@ -0,0 +1 @@ +86a26c9a97afb4ce1c74ebbc1127d4cdc503efdb59ae3774ad3c32627bfaf333ab509dd24ad39739b7f02573e21bae511eec056b022acb3b143396329e6a0252 diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index b03b88075..ed3dec02c 100644 --- a/lib/good_job/version.rb +++ b/lib/good_job/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module GoodJob # GoodJob gem version. - VERSION = '3.5.1' + VERSION = '3.6.0' end