From 9c964a133e0529a94d3847c4500a47a0f1891aea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Sep 2022 09:03:57 +0000 Subject: [PATCH] Update rack requirement from ~> 2 to >= 2, < 4 in /ruby Updates the requirements on [rack](https://github.com/rack/rack) to permit the latest version. - [Release notes](https://github.com/rack/rack/releases) - [Changelog](https://github.com/rack/rack/blob/main/CHANGELOG.md) - [Commits](https://github.com/rack/rack/compare/2.0.0...3.0.0) --- updated-dependencies: - dependency-name: rack 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..46ea6ed 100644 --- a/ruby/umbra-rb.gemspec +++ b/ruby/umbra-rb.gemspec @@ -39,6 +39,6 @@ Gem::Specification.new do |spec| spec.add_dependency "concurrent-ruby", "~> 1.1" spec.add_dependency "redis", "~> 4.1" spec.add_dependency "google-protobuf", "~> 3" - spec.add_dependency "rack", "~> 2" + spec.add_dependency "rack", ">= 2", "< 4" spec.add_dependency "zeitwerk", "~> 2" end