diff --git a/CHANGELOG.md b/CHANGELOG.md index 98a5e1787..02a9c2281 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [v3.15.11](https://github.com/bensheldon/good_job/tree/v3.15.11) (2023-06-06) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.15.10...v3.15.11) + +**Fixed bugs:** + +- Fix `discrete_executions` job re-enqueueing when `retry_job` is called directly [\#973](https://github.com/bensheldon/good_job/pull/973) ([bensheldon](https://github.com/bensheldon)) + +**Closed issues:** + +- Unclear how discrete executions should work with reenqueued jobs \(leads to broken job-iteration\) [\#972](https://github.com/bensheldon/good_job/issues/972) +- `build_for_enqueue` discards `scheduled_at` values for bulk-enqueued jobs [\#966](https://github.com/bensheldon/good_job/issues/966) + ## [v3.15.10](https://github.com/bensheldon/good_job/tree/v3.15.10) (2023-05-22) [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.15.9...v3.15.10) diff --git a/Gemfile.lock b/Gemfile.lock index d24850e33..a8e2f9ad1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (3.15.10) + good_job (3.15.11) activejob (>= 6.0.0) activerecord (>= 6.0.0) concurrent-ruby (>= 1.0.2) diff --git a/checksums/good_job-3.15.11.gem.sha256 b/checksums/good_job-3.15.11.gem.sha256 new file mode 100644 index 000000000..3d3e3b232 --- /dev/null +++ b/checksums/good_job-3.15.11.gem.sha256 @@ -0,0 +1 @@ +021288f6630754572491276b23d5a3ba89cc9a16b630eb528b9ce285ae8e1287 diff --git a/checksums/good_job-3.15.11.gem.sha512 b/checksums/good_job-3.15.11.gem.sha512 new file mode 100644 index 000000000..be7785a16 --- /dev/null +++ b/checksums/good_job-3.15.11.gem.sha512 @@ -0,0 +1 @@ +515f58825fbd62dd28db8d7d1c5c6311855c3a60359b5563cfd8c95da950cab677dcdc55a1f1bc5d28b61b38e80c4acc61a1e8614a5f0161927e8d972378da08 diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index 947280d1d..58607f6c7 100644 --- a/lib/good_job/version.rb +++ b/lib/good_job/version.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true module GoodJob # GoodJob gem version. - VERSION = '3.15.10' + VERSION = '3.15.11' # GoodJob version as Gem::Version object GEM_VERSION = Gem::Version.new(VERSION)