From a44d7236960dce9eb74784add365ab1a7f9598bf Mon Sep 17 00:00:00 2001 From: "Ben Sheldon [he/him]" Date: Sun, 30 Apr 2023 12:04:57 -0700 Subject: [PATCH] Release good_job v3.15.7 --- CHANGELOG.md | 17 +++++++++++++++++ Gemfile.lock | 2 +- checksums/good_job-3.15.7.gem.sha256 | 1 + checksums/good_job-3.15.7.gem.sha512 | 1 + lib/good_job/version.rb | 2 +- 5 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 checksums/good_job-3.15.7.gem.sha256 create mode 100644 checksums/good_job-3.15.7.gem.sha512 diff --git a/CHANGELOG.md b/CHANGELOG.md index cd3ac9824..cb0a0a357 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [v3.15.7](https://github.com/bensheldon/good_job/tree/v3.15.7) (2023-04-30) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.15.6...v3.15.7) + +**Fixed bugs:** + +- Fix Lockable's `SELECT 1 AS one` queries missing `LIMIT 1` [\#946](https://github.com/bensheldon/good_job/pull/946) ([bensheldon](https://github.com/bensheldon)) + +**Closed issues:** + +- Issue with performing jobs that use ActionMailer::Parameterized [\#944](https://github.com/bensheldon/good_job/issues/944) +- Deprecation warning on the deprecation warning [\#943](https://github.com/bensheldon/good_job/issues/943) + +**Merged pull requests:** + +- Replace class usage of ActiveSupport::Deprecator with gem-specific instance [\#945](https://github.com/bensheldon/good_job/pull/945) ([bensheldon](https://github.com/bensheldon)) + ## [v3.15.6](https://github.com/bensheldon/good_job/tree/v3.15.6) (2023-04-24) [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.15.5...v3.15.6) diff --git a/Gemfile.lock b/Gemfile.lock index 64506c5a2..3ad647d9b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (3.15.6) + good_job (3.15.7) activejob (>= 6.0.0) activerecord (>= 6.0.0) concurrent-ruby (>= 1.0.2) diff --git a/checksums/good_job-3.15.7.gem.sha256 b/checksums/good_job-3.15.7.gem.sha256 new file mode 100644 index 000000000..6f76414fd --- /dev/null +++ b/checksums/good_job-3.15.7.gem.sha256 @@ -0,0 +1 @@ +9c2fc3ca682bcaf09c700895c5e1151a23e003aa3ae57540860d96cc3b963244 diff --git a/checksums/good_job-3.15.7.gem.sha512 b/checksums/good_job-3.15.7.gem.sha512 new file mode 100644 index 000000000..2e1ee4b9b --- /dev/null +++ b/checksums/good_job-3.15.7.gem.sha512 @@ -0,0 +1 @@ +2eefc9db42f9033eb1f2f48d4ccac0f932a691112841d5a22d4c5592f2e4fbc5bc8fabbc6f6ad8efbe4003f89ea13ddc7da1ff6bf2cf9f65442f44885395a8f6 diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index e9e9721d4..9010be8cc 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.6' + VERSION = '3.15.7' # GoodJob version as Gem::Version object GEM_VERSION = Gem::Version.new(VERSION)