diff --git a/CHANGELOG.md b/CHANGELOG.md index d08d08bbd..472b3dc57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [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) + +**Closed issues:** + +- Explicitly write that jobs with higher priority jobs run first \(unlike Que or DelayedJob\) at readme. [\#991](https://github.com/bensheldon/good_job/issues/991) + +**Merged pull requests:** + +- Correct `discrete_execution#status` method [\#1092](https://github.com/bensheldon/good_job/pull/1092) ([coreyaus](https://github.com/coreyaus)) +- Use ActiveSupport::BroadcastLogger [\#1089](https://github.com/bensheldon/good_job/pull/1089) ([bensheldon](https://github.com/bensheldon)) +- Log thread name for gem development debugging [\#1085](https://github.com/bensheldon/good_job/pull/1085) ([bensheldon](https://github.com/bensheldon)) +- Describe ApplicationController hook in README [\#1082](https://github.com/bensheldon/good_job/pull/1082) ([maxim](https://github.com/maxim)) +- \[Docs\] Explain how `priority` works in GoodJob [\#1005](https://github.com/bensheldon/good_job/pull/1005) ([coreyaus](https://github.com/coreyaus)) + ## [v3.19.2](https://github.com/bensheldon/good_job/tree/v3.19.2) (2023-09-22) [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.19.1...v3.19.2) @@ -1044,7 +1060,7 @@ - Add cron\_enabled attribute to good\_job and pass it to process current state [\#675](https://github.com/bensheldon/good_job/pull/675) ([saksham-jain](https://github.com/saksham-jain)) - Reverse Dashboard Filter Hierarchy to be: queues+jobs then state [\#666](https://github.com/bensheldon/good_job/pull/666) ([bensheldon](https://github.com/bensheldon)) -- Allow cron entries to be temporarily disabled and re-enabled through the Dashboard [\#649](https://github.com/bensheldon/good_job/pull/649) ([alex-klepa](https://github.com/alex-klepa)) +- Allow cron entries to be temporarily disabled and re-enabled through the Dashboard [\#649](https://github.com/bensheldon/good_job/pull/649) ([sasha-id](https://github.com/sasha-id)) - Add Configuration.total\_estimated\_threads to report number of threads consumed by GoodJob [\#645](https://github.com/bensheldon/good_job/pull/645) ([bensheldon](https://github.com/bensheldon)) **Closed issues:** diff --git a/Gemfile.lock b/Gemfile.lock index d268773bd..4c30e478e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - good_job (3.19.2) + good_job (3.19.3) activejob (>= 6.0.0) activerecord (>= 6.0.0) concurrent-ruby (>= 1.0.2) diff --git a/checksums/good_job-3.19.3.gem.sha256 b/checksums/good_job-3.19.3.gem.sha256 new file mode 100644 index 000000000..19bf52f86 --- /dev/null +++ b/checksums/good_job-3.19.3.gem.sha256 @@ -0,0 +1 @@ +ecbd2c60d179ceed88abb5c02c055f748198ab93c813c41c3c66f6b96820e0b1 diff --git a/checksums/good_job-3.19.3.gem.sha512 b/checksums/good_job-3.19.3.gem.sha512 new file mode 100644 index 000000000..c81d54ef8 --- /dev/null +++ b/checksums/good_job-3.19.3.gem.sha512 @@ -0,0 +1 @@ +cbf7c9005d4cd79ec2fc3e9a9cab89bdd53ed1c14f0dacf7c7fc538832c4e8e9c3b322788178e084df2fca2ebe1974c3d4b1ce34409e18ef0bd4d437b7084a4b diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index b5f87cce3..fea7b5d5f 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.2' + VERSION = '3.19.3' # GoodJob version as Gem::Version object GEM_VERSION = Gem::Version.new(VERSION)