From d6565a43ebe4a51743cac9ce3d617c3095e1b048 Mon Sep 17 00:00:00 2001 From: "Ben Sheldon [he/him]" Date: Mon, 3 Jul 2023 09:15:49 -0700 Subject: [PATCH] Release good_job v3.15.14 --- CHANGELOG.md | 28 +++++++++++++++++++++++---- Gemfile.lock | 2 +- checksums/good_job-3.15.14.gem.sha256 | 1 + checksums/good_job-3.15.14.gem.sha512 | 1 + lib/good_job/version.rb | 2 +- 5 files changed, 28 insertions(+), 6 deletions(-) create mode 100644 checksums/good_job-3.15.14.gem.sha256 create mode 100644 checksums/good_job-3.15.14.gem.sha512 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c37527e9..bff6a6be5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## [v3.15.14](https://github.com/bensheldon/good_job/tree/v3.15.14) (2023-07-03) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.15.13...v3.15.14) + +**Fixed bugs:** + +- Dashboard error when trying to display 0 running/queued/retried jobs due to missing 'zero' translation [\#990](https://github.com/bensheldon/good_job/issues/990) + +**Closed issues:** + +- Persisting ActiveSupport::CurrentAttributes [\#981](https://github.com/bensheldon/good_job/issues/981) +- uninitialized constant DiscreteExecution [\#962](https://github.com/bensheldon/good_job/issues/962) +- Hard kill resilience with execution counts [\#922](https://github.com/bensheldon/good_job/issues/922) + +**Merged pull requests:** + +- Bump rubocop from 1.53.0 to 1.54.0 [\#994](https://github.com/bensheldon/good_job/pull/994) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Bump rails from 7.0.5 to 7.0.6 [\#993](https://github.com/bensheldon/good_job/pull/993) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Fix CI: Lock traces version for Ruby 2.6 compatible version [\#987](https://github.com/bensheldon/good_job/pull/987) ([bensheldon](https://github.com/bensheldon)) +- Turkish Language support [\#986](https://github.com/bensheldon/good_job/pull/986) ([SemihCag](https://github.com/SemihCag)) +- Add explicit namespace back to `GoodJob::DiscreteExecution` [\#983](https://github.com/bensheldon/good_job/pull/983) ([bensheldon](https://github.com/bensheldon)) +- Add Process heartbeat that is updated inside of Notifier [\#977](https://github.com/bensheldon/good_job/pull/977) ([bensheldon](https://github.com/bensheldon)) +- Use generic error reporter in Readme examples [\#964](https://github.com/bensheldon/good_job/pull/964) ([shouichi](https://github.com/shouichi)) + ## [v3.15.13](https://github.com/bensheldon/good_job/tree/v3.15.13) (2023-06-14) [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.15.12...v3.15.13) @@ -43,10 +67,6 @@ - Ensure migration warning for `DiscreteExecution` constant is in explicit `GoodJob::` namespace [\#963](https://github.com/bensheldon/good_job/pull/963) ([bensheldon](https://github.com/bensheldon)) -**Closed issues:** - -- uninitialized constant DiscreteExecution [\#962](https://github.com/bensheldon/good_job/issues/962) - ## [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) diff --git a/Gemfile.lock b/Gemfile.lock index 180d068fd..84c896f82 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (3.15.13) + good_job (3.15.14) activejob (>= 6.0.0) activerecord (>= 6.0.0) concurrent-ruby (>= 1.0.2) diff --git a/checksums/good_job-3.15.14.gem.sha256 b/checksums/good_job-3.15.14.gem.sha256 new file mode 100644 index 000000000..d21700537 --- /dev/null +++ b/checksums/good_job-3.15.14.gem.sha256 @@ -0,0 +1 @@ +cb9260c84b1cd3387c27a0f37a68f769958a32c71fe5f8036acab03e568a8ffe diff --git a/checksums/good_job-3.15.14.gem.sha512 b/checksums/good_job-3.15.14.gem.sha512 new file mode 100644 index 000000000..4b8a29f8b --- /dev/null +++ b/checksums/good_job-3.15.14.gem.sha512 @@ -0,0 +1 @@ +ca65d202a95da1634566f22cfb864e0140ea0382d570364def5d64e95f4ade15ddf9d0c57e59cf7b04765557188a2ef0af18278f5de7b5227f89c9dbea477001 diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index f44600810..ab9d8c50a 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.13' + VERSION = '3.15.14' # GoodJob version as Gem::Version object GEM_VERSION = Gem::Version.new(VERSION)