diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f8fc7a65..b7b875fcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [v3.17.1](https://github.com/bensheldon/good_job/tree/v3.17.1) (2023-08-08) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.17.0...v3.17.1) + +**Fixed bugs:** + +- 3.17.0 breaks health check endpoints [\#1033](https://github.com/bensheldon/good_job/issues/1033) +- Fix Probe Server by retrying IO.select instead of returning early [\#1034](https://github.com/bensheldon/good_job/pull/1034) ([bensheldon](https://github.com/bensheldon)) + +**Closed issues:** + +- Add database connection pool details to Process state [\#1014](https://github.com/bensheldon/good_job/issues/1014) + +**Merged pull requests:** + +- Add YARD warnings to lint script; fix YARD warnings [\#1032](https://github.com/bensheldon/good_job/pull/1032) ([bensheldon](https://github.com/bensheldon)) + ## [v3.17.0](https://github.com/bensheldon/good_job/tree/v3.17.0) (2023-08-06) [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.16.4...v3.17.0) diff --git a/Gemfile.lock b/Gemfile.lock index 9d7e3596f..e9e1da891 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (3.17.0) + good_job (3.17.1) activejob (>= 6.0.0) activerecord (>= 6.0.0) concurrent-ruby (>= 1.0.2) diff --git a/checksums/good_job-3.17.1.gem.sha256 b/checksums/good_job-3.17.1.gem.sha256 new file mode 100644 index 000000000..5a26374d3 --- /dev/null +++ b/checksums/good_job-3.17.1.gem.sha256 @@ -0,0 +1 @@ +1f025fc5bf8e9dc001d4a85f75d85b12b328b6149e33674178a8c5ba1f929a48 diff --git a/checksums/good_job-3.17.1.gem.sha512 b/checksums/good_job-3.17.1.gem.sha512 new file mode 100644 index 000000000..fe22fd493 --- /dev/null +++ b/checksums/good_job-3.17.1.gem.sha512 @@ -0,0 +1 @@ +0ff6119c1cabb75e8b1d8393557fb37660c56ef04968c8cb1a6428b59e52ae4c8848d3a21efb1f6838f38bfcfb7fb8c4c771974059493b6bf8fa1d939d435a26 diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index 3d622449e..62421fd65 100644 --- a/lib/good_job/version.rb +++ b/lib/good_job/version.rb @@ -2,7 +2,7 @@ module GoodJob # GoodJob gem version. - VERSION = '3.17.0' + VERSION = '3.17.1' # GoodJob version as Gem::Version object GEM_VERSION = Gem::Version.new(VERSION)