From 23e0f577dfb65ffb870374ecf3e30ca8c51941a3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Mar 2023 20:17:44 +0000 Subject: [PATCH] Update rack requirement from ~> 2.0 to >= 2, < 4 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.2.3...v3.0.4.2) --- updated-dependencies: - dependency-name: rack dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 14 +++++++------- action_handler.gemspec | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 5efd207..8db1804 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -3,27 +3,27 @@ PATH specs: action_handler (0.2.7) activesupport (~> 5.2) - rack (~> 2.0) + rack (>= 2, < 4) GEM remote: https://rubygems.org/ specs: - activesupport (5.2.6) + activesupport (5.2.8.1) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 0.7, < 2) minitest (~> 5.1) tzinfo (~> 1.1) coderay (1.1.2) - concurrent-ruby (1.1.8) + concurrent-ruby (1.2.2) diff-lcs (1.3) - i18n (1.8.10) + i18n (1.12.0) concurrent-ruby (~> 1.0) method_source (0.9.2) - minitest (5.14.4) + minitest (5.18.0) pry (0.12.2) coderay (~> 1.1.0) method_source (~> 0.9.0) - rack (2.2.3) + rack (3.0.4.2) rake (13.0.1) rspec (3.8.0) rspec-core (~> 3.8.0) @@ -39,7 +39,7 @@ GEM rspec-support (~> 3.8.0) rspec-support (3.8.2) thread_safe (0.3.6) - tzinfo (1.2.9) + tzinfo (1.2.11) thread_safe (~> 0.1) PLATFORMS diff --git a/action_handler.gemspec b/action_handler.gemspec index 7c09db6..e550c62 100644 --- a/action_handler.gemspec +++ b/action_handler.gemspec @@ -37,5 +37,5 @@ Gem::Specification.new do |spec| spec.add_development_dependency "pry", "~> 0.12" spec.add_runtime_dependency "activesupport", "~> 5.2" - spec.add_runtime_dependency "rack", "~> 2.0" + spec.add_runtime_dependency "rack", ">= 2", "< 4" end