From 4833fb75f196e6a70e0d2bc20a1f0209d9f3496d Mon Sep 17 00:00:00 2001 From: Ben Sheldon Date: Wed, 4 Aug 2021 18:22:17 -0700 Subject: [PATCH] Release good_job v1.12.1 --- CHANGELOG.md | 20 ++++++++++++++++++++ Gemfile.lock | 8 ++++---- lib/good_job/version.rb | 2 +- 3 files changed, 25 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f020781e9..4b945997e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [v1.12.1](https://github.com/bensheldon/good_job/tree/v1.12.1) (2021-08-05) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v1.12.0...v1.12.1) + +**Fixed bugs:** + +- Ensure CLI can shutdown cleanly with multiple queues and timeout [\#319](https://github.com/bensheldon/good_job/pull/319) ([bensheldon](https://github.com/bensheldon)) + +**Closed issues:** + +- Setting a shutdown timeout causes the CLI executor to throw an exception on shutdown. [\#318](https://github.com/bensheldon/good_job/issues/318) +- PgBouncer and prepared statements [\#269](https://github.com/bensheldon/good_job/issues/269) +- Question about locking internals [\#212](https://github.com/bensheldon/good_job/issues/212) +- Encoding::UndefinedConversionError \("\xE2" from ASCII-8BIT to UTF-8\) [\#198](https://github.com/bensheldon/good_job/issues/198) +- tools for managing a 'fleet' of processes [\#150](https://github.com/bensheldon/good_job/issues/150) + +**Merged pull requests:** + +- Fix Readme lint warnings [\#320](https://github.com/bensheldon/good_job/pull/320) ([bensheldon](https://github.com/bensheldon)) + ## [v1.12.0](https://github.com/bensheldon/good_job/tree/v1.12.0) (2021-07-27) [Full Changelog](https://github.com/bensheldon/good_job/compare/v1.11.3...v1.12.0) diff --git a/Gemfile.lock b/Gemfile.lock index 940e0e595..97e348815 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (1.12.0) + good_job (1.12.1) activejob (>= 5.2.0) activerecord (>= 5.2.0) concurrent-ruby (>= 1.0.2) @@ -72,10 +72,10 @@ GEM activerecord-explain-analyze (0.1.0) activerecord (>= 4) pg - activerecord-jdbc-adapter (61.0-java) + activerecord-jdbc-adapter (61.1-java) activerecord (~> 6.1.0) - activerecord-jdbcpostgresql-adapter (61.0-java) - activerecord-jdbc-adapter (= 61.0) + activerecord-jdbcpostgresql-adapter (61.1-java) + activerecord-jdbc-adapter (= 61.1) jdbc-postgres (>= 9.4, < 43) activestorage (6.1.4) actionpack (= 6.1.4) diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index fd0f2e137..ab668bc76 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 = '1.12.0' + VERSION = '1.12.1' end