From 1c4fc07814de0ff02f1602d19ed6e517848c78b8 Mon Sep 17 00:00:00 2001 From: "Ben Sheldon [he/him]" Date: Sun, 21 May 2023 11:12:37 -0700 Subject: [PATCH] Release good_job v3.15.9 --- CHANGELOG.md | 23 ++++++++++++++++++++++- Gemfile.lock | 2 +- checksums/good_job-3.15.9.gem.sha256 | 1 + checksums/good_job-3.15.9.gem.sha512 | 1 + lib/good_job/version.rb | 2 +- 5 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 checksums/good_job-3.15.9.gem.sha256 create mode 100644 checksums/good_job-3.15.9.gem.sha512 diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ba1e7337..bfb5584f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,37 @@ # Changelog +## [v3.15.9](https://github.com/bensheldon/good_job/tree/v3.15.9) (2023-05-21) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.15.8...v3.15.9) + +**Fixed bugs:** + +- Fix wait and wait\_until ignored in bulk enqueue [\#960](https://github.com/bensheldon/good_job/pull/960) ([bensheldon](https://github.com/bensheldon)) + +**Closed issues:** + +- Does Bulk enqueue respect wait? [\#959](https://github.com/bensheldon/good_job/issues/959) +- BaseExecution::discrete\_support? hardcodes the DiscreteExecution table\_name [\#957](https://github.com/bensheldon/good_job/issues/957) + +**Merged pull requests:** + +- Fix flaky jruby test to widen time-based range [\#961](https://github.com/bensheldon/good_job/pull/961) ([bensheldon](https://github.com/bensheldon)) +- Update README.md [\#953](https://github.com/bensheldon/good_job/pull/953) ([namiwang](https://github.com/namiwang)) + ## [v3.15.8](https://github.com/bensheldon/good_job/tree/v3.15.8) (2023-05-19) [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.15.7...v3.15.8) +**Fixed bugs:** + +- Fix hard-coded and duplicated table\_name [\#958](https://github.com/bensheldon/good_job/pull/958) ([gap777](https://github.com/gap777)) + **Closed issues:** - `active_job.enqueue` Performance Issue [\#939](https://github.com/bensheldon/good_job/issues/939) **Merged pull requests:** -- Fix hard-coded and duplicated table\_name [\#958](https://github.com/bensheldon/good_job/pull/958) ([gap777](https://github.com/gap777)) - Bump rubocop from 1.46.0 to 1.50.2 [\#949](https://github.com/bensheldon/good_job/pull/949) ([dependabot[bot]](https://github.com/apps/dependabot)) - Bump rubocop-rails from 2.18.0 to 2.19.1 [\#947](https://github.com/bensheldon/good_job/pull/947) ([dependabot[bot]](https://github.com/apps/dependabot)) diff --git a/Gemfile.lock b/Gemfile.lock index 694d9fbc2..f78ec2cc7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (3.15.8) + good_job (3.15.9) activejob (>= 6.0.0) activerecord (>= 6.0.0) concurrent-ruby (>= 1.0.2) diff --git a/checksums/good_job-3.15.9.gem.sha256 b/checksums/good_job-3.15.9.gem.sha256 new file mode 100644 index 000000000..d22ae243b --- /dev/null +++ b/checksums/good_job-3.15.9.gem.sha256 @@ -0,0 +1 @@ +48ffe89a60ab17a56f1f94d180e9636947b46e851c0cd40ba88783c7ff9f28d6 diff --git a/checksums/good_job-3.15.9.gem.sha512 b/checksums/good_job-3.15.9.gem.sha512 new file mode 100644 index 000000000..2a417afee --- /dev/null +++ b/checksums/good_job-3.15.9.gem.sha512 @@ -0,0 +1 @@ +b597c55ff20947c9609bad18506e5fc338940dda2569ac926b5764ecef75ba168fa95d1a0f5d7b99ffd82c734b5145c3f207d5c8613d183eafcd85a3b7afd012 diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index b4030d458..fd815b7ad 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.8' + VERSION = '3.15.9' # GoodJob version as Gem::Version object GEM_VERSION = Gem::Version.new(VERSION)