Skip to content

Commit

Permalink
Switch from redis to redis-client
Browse files Browse the repository at this point in the history
Sidekiq 7.0 no longer uses the `redis` gem, so we should swap to use the
new `redis-client` gem.
  • Loading branch information
brucebolt committed Sep 16, 2024
1 parent c8b44f0 commit 578789e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Unreleased

* Switch from using `redis` gem to `redis-client`

# 8.0.1

* Fix support for `reconnect_attempts` not working with Redis 4.8 (which is required due to the sidekiq version specified)
Expand Down
2 changes: 1 addition & 1 deletion govuk_sidekiq.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|

spec.add_dependency "gds-api-adapters", ">= 19.1.0"
spec.add_dependency "govuk_app_config", ">= 1.1"
spec.add_dependency "redis", "< 5"
spec.add_dependency "redis-client", ">= 0.22.2"
spec.add_dependency "redis-namespace", "~> 1.6"
spec.add_dependency "sidekiq", "~> 6.5", ">= 6.5.12"

Expand Down

0 comments on commit 578789e

Please sign in to comment.