-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for activesupport 7.1 and drop sidekiq < 6.4.1. (#76)
Add support for activesupport 7.1 and drop sidekiq < 6.4.1.
- Loading branch information
Showing
11 changed files
with
47 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
# frozen_string_literal: true | ||
|
||
appraise "rails-6.1-sidekiq-5.2" do | ||
appraise "rails-6.1-sidekiq-6.4" do | ||
gem "activejob", "~> 6.1.0" | ||
gem "activesupport", "~> 6.1.0" | ||
gem "sidekiq", "~> 5.2.0" | ||
gem "sidekiq", "~> 6.4.1" | ||
end | ||
|
||
appraise "rails-6.1-sidekiq-6.0" do | ||
appraise "rails-6.1-sidekiq-6.5" do | ||
gem "activejob", "~> 6.1.0" | ||
gem "activesupport", "~> 6.1.0" | ||
gem "sidekiq", "~> 6.0.1" | ||
gem "sidekiq", "~> 6.5.0" | ||
end | ||
|
||
appraise "rails-6.1-sidekiq-6.1" do | ||
gem "activejob", "~> 6.1.0" | ||
gem "activesupport", "~> 6.1.0" | ||
gem "sidekiq", "~> 6.1.0" | ||
appraise "rails-7.0-sidekiq-6.4" do | ||
gem "activejob", "~> 7.0.0" | ||
gem "activesupport", "~> 7.0.0" | ||
gem "sidekiq", "~> 6.4.1" | ||
end | ||
|
||
appraise "rails-6.1-sidekiq-6.2" do | ||
gem "activejob", "~> 6.1.0" | ||
gem "activesupport", "~> 6.1.0" | ||
gem "sidekiq", "~> 6.2.0" | ||
appraise "rails-7.0-sidekiq-6.5" do | ||
gem "activejob", "~> 7.0.0" | ||
gem "activesupport", "~> 7.0.0" | ||
gem "sidekiq", "~> 6.5.0" | ||
end | ||
|
||
appraise "rails-6.1-sidekiq-6.3" do | ||
gem "activejob", "~> 6.1.0" | ||
gem "activesupport", "~> 6.1.0" | ||
gem "sidekiq", "~> 6.3.0" | ||
appraise "rails-7.1-sidekiq-6.4" do | ||
gem "activejob", "~> 7.1.0" | ||
gem "activesupport", "~> 7.1.0" | ||
gem "sidekiq", "~> 6.4.1" | ||
end | ||
|
||
appraise "rails-6.1-sidekiq-6.4" do | ||
gem "activejob", "~> 6.1.0" | ||
gem "activesupport", "~> 6.1.0" | ||
gem "sidekiq", "~> 6.4.2" # above 6.4.2 to ensure we test against breaking changes | ||
appraise "rails-7.1-sidekiq-6.5" do | ||
gem "activejob", "~> 7.1.0" | ||
gem "activesupport", "~> 7.1.0" | ||
gem "sidekiq", "~> 6.5.0" | ||
end |
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 was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "activejob", "~> 7.1.0" | ||
gem "activesupport", "~> 7.1.0" | ||
gem "sidekiq", "~> 6.5.0" | ||
|
||
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module SidekiqPublisher | ||
VERSION = "4.0.0" | ||
VERSION = "5.0.0" | ||
end |
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