From fa71fa2030066bc72d42abbab49a8dafc72cf2bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Aug 2022 09:03:37 +0000 Subject: [PATCH] Update redis requirement from ~> 4.1 to >= 4.1, < 6.0 in /ruby Updates the requirements on [redis](https://github.com/redis/redis-rb) to permit the latest version. - [Release notes](https://github.com/redis/redis-rb/releases) - [Changelog](https://github.com/redis/redis-rb/blob/master/CHANGELOG.md) - [Commits](https://github.com/redis/redis-rb/compare/v4.1.0...v5.0.0) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ruby/umbra-rb.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby/umbra-rb.gemspec b/ruby/umbra-rb.gemspec index 0316031..db43d51 100644 --- a/ruby/umbra-rb.gemspec +++ b/ruby/umbra-rb.gemspec @@ -37,7 +37,7 @@ Gem::Specification.new do |spec| spec.add_development_dependency "puma" spec.add_dependency "concurrent-ruby", "~> 1.1" - spec.add_dependency "redis", "~> 4.1" + spec.add_dependency "redis", ">= 4.1", "< 6.0" spec.add_dependency "google-protobuf", "~> 3" spec.add_dependency "rack", "~> 2" spec.add_dependency "zeitwerk", "~> 2"