diff --git a/CHANGELOG.md b/CHANGELOG.md index fe06e8846..209b49742 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [v3.12.3](https://github.com/bensheldon/good_job/tree/v3.12.3) (2023-02-21) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v3.12.2...v3.12.3) + +**Closed issues:** + +- \[Not Critical\] Too much space \(One\) in db/migrate/XXXXXX\_create\_index\_good\_jobs\_jobs\_on\_priority\_created\_at\_when\_unfinished.rb [\#851](https://github.com/bensheldon/good_job/issues/851) +- Use timestamps with timezone when set as the default for postgresql. [\#668](https://github.com/bensheldon/good_job/issues/668) + +**Merged pull requests:** + +- Fix bug where notification check does not use configuration [\#857](https://github.com/bensheldon/good_job/pull/857) ([mitchellhenke](https://github.com/mitchellhenke)) +- Fix template for the update migrations 03 index \(\#851\) [\#852](https://github.com/bensheldon/good_job/pull/852) ([julienanne](https://github.com/julienanne)) + ## [v3.12.2](https://github.com/bensheldon/good_job/tree/v3.12.2) (2023-02-16) [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.12.1...v3.12.2) diff --git a/Gemfile.lock b/Gemfile.lock index 3f38ba4ab..c5dd3fb09 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (3.12.2) + good_job (3.12.3) activejob (>= 6.0.0) activerecord (>= 6.0.0) concurrent-ruby (>= 1.0.2) diff --git a/checksums/good_job-3.12.3.gem.sha256 b/checksums/good_job-3.12.3.gem.sha256 new file mode 100644 index 000000000..c09acb7d1 --- /dev/null +++ b/checksums/good_job-3.12.3.gem.sha256 @@ -0,0 +1 @@ +d531aea58c186ff29780cf92ca462237ce8fcb48aae2c97aed3b67e01a198fa1 diff --git a/checksums/good_job-3.12.3.gem.sha512 b/checksums/good_job-3.12.3.gem.sha512 new file mode 100644 index 000000000..96a528f03 --- /dev/null +++ b/checksums/good_job-3.12.3.gem.sha512 @@ -0,0 +1 @@ +ba8d14ce8a47d370f8a50b2c29e3a1e42eb7ea98e3241e39fd862364ac76ad79df7c60b8c59538859c29689c69052e9292c65b0376c6fbf8a9fdbf1fc2ea1a90 diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index 0377765d6..142b500ba 100644 --- a/lib/good_job/version.rb +++ b/lib/good_job/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module GoodJob # GoodJob gem version. - VERSION = '3.12.2' + VERSION = '3.12.3' end