diff --git a/CHANGELOG.md b/CHANGELOG.md index 14f8c930..15b1f1c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [v4.6.0](https://github.com/bensheldon/good_job/tree/v4.6.0) (2024-12-12) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v4.5.1...v4.6.0) + +**Implemented enhancements:** + +- Set job execution thread priority to `-3` when in async mode [\#1560](https://github.com/bensheldon/good_job/pull/1560) ([bensheldon](https://github.com/bensheldon)) + +**Closed issues:** + +- Attaching metadata to jobs [\#1558](https://github.com/bensheldon/good_job/issues/1558) +- Lower Ruby Thread priority for jobs by default when running in Async mode [\#1554](https://github.com/bensheldon/good_job/issues/1554) +- NoMethodError: undefined method `\<' for nil \(process.rb:125 in stale?\) [\#1363](https://github.com/bensheldon/good_job/issues/1363) +- Install PgHero on the Demo app [\#1166](https://github.com/bensheldon/good_job/issues/1166) + +**Merged pull requests:** + +- Bump rails-html-sanitizer from 1.6.0 to 1.6.1 [\#1557](https://github.com/bensheldon/good_job/pull/1557) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Add PGHero to the demo app [\#1294](https://github.com/bensheldon/good_job/pull/1294) ([mec](https://github.com/mec)) + ## [v4.5.1](https://github.com/bensheldon/good_job/tree/v4.5.1) (2024-11-29) [Full Changelog](https://github.com/bensheldon/good_job/compare/v4.5.0...v4.5.1) diff --git a/Gemfile.lock b/Gemfile.lock index ff0d62b9..4e029d21 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - good_job (4.5.1) + good_job (4.6.0) activejob (>= 6.1.0) activerecord (>= 6.1.0) concurrent-ruby (>= 1.3.1) diff --git a/checksums/good_job-4.6.0.gem.sha256 b/checksums/good_job-4.6.0.gem.sha256 new file mode 100644 index 00000000..b9a9f6a9 --- /dev/null +++ b/checksums/good_job-4.6.0.gem.sha256 @@ -0,0 +1 @@ +a5287e96f2d756199107954a1621e2c1ab3fd6cc6f6a7021ae8cd5e9773d264a diff --git a/checksums/good_job-4.6.0.gem.sha512 b/checksums/good_job-4.6.0.gem.sha512 new file mode 100644 index 00000000..f8fab802 --- /dev/null +++ b/checksums/good_job-4.6.0.gem.sha512 @@ -0,0 +1 @@ +5057a9bf9bc45c8462e4ff90a14c13e6e15fedf553ba53ef3964de96fdf65061cbe57a269c359268d9f53f0ceafceaeba2a6c2623ff10fc98b8b0db5f93b31c4 diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index 3a110dee..1b90335b 100644 --- a/lib/good_job/version.rb +++ b/lib/good_job/version.rb @@ -2,7 +2,7 @@ module GoodJob # GoodJob gem version. - VERSION = '4.5.1' + VERSION = '4.6.0' # GoodJob version as Gem::Version object GEM_VERSION = Gem::Version.new(VERSION)