From 78ac0ad4ee93a33afca1f5a78562698b8f9c5151 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Dec 2022 01:44:23 +0000 Subject: [PATCH] Update sinatra requirement from ~> 2.0.5 to >= 2.0.5, < 3.1.0 Updates the requirements on [sinatra](https://github.com/sinatra/sinatra) to permit the latest version. - [Release notes](https://github.com/sinatra/sinatra/releases) - [Changelog](https://github.com/sinatra/sinatra/blob/master/CHANGELOG.md) - [Commits](https://github.com/sinatra/sinatra/compare/v2.0.5...v3.0.4) --- updated-dependencies: - dependency-name: sinatra dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- mainframe/challenge/Gemfile.lock | 30 ++++++++++++--------------- mainframe/challenge/challenge.gemspec | 2 +- 2 files changed, 14 insertions(+), 18 deletions(-) diff --git a/mainframe/challenge/Gemfile.lock b/mainframe/challenge/Gemfile.lock index 5a2f43c..1b5e74d 100644 --- a/mainframe/challenge/Gemfile.lock +++ b/mainframe/challenge/Gemfile.lock @@ -2,40 +2,36 @@ PATH remote: . specs: challenge (0.0.0) - base32 (~> 0.3.2) - hexhelper (~> 0.0.2) optimist (~> 3.0.0) - salsa20 (~> 0.1.3) - sinatra (~> 2.0.5) + sinatra (>= 2.0.5, < 3.1.0) singlogger (~> 0.0.0) thin (~> 1.7.2) GEM remote: https://rubygems.org/ specs: - base32 (0.3.2) - daemons (1.3.1) + daemons (1.4.1) docile (1.1.5) eventmachine (1.2.7) - hexhelper (0.0.2) json (2.1.0) - mustermann (1.0.3) - optimist (3.0.0) + mustermann (3.0.0) + ruby2_keywords (~> 0.0.1) + optimist (3.0.1) power_assert (1.1.3) - rack (2.0.6) - rack-protection (2.0.5) + rack (2.2.4) + rack-protection (3.0.4) rack rake (10.5.0) - salsa20 (0.1.3) + ruby2_keywords (0.0.5) simplecov (0.14.1) docile (~> 1.1.0) json (>= 1.8, < 3) simplecov-html (~> 0.10.0) simplecov-html (0.10.2) - sinatra (2.0.5) - mustermann (~> 1.0) - rack (~> 2.0) - rack-protection (= 2.0.5) + sinatra (3.0.4) + mustermann (~> 3.0) + rack (~> 2.2, >= 2.2.4) + rack-protection (= 3.0.4) tilt (~> 2.0) singlogger (0.0.1) test-unit (3.2.9) @@ -44,7 +40,7 @@ GEM daemons (~> 1.0, >= 1.0.9) eventmachine (~> 1.0, >= 1.0.4) rack (>= 1, < 3) - tilt (2.0.9) + tilt (2.0.11) PLATFORMS ruby diff --git a/mainframe/challenge/challenge.gemspec b/mainframe/challenge/challenge.gemspec index e9deb86..fa45d28 100644 --- a/mainframe/challenge/challenge.gemspec +++ b/mainframe/challenge/challenge.gemspec @@ -28,7 +28,7 @@ Gem::Specification.new do |spec| #spec.add_dependency 'hexhelper', '~> 0.0.2' spec.add_dependency 'optimist', '~> 3.0.0' #spec.add_dependency 'salsa20', '~> 0.1.3' - spec.add_dependency 'sinatra', '~> 2.0.5' + spec.add_dependency 'sinatra', '>= 2.0.5', '< 3.1.0' spec.add_dependency 'singlogger', '~> 0.0.0' spec.add_dependency 'thin', '~> 1.7.2' end