From 30070766f4a20ba91c7f338fc6a23f3fa3be16cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 May 2022 19:20:24 +0000 Subject: [PATCH] Update rack requirement from ~> 1.6 to >= 1.6, < 3.0 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/1.6.8...2.2.3.1) --- updated-dependencies: - dependency-name: rack dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 4 ++-- flack.gemspec | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 0280b53..e655c2d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -14,7 +14,7 @@ PATH flack (0.11.0) flor (~> 0.11) httpclient (~> 2.8) - rack (~> 1.6) + rack (>= 1.6, < 3.0) sequel (~> 4) GEM @@ -30,7 +30,7 @@ GEM jdbc-sqlite3 (3.8.11.2) munemo (1.0.1) raabro (1.1.5) - rack (1.6.8) + rack (2.2.3.1) rspec (3.4.0) rspec-core (~> 3.4.0) rspec-expectations (~> 3.4.0) diff --git a/flack.gemspec b/flack.gemspec index 77240d7..cb26446 100644 --- a/flack.gemspec +++ b/flack.gemspec @@ -31,7 +31,7 @@ A web front-end to the flor workflow engine flor_version = s.version.to_s.split('.').take(2).join('.') s.add_runtime_dependency 'flor', "~> #{flor_version}" - s.add_runtime_dependency 'rack', '~> 1.6' + s.add_runtime_dependency 'rack', '>= 1.6', '< 3.0' s.add_runtime_dependency 'sequel', '~> 4' s.add_runtime_dependency 'httpclient', '~> 2.8'