-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test Rails 7.1 and upgrade
salsify_rubocop
(#29)
* Test Rails 7.1 and upgrade salsify_rubocop * Version bump * Bump dep in gemspec
- Loading branch information
Josh Branham
authored
Oct 13, 2023
1 parent
380ba44
commit 618ff8e
Showing
6 changed files
with
38 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,65 @@ | ||
# Changelog | ||
|
||
### 0.9.0 | ||
## 0.10.0 | ||
|
||
- Add support for Rails 7.1 | ||
|
||
## 0.9.0 | ||
- Add a `CompleteStuckJobGroupsJob`, which can be run periodically to close "stuck" job groups | ||
- Drop support for Ruby 2.7 | ||
- Drop support for Rails 6.0 | ||
|
||
### 0.8.0 | ||
## 0.8.0 | ||
- Drop support for ruby < 2.7 | ||
- Add support for ruby 3.1 | ||
- Drop Rails 5.2 | ||
- Add Rails 7.0 | ||
|
||
### 0.7.0 | ||
## 0.7.0 | ||
* Add support for ruby 3 | ||
* Drop support for ruby < 2.6 | ||
|
||
### 0.6.2 | ||
## 0.6.2 | ||
* Defer including extension until delayed_job_active_record is loaded | ||
|
||
### 0.6.1 | ||
## 0.6.1 | ||
* Fix job_group_id `belongs_to` behavior when `config.active_record.belongs_to_required_by_default` is enabled. | ||
|
||
### 0.6.0 | ||
## 0.6.0 | ||
* Add support for Rails 6.1. | ||
|
||
### 0.5.0 | ||
## 0.5.0 | ||
* Drop support for Ruby 2.3 and 2.4. | ||
* Drop support for Rails < 5.2. | ||
* Bugfix for rails version in generated migration files | ||
|
||
### 0.4.3 | ||
## 0.4.3 | ||
* Bugfix for `on_completion_job` when `failure_cancels_group` is set to false. | ||
|
||
### 0.4.2 | ||
## 0.4.2 | ||
* Add support for Rails 6.0. | ||
|
||
### 0.4.1 | ||
## 0.4.1 | ||
* Bugfix for `on_completion_job` and `on_cancellation_job` YAML serialization | ||
|
||
### 0.4.0 | ||
## 0.4.0 | ||
* Drop support for Ruby 2.0, 2.1 and 2.2. | ||
* Add support for Ruby 2.5. | ||
* Drop support for Rails < 4.2. | ||
* Add support for Rails 5.2 | ||
|
||
### 0.3.0 | ||
## 0.3.0 | ||
* Drop support for Ruby 1.9 and 2.0. | ||
|
||
### 0.2.0 | ||
## 0.2.0 | ||
* Change supported delayed job version | ||
* Clean up lifecycle management in plugin | ||
|
||
### 0.1.3 | ||
## 0.1.3 | ||
* Change supported rails version. | ||
|
||
### 0.1.2 | ||
## 0.1.2 | ||
* Add configuration option to allow failed jobs not to cancel a group. | ||
|
||
### 0.1.1 | ||
## 0.1.1 | ||
* Update the run_at for all jobs in a JobGroup when it's unblocked. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "activerecord", "~> 7.1.1" | ||
gem "activesupport", "~> 7.1.1" | ||
|
||
gemspec path: "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
module Delayed | ||
module JobGroups | ||
VERSION = '0.9.0' | ||
VERSION = '0.10.0' | ||
end | ||
end |