From e7a88210eb6d65b91c5d7bc3e683ddecbf8dd293 Mon Sep 17 00:00:00 2001 From: Zoran Pesic Date: Sat, 16 Feb 2019 23:08:18 -0800 Subject: [PATCH] update redis dependency constraint to < 5 Redis gem v4.1 was recently released, so any app running it will cause bundler to resolve to using an older version of flipper-redis. We should consider relaxing the constraint to anything less than v5. Addresses https://github.com/jnunemaker/flipper/issues/392 --- flipper-redis.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flipper-redis.gemspec b/flipper-redis.gemspec index eed15ce7a..a8eeee805 100644 --- a/flipper-redis.gemspec +++ b/flipper-redis.gemspec @@ -22,5 +22,5 @@ Gem::Specification.new do |gem| gem.metadata = Flipper::METADATA gem.add_dependency 'flipper', "~> #{Flipper::VERSION}" - gem.add_dependency 'redis', '>= 2.2', '< 4.1.0' + gem.add_dependency 'redis', '>= 2.2', '< 5' end