diff --git a/CHANGELOG.md b/CHANGELOG.md index df917866d..04a28c3f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [v1.13.0](https://github.com/bensheldon/good_job/tree/v1.13.0) (2021-08-18) + +[Full Changelog](https://github.com/bensheldon/good_job/compare/v1.12.2...v1.13.0) + +**Implemented enhancements:** + +- Track if a GoodJob::Job has been subsequently retried [\#331](https://github.com/bensheldon/good_job/pull/331) ([bensheldon](https://github.com/bensheldon)) +- Wrap and truncate error message, which can be a huge text [\#294](https://github.com/bensheldon/good_job/pull/294) ([morgoth](https://github.com/morgoth)) + +**Closed issues:** + +- Add hyphen to lock string. e.g. "table\_name-column" instead of "table\_namecolumn [\#334](https://github.com/bensheldon/good_job/issues/334) +- Optimize db indexes in advance of v2.0.0 [\#332](https://github.com/bensheldon/good_job/issues/332) +- wait\_until in development? [\#330](https://github.com/bensheldon/good_job/issues/330) +- Race conditions in ActiveJob concurrency extension [\#325](https://github.com/bensheldon/good_job/issues/325) +- Store in database if a job has been ActiveJob retried [\#321](https://github.com/bensheldon/good_job/issues/321) +- Revisit and embrace concurrency control, scheduled jobs, and other extensions of ActiveJob [\#255](https://github.com/bensheldon/good_job/issues/255) +- Why 1 million jobs per day? [\#222](https://github.com/bensheldon/good_job/issues/222) + ## [v1.12.2](https://github.com/bensheldon/good_job/tree/v1.12.2) (2021-08-13) [Full Changelog](https://github.com/bensheldon/good_job/compare/v1.12.1...v1.12.2) diff --git a/Gemfile.lock b/Gemfile.lock index 603ab46b3..201060feb 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - good_job (1.12.2) + good_job (1.13.0) activejob (>= 5.2.0) activerecord (>= 5.2.0) concurrent-ruby (>= 1.0.2) @@ -180,7 +180,7 @@ GEM ffi (1.15.3-java) fiber-local (1.0.0) foreman (0.87.2) - fugit (1.5.0) + fugit (1.5.1) et-orbi (~> 1.1, >= 1.1.8) raabro (~> 1.4) gem-release (2.2.2) diff --git a/lib/good_job/version.rb b/lib/good_job/version.rb index 8f5049ce5..16d414473 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.2' + VERSION = '1.13.0' end