From 9db7cd818539b205d12f67befc82e7df79578737 Mon Sep 17 00:00:00 2001 From: Ben Sheldon Date: Fri, 26 Nov 2021 09:59:27 -0800 Subject: [PATCH] Release good_job v2.7.1 --- CHANGELOG.md | 17 +++++++++++++++++ Gemfile.lock | 2 +- lib/good_job/version.rb | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2ed79696..ede64798b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [v2.7.1](https://github.com/bensheldon/good_job/tree/v2.7.1) (2021-11-26) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v2.7.0...v2.7.1) + +**Fixed bugs:** + +- Unclear error when database can't be reached [\#457](https://github.com/bensheldon/good_job/issues/457) +- Remove Concurrent::Delay wrapping of database-loading methods [\#458](https://github.com/bensheldon/good_job/pull/458) ([bensheldon](https://github.com/bensheldon)) +- Do not delete csp policies when checking csp policies [\#456](https://github.com/bensheldon/good_job/pull/456) ([JonathanFrias](https://github.com/JonathanFrias)) + +**Closed issues:** + +- How to suppress job scheduler logs? [\#455](https://github.com/bensheldon/good_job/issues/455) +- Configuration in environments/\*.rb overrides application.rb [\#453](https://github.com/bensheldon/good_job/issues/453) +- Testing jobs synchronously [\#435](https://github.com/bensheldon/good_job/issues/435) +- HTTP health check endpoint [\#403](https://github.com/bensheldon/good_job/issues/403) + ## [v2.7.0](https://github.com/bensheldon/good_job/tree/v2.7.0) (2021-11-10) [Full Changelog](https://github.com/bensheldon/good_job/compare/v2.6.2...v2.7.0) diff --git a/Gemfile.lock b/Gemfile.lock index fb598b0b0..94945984a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (2.7.0) + good_job (2.7.1) activejob (>= 5.2.0) activerecord (>= 5.2.0) concurrent-ruby (>= 1.0.2) diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index 9a21b042c..2e662e0b2 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 = '2.7.0' + VERSION = '2.7.1' end