From d06ed8eb3c829e9c76d0ece5cf51e0716f591b20 Mon Sep 17 00:00:00 2001 From: "Ben Sheldon [he/him]" Date: Sun, 10 Dec 2023 09:56:05 -0800 Subject: [PATCH] Release good_job v3.21.3 --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ Gemfile.lock | 2 +- checksums/good_job-3.21.3.gem.sha256 | 1 + checksums/good_job-3.21.3.gem.sha512 | 1 + lib/good_job/version.rb | 2 +- 5 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 checksums/good_job-3.21.3.gem.sha256 create mode 100644 checksums/good_job-3.21.3.gem.sha512 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1066dfb4d..e2e36974c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## [v3.21.3](https://github.com/bensheldon/good_job/tree/v3.21.3) (2023-12-10) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.21.2...v3.21.3) + +**Implemented enhancements:** + +- Add `--idle-timeout` CLI option to create temporary processes that exit when inactive [\#1159](https://github.com/bensheldon/good_job/pull/1159) ([bensheldon](https://github.com/bensheldon)) + +**Fixed bugs:** + +- Add correct paths to $LOAD\_PATH [\#1169](https://github.com/bensheldon/good_job/pull/1169) ([jklina](https://github.com/jklina)) +- Recreate cron indexes to be conditional [\#1163](https://github.com/bensheldon/good_job/pull/1163) ([defkode](https://github.com/defkode)) + +**Closed issues:** + +- Use partial indices for cron\_key? [\#1161](https://github.com/bensheldon/good_job/issues/1161) +- Mass Update Error [\#1157](https://github.com/bensheldon/good_job/issues/1157) +- v3 roadmap plan [\#705](https://github.com/bensheldon/good_job/issues/705) +- Allow customisation of the dashboard controller parent class [\#687](https://github.com/bensheldon/good_job/issues/687) + +**Merged pull requests:** + +- \[minor\] Use symbol form of index name [\#1171](https://github.com/bensheldon/good_job/pull/1171) ([andyatkinson](https://github.com/andyatkinson)) +- Fix development schema.rb to include conditional index name change [\#1168](https://github.com/bensheldon/good_job/pull/1168) ([bensheldon](https://github.com/bensheldon)) +- Create new conditional Cron indexes before dropping old indexes [\#1165](https://github.com/bensheldon/good_job/pull/1165) ([bensheldon](https://github.com/bensheldon)) +- Fix test that references Rails logger for Rails 7.2a change [\#1160](https://github.com/bensheldon/good_job/pull/1160) ([bensheldon](https://github.com/bensheldon)) + ## [v3.21.2](https://github.com/bensheldon/good_job/tree/v3.21.2) (2023-11-24) [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.21.1...v3.21.2) diff --git a/Gemfile.lock b/Gemfile.lock index 3cdb45960..ed7421289 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - good_job (3.21.2) + good_job (3.21.3) activejob (>= 6.0.0) activerecord (>= 6.0.0) concurrent-ruby (>= 1.0.2) diff --git a/checksums/good_job-3.21.3.gem.sha256 b/checksums/good_job-3.21.3.gem.sha256 new file mode 100644 index 000000000..b4454161b --- /dev/null +++ b/checksums/good_job-3.21.3.gem.sha256 @@ -0,0 +1 @@ +43931fe4df964f3de83cba67b595266b180be43714d2bec0efe8bafd498f5d51 diff --git a/checksums/good_job-3.21.3.gem.sha512 b/checksums/good_job-3.21.3.gem.sha512 new file mode 100644 index 000000000..567d006e4 --- /dev/null +++ b/checksums/good_job-3.21.3.gem.sha512 @@ -0,0 +1 @@ +6f03f7ac1a339093c19817be8ca6c194d046aa24ce3870064b4c1816ba9c6790ef6cc9a44917e0745bd47c949f8a933564d7f8704cc090613dcc947bf7e24142 diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index f7b364277..a60ab0f16 100644 --- a/lib/good_job/version.rb +++ b/lib/good_job/version.rb @@ -2,7 +2,7 @@ module GoodJob # GoodJob gem version. - VERSION = '3.21.2' + VERSION = '3.21.3' # GoodJob version as Gem::Version object GEM_VERSION = Gem::Version.new(VERSION)