Skip to content

Commit 48ffc65

Browse files
authored
Merge pull request #95 from casperisfine/redis-5.0
Allow Redis 5.x
2 parents 3b59b18 + 0c1f711 commit 48ffc65

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

Gemfile.lock

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ PATH
33
specs:
44
kredis (1.2.0)
55
activesupport (>= 6.0.0)
6-
redis (~> 4.2)
6+
redis (>= 4.2, < 6)
77

88
GEM
99
remote: https://rubygems.org/
@@ -70,6 +70,7 @@ GEM
7070
builder (3.2.4)
7171
byebug (11.1.3)
7272
concurrent-ruby (1.1.8)
73+
connection_pool (2.2.5)
7374
crass (1.0.6)
7475
erubi (1.10.0)
7576
globalid (0.4.2)
@@ -84,17 +85,17 @@ GEM
8485
marcel (1.0.1)
8586
method_source (1.0.0)
8687
mini_mime (1.0.3)
87-
mini_portile2 (2.5.0)
88+
mini_portile2 (2.8.0)
8889
minitest (5.14.4)
8990
nio4r (2.5.7)
90-
nokogiri (1.11.2)
91-
mini_portile2 (~> 2.5.0)
91+
nokogiri (1.13.8)
92+
mini_portile2 (~> 2.8.0)
9293
racc (~> 1.4)
93-
nokogiri (1.11.2-arm64-darwin)
94+
nokogiri (1.13.8-arm64-darwin)
9495
racc (~> 1.4)
95-
nokogiri (1.11.2-x86_64-darwin)
96+
nokogiri (1.13.8-x86_64-darwin)
9697
racc (~> 1.4)
97-
racc (1.5.2)
98+
racc (1.6.0)
9899
rack (2.2.3)
99100
rack-test (1.1.0)
100101
rack (>= 1.0, < 3)
@@ -125,7 +126,10 @@ GEM
125126
rake (>= 0.8.7)
126127
thor (~> 1.0)
127128
rake (13.0.3)
128-
redis (4.6.0)
129+
redis (5.0.1)
130+
redis-client (~> 0.7)
131+
redis-client (0.7.1)
132+
connection_pool
129133
sprockets (4.0.2)
130134
concurrent-ruby (~> 1.0)
131135
rack (> 1, < 3)

kredis.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
1111

1212
s.required_ruby_version = ">= 2.7.0"
1313
s.add_dependency "activesupport", ">= 6.0.0"
14-
s.add_dependency "redis", "~> 4.2"
14+
s.add_dependency "redis", ">= 4.2", "< 6"
1515
s.add_development_dependency "rails", ">= 6.0.0"
1616

1717
s.files = Dir["lib/**/*", "MIT-LICENSE", "README.md"]

0 commit comments

Comments
 (0)