From 74820a47aae8a2616430256a33ddf908770da114 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Mar 2023 23:49:25 +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...v2.2.6.3) --- updated-dependencies: - dependency-name: rack dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 12 +++++++++--- sidekiq.gemspec | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index dbdc576fb7..d7a659e770 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -3,7 +3,7 @@ PATH specs: sidekiq (6.4.0) connection_pool (>= 2.2.2) - rack (~> 2.0) + rack (>= 2, < 4) redis (>= 4.2.0) GEM @@ -55,6 +55,11 @@ GEM activerecord (6.1.4.4) activemodel (= 6.1.4.4) activesupport (= 6.1.4.4) + activerecord-jdbc-adapter (61.2-java) + activerecord (~> 6.1.0) + activerecord-jdbcsqlite3-adapter (61.2-java) + activerecord-jdbc-adapter (= 61.2) + jdbc-sqlite3 (~> 3.8, < 3.30) activestorage (6.1.4.4) actionpack (= 6.1.4.4) activejob (= 6.1.4.4) @@ -74,7 +79,7 @@ GEM json simplecov concurrent-ruby (1.1.9) - connection_pool (2.2.5) + connection_pool (2.3.0) crass (1.0.6) digest (3.1.0) docile (1.3.2) @@ -86,6 +91,7 @@ GEM i18n (1.8.11) concurrent-ruby (~> 1.0) io-wait (0.2.1) + jdbc-sqlite3 (3.28.0) json (2.3.1) json (2.3.1-java) loofah (2.13.0) @@ -117,7 +123,7 @@ GEM ast (~> 2.4.1) racc (1.6.0) racc (1.6.0-java) - rack (2.2.3) + rack (2.2.6.3) rack-test (1.1.0) rack (>= 1.0, < 3) rails (6.1.4.4) diff --git a/sidekiq.gemspec b/sidekiq.gemspec index e3d5bf761a..93b9abefd0 100644 --- a/sidekiq.gemspec +++ b/sidekiq.gemspec @@ -24,5 +24,5 @@ Gem::Specification.new do |gem| gem.add_dependency "redis", ">= 4.2.0" gem.add_dependency "connection_pool", ">= 2.2.2" - gem.add_dependency "rack", "~> 2.0" + gem.add_dependency "rack", ">= 2", "< 4" end