diff --git a/CHANGELOG.md b/CHANGELOG.md index 472b3dc57..f78920a9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [v3.19.4](https://github.com/bensheldon/good_job/tree/v3.19.4) (2023-10-04) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.19.3...v3.19.4) + +**Closed issues:** + +- Including GoodJob::ActiveJobExtensions::Concurrency triggers rails deprecation notice [\#1096](https://github.com/bensheldon/good_job/issues/1096) +- Add retries exhaused callback [\#1080](https://github.com/bensheldon/good_job/issues/1080) + +**Merged pull requests:** + +- Address rails 7.1 deprecation when using `ActiveJobExtensions::Concurrency` [\#1097](https://github.com/bensheldon/good_job/pull/1097) ([Earlopain](https://github.com/Earlopain)) + ## [v3.19.3](https://github.com/bensheldon/good_job/tree/v3.19.3) (2023-09-28) [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.19.2...v3.19.3) diff --git a/Gemfile.lock b/Gemfile.lock index 4c30e478e..27e477d5f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - good_job (3.19.3) + good_job (3.19.4) activejob (>= 6.0.0) activerecord (>= 6.0.0) concurrent-ruby (>= 1.0.2) diff --git a/checksums/good_job-3.19.4.gem.sha256 b/checksums/good_job-3.19.4.gem.sha256 new file mode 100644 index 000000000..da12d35be --- /dev/null +++ b/checksums/good_job-3.19.4.gem.sha256 @@ -0,0 +1 @@ +1b0ed67f2ecbcf5f293bc57403b3fe270a881c98fa11a7627b5ce3ce03065e47 diff --git a/checksums/good_job-3.19.4.gem.sha512 b/checksums/good_job-3.19.4.gem.sha512 new file mode 100644 index 000000000..6849b6b64 --- /dev/null +++ b/checksums/good_job-3.19.4.gem.sha512 @@ -0,0 +1 @@ +558c96cf9f270bc130ff8a83cbf3d28f7fcc465a4d3ea9f6dae76b342f55180ea8495e96e28354287bdaeed49b194cf9405ae5f43fbc6163f3e163b4bedddf77 diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index fea7b5d5f..6d3179125 100644 --- a/lib/good_job/version.rb +++ b/lib/good_job/version.rb @@ -2,7 +2,7 @@ module GoodJob # GoodJob gem version. - VERSION = '3.19.3' + VERSION = '3.19.4' # GoodJob version as Gem::Version object GEM_VERSION = Gem::Version.new(VERSION)