From 72134b8a0a96dec5070624a304862e15bb9a6434 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Mar 2023 06:18:47 +0000 Subject: [PATCH] chore(deps): 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.4) --- updated-dependencies: - dependency-name: rack dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 39 ++++++++++++++++++++------------------- es_logger.gemspec | 2 +- 2 files changed, 21 insertions(+), 20 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index bf00d91..70755ef 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -6,26 +6,25 @@ PATH elasticsearch (~> 7.4) elasticsearch-persistence (~> 7.0.0, >= 7.0.0) jwt (~> 2.2.2) - rack (~> 2.0) + rack (>= 2, < 4) sidekiq (>= 5.1.3, <= 6.1.2) GEM remote: https://rubygems.org/ specs: - activemodel (6.0.3.4) - activesupport (= 6.0.3.4) - activesupport (6.0.3.4) + activemodel (5.2.8.1) + activesupport (= 5.2.8.1) + activesupport (5.2.8.1) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 0.7, < 2) minitest (~> 5.1) tzinfo (~> 1.1) - zeitwerk (~> 2.2, >= 2.2.2) ansi (1.5.0) ast (2.4.0) - coderay (1.1.2) + coderay (1.1.3) concurrent-ruby (1.1.7) connection_pool (2.2.3) - diff-lcs (1.3) + diff-lcs (1.5.0) docile (1.3.2) elasticsearch (7.5.0) elasticsearch-api (= 7.5.0) @@ -54,20 +53,22 @@ GEM i18n (1.8.5) concurrent-ruby (~> 1.0) jaro_winkler (1.5.4) - json (2.3.0) - jwt (2.2.2) + json (2.6.3) + jwt (2.2.3) method_source (0.9.2) - minitest (5.14.2) + minitest (5.15.0) multi_json (1.14.1) multipart-post (2.1.1) - parallel (1.19.1) - parser (2.7.1.0) + parallel (1.20.1) + parser (2.7.1.3) ast (~> 2.4.0) pry (0.12.2) coderay (~> 1.1.0) method_source (~> 0.9.0) - rack (2.2.3) - rainbow (3.0.0) + rack (2.2.6.4) + rack-protection (2.2.4) + rack + rainbow (3.1.1) rake (12.3.3) redis (4.2.5) rspec (3.8.0) @@ -91,10 +92,11 @@ GEM ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 1.7) ruby-progressbar (1.10.1) - sidekiq (6.1.2) - connection_pool (>= 2.2.2) - rack (~> 2.0) - redis (>= 4.2.0) + sidekiq (5.2.7) + connection_pool (~> 2.2, >= 2.2.2) + rack (>= 1.5.0) + rack-protection (>= 1.5.0) + redis (>= 3.3.5, < 5) simplecov (0.17.1) docile (~> 1.1) json (>= 1.8, < 3) @@ -104,7 +106,6 @@ GEM tzinfo (1.2.8) thread_safe (~> 0.1) unicode-display_width (1.6.1) - zeitwerk (2.4.2) PLATFORMS ruby diff --git a/es_logger.gemspec b/es_logger.gemspec index 3ea8537..a9a2750 100644 --- a/es_logger.gemspec +++ b/es_logger.gemspec @@ -28,7 +28,7 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency 'elasticsearch', '~> 7.4' spec.add_runtime_dependency 'elasticsearch-persistence', '~> 7.0.0', '>= 7.0.0' spec.add_runtime_dependency 'jwt', '~>2.2.2' - spec.add_runtime_dependency 'rack', '~> 2.0' + spec.add_runtime_dependency 'rack', '>= 2', '< 4' spec.add_runtime_dependency 'sidekiq', '>= 5.1.3', '<= 6.1.2' spec.add_development_dependency 'elasticsearch-extensions', '~> 0.0.31' spec.add_development_dependency 'pry', '~> 0.12.2'