From 02ec990020541a6774083348e8306126a8a07237 Mon Sep 17 00:00:00 2001 From: "Ben Sheldon [he/him]" Date: Sat, 16 Sep 2023 10:54:13 -0700 Subject: [PATCH] Release good_job v3.18.3 --- CHANGELOG.md | 21 +++++++++++++++++++++ Gemfile.lock | 2 +- checksums/good_job-3.18.3.gem.sha256 | 1 + checksums/good_job-3.18.3.gem.sha512 | 1 + lib/good_job/version.rb | 2 +- 5 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 checksums/good_job-3.18.3.gem.sha256 create mode 100644 checksums/good_job-3.18.3.gem.sha512 diff --git a/CHANGELOG.md b/CHANGELOG.md index e485137b4..99c933a46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [v3.18.3](https://github.com/bensheldon/good_job/tree/v3.18.3) (2023-09-16) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.18.2...v3.18.3) + +**Fixed bugs:** + +- Allow Probe Server's `/connect` to handle a certain number of reconnects before statusing [\#1075](https://github.com/bensheldon/good_job/pull/1075) ([bensheldon](https://github.com/bensheldon)) + +**Closed issues:** + +- ActiveRecord::RecordNotUnique good\_jobs.id error in rspec test suite [\#1072](https://github.com/bensheldon/good_job/issues/1072) +- Probe failures on heavy usage of dashboard\(?\) [\#1068](https://github.com/bensheldon/good_job/issues/1068) + +**Merged pull requests:** + +- Bump actions/checkout from 3 to 4 [\#1070](https://github.com/bensheldon/good_job/pull/1070) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Add Skylight for demo site; create distinct development, lint, demo, production Gemfile groups; a little bit of Rubocop [\#1069](https://github.com/bensheldon/good_job/pull/1069) ([bensheldon](https://github.com/bensheldon)) +- Add JRuby 9.4 to testing matrix; nerf ActiveJob::TestQueueAdapter overrides [\#1067](https://github.com/bensheldon/good_job/pull/1067) ([bensheldon](https://github.com/bensheldon)) +- Reorganize dependencies to make booting JRuby easier [\#1066](https://github.com/bensheldon/good_job/pull/1066) ([bensheldon](https://github.com/bensheldon)) +- Slight refactoring to CronEntry [\#1063](https://github.com/bensheldon/good_job/pull/1063) ([bensheldon](https://github.com/bensheldon)) + ## [v3.18.2](https://github.com/bensheldon/good_job/tree/v3.18.2) (2023-09-02) [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.18.1...v3.18.2) diff --git a/Gemfile.lock b/Gemfile.lock index 075440355..1798abdf5 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - good_job (3.18.2) + good_job (3.18.3) activejob (>= 6.0.0) activerecord (>= 6.0.0) concurrent-ruby (>= 1.0.2) diff --git a/checksums/good_job-3.18.3.gem.sha256 b/checksums/good_job-3.18.3.gem.sha256 new file mode 100644 index 000000000..5a363c3e1 --- /dev/null +++ b/checksums/good_job-3.18.3.gem.sha256 @@ -0,0 +1 @@ +b9d31a68d9e7b1d1909aa985c2a449d3d444fd35d4024d1251dcb57cbfbdcedc diff --git a/checksums/good_job-3.18.3.gem.sha512 b/checksums/good_job-3.18.3.gem.sha512 new file mode 100644 index 000000000..f1a2b0a04 --- /dev/null +++ b/checksums/good_job-3.18.3.gem.sha512 @@ -0,0 +1 @@ +b468f5fded278138f7e32f84406477bc40ec98894dbdeaf3400efc65f36508d49ddbfb535a1e946d5e43de812ac36db734106c79b0ec30625a0c4ce1ee904385 diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index 8449d3ac3..f63608e5d 100644 --- a/lib/good_job/version.rb +++ b/lib/good_job/version.rb @@ -2,7 +2,7 @@ module GoodJob # GoodJob gem version. - VERSION = '3.18.2' + VERSION = '3.18.3' # GoodJob version as Gem::Version object GEM_VERSION = Gem::Version.new(VERSION)