diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f4f8c4a5..24a77fef0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,40 @@ # Changelog +## [v3.23.0](https://github.com/bensheldon/good_job/tree/v3.23.0) (2024-01-23) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.22.0...v3.23.0) + +**Implemented enhancements:** + +- Add environment label to navbar [\#1206](https://github.com/bensheldon/good_job/pull/1206) ([sparshalc](https://github.com/sparshalc)) +- Make health probe server more general purpose [\#1079](https://github.com/bensheldon/good_job/pull/1079) ([jklina](https://github.com/jklina)) + +**Fixed bugs:** + +- Use Rails executor instead of reloader when wrapping inline execution [\#1225](https://github.com/bensheldon/good_job/pull/1225) ([bensheldon](https://github.com/bensheldon)) +- Add an index to better support `smaller_number_is_higher_priority` [\#1213](https://github.com/bensheldon/good_job/pull/1213) ([mkrfowler](https://github.com/mkrfowler)) +- Fix discard job with nonexistent job class [\#1211](https://github.com/bensheldon/good_job/pull/1211) ([yenshirak](https://github.com/yenshirak)) +- Fix: Interacting with input field should pause the live poll [\#1210](https://github.com/bensheldon/good_job/pull/1210) ([sparshalc](https://github.com/sparshalc)) + +**Closed issues:** + +- can't write unknown attribute `active_job_id` [\#1216](https://github.com/bensheldon/good_job/issues/1216) +- Regression: use of Rails reloader causing mixed constants during seeding [\#1215](https://github.com/bensheldon/good_job/issues/1215) +- Production worker doesn't show any processes [\#1214](https://github.com/bensheldon/good_job/issues/1214) +- Clarify required async mode DB pool size [\#1209](https://github.com/bensheldon/good_job/issues/1209) +- Mac forking exception when using Spring [\#1115](https://github.com/bensheldon/good_job/issues/1115) +- Jobs should have labels [\#1095](https://github.com/bensheldon/good_job/issues/1095) +- Set up Dependabot grouped updates [\#1062](https://github.com/bensheldon/good_job/issues/1062) +- Fix documentation to always include space in "Active Job", "Active Record", etc. [\#1048](https://github.com/bensheldon/good_job/issues/1048) + +**Merged pull requests:** + +- Bump actions/cache from 3 to 4 [\#1223](https://github.com/bensheldon/good_job/pull/1223) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Update README, add poll\_interval defaults/recommendations [\#1220](https://github.com/bensheldon/good_job/pull/1220) ([andynu](https://github.com/andynu)) +- Update Russian translation [\#1219](https://github.com/bensheldon/good_job/pull/1219) ([alec-c4](https://github.com/alec-c4)) +- Add Korean translation \(ko\) [\#1212](https://github.com/bensheldon/good_job/pull/1212) ([hahwul](https://github.com/hahwul)) +- Fix default poll interval in documentation [\#1208](https://github.com/bensheldon/good_job/pull/1208) ([yenshirak](https://github.com/yenshirak)) + ## [v3.22.0](https://github.com/bensheldon/good_job/tree/v3.22.0) (2024-01-03) [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.21.5...v3.22.0) @@ -1603,7 +1638,6 @@ **Fixed bugs:** - `ActionMailer::MailDeliveryJob` executing twice [\#329](https://github.com/bensheldon/good_job/issues/329) -- Email job breaks dashboard [\#313](https://github.com/bensheldon/good_job/issues/313) **Closed issues:** diff --git a/Gemfile.lock b/Gemfile.lock index 0f85d538a..0048ff3f6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - good_job (3.22.0) + good_job (3.23.0) activejob (>= 6.0.0) activerecord (>= 6.0.0) concurrent-ruby (>= 1.0.2) diff --git a/checksums/good_job-3.23.0.gem.sha256 b/checksums/good_job-3.23.0.gem.sha256 new file mode 100644 index 000000000..707a28006 --- /dev/null +++ b/checksums/good_job-3.23.0.gem.sha256 @@ -0,0 +1 @@ +d73329b1e3883a827c3dc2da9f3ac4523075d5cd90ce3ef7b0c359d5769443e0 diff --git a/checksums/good_job-3.23.0.gem.sha512 b/checksums/good_job-3.23.0.gem.sha512 new file mode 100644 index 000000000..debfa2274 --- /dev/null +++ b/checksums/good_job-3.23.0.gem.sha512 @@ -0,0 +1 @@ +669abfe0c52e126e1f72f1c353bfdef6445ae3680e9a10463752e8c777aaef7b5743e78bc7a2a23393958f7dbbfc2a1915d1c6f3348a113f404cf703e546f7de diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index cd6f9ea69..73baee787 100644 --- a/lib/good_job/version.rb +++ b/lib/good_job/version.rb @@ -2,7 +2,7 @@ module GoodJob # GoodJob gem version. - VERSION = '3.22.0' + VERSION = '3.23.0' # GoodJob version as Gem::Version object GEM_VERSION = Gem::Version.new(VERSION)