forked from discourse/mini_scheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING: support Sidekiq >= 6.5, Ruby >= 3.0
This primarily adds support for Sidekiq 7. The support policy for Sidekiq states that the previous major releases is supported "as long as they are less than five years old" [1]. With Sidekiq 6.0 released in August 2019, that time has come. This also adds an exhaustive test matrix covering - Ruby 3.0..3.3 - Sidekiq 6.5..7.3 - official Redis server and its ValKey fork Testing against ValKey ensures smooth transitioning from the proprietary Redis 7.2 to a pure Open Source stack [2, 3]. [1]: https://github.com/sidekiq/sidekiq/wiki/Commercial-Support [2]: https://redis.io/legal/licenses/ [3]: https://github.com/valkey-io/valkey?tab=License-1-ov-file#readme
- Loading branch information
Showing
11 changed files
with
76 additions
and
23 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# frozen_string_literal: true | ||
source "https://rubygems.org" | ||
|
||
gemspec path: ".." | ||
|
||
gem "sidekiq", "~> 6.5.0" |
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,6 @@ | ||
# frozen_string_literal: true | ||
source "https://rubygems.org" | ||
|
||
gemspec path: ".." | ||
|
||
gem "sidekiq", "~> 7.0.0" |
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,6 @@ | ||
# frozen_string_literal: true | ||
source "https://rubygems.org" | ||
|
||
gemspec path: ".." | ||
|
||
gem "sidekiq", "~> 7.1.0" |
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,6 @@ | ||
# frozen_string_literal: true | ||
source "https://rubygems.org" | ||
|
||
gemspec path: ".." | ||
|
||
gem "sidekiq", "~> 7.2.0" |
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,6 @@ | ||
# frozen_string_literal: true | ||
source "https://rubygems.org" | ||
|
||
gemspec path: ".." | ||
|
||
gem "sidekiq", "~> 7.3.0" |
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