From 4437b58adc426e32c4a9c65c2a184c62df131dcf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Aug 2022 19:52:51 +0000 Subject: [PATCH] Update omniauth requirement from ~> 1.9 to >= 1.9, < 3.0 Updates the requirements on [omniauth](https://github.com/omniauth/omniauth) to permit the latest version. - [Release notes](https://github.com/omniauth/omniauth/releases) - [Commits](https://github.com/omniauth/omniauth/compare/v1.9.1...v2.1.0) --- updated-dependencies: - dependency-name: omniauth dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 42 ++++++++++++++++++++++++------------------ omniauth-jane.gemspec | 2 +- 2 files changed, 25 insertions(+), 19 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 1bd5afa..b24a7f7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,35 +2,40 @@ PATH remote: . specs: omniauth-jane (1.0.0) - omniauth (~> 1.9) + omniauth (>= 1.9, < 3.0) omniauth-oauth2 (~> 1.5) GEM remote: https://rubygems.org/ specs: diff-lcs (1.4.4) - faraday (1.1.0) - multipart-post (>= 1.2, < 3) - ruby2_keywords - hashie (4.1.0) - jwt (2.2.2) - multi_json (1.15.0) + faraday (2.5.2) + faraday-net_http (>= 2.0, < 3.1) + ruby2_keywords (>= 0.0.4) + faraday-net_http (3.0.0) + hashie (5.0.0) + jwt (2.5.0) multi_xml (0.6.0) - multipart-post (2.1.1) - oauth2 (1.4.4) - faraday (>= 0.8, < 2.0) + oauth2 (2.0.7) + faraday (>= 0.17.3, < 3.0) jwt (>= 1.0, < 3.0) - multi_json (~> 1.3) multi_xml (~> 0.5) rack (>= 1.2, < 3) - omniauth (1.9.1) + rash_alt (>= 0.4, < 1) + version_gem (~> 1.1) + omniauth (2.1.0) hashie (>= 3.4.6) - rack (>= 1.6.2, < 3) - omniauth-oauth2 (1.7.0) - oauth2 (~> 1.4) - omniauth (~> 1.9) - rack (2.2.3) + rack (>= 2.2.3) + rack-protection + omniauth-oauth2 (1.8.0) + oauth2 (>= 1.4, < 3) + omniauth (~> 2.0) + rack (2.2.4) + rack-protection (2.2.2) + rack rake (13.0.1) + rash_alt (0.4.12) + hashie (>= 3.4) rspec (3.10.0) rspec-core (~> 3.10.0) rspec-expectations (~> 3.10.0) @@ -44,7 +49,8 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.10.0) rspec-support (3.10.0) - ruby2_keywords (0.0.2) + ruby2_keywords (0.0.5) + version_gem (1.1.0) PLATFORMS ruby diff --git a/omniauth-jane.gemspec b/omniauth-jane.gemspec index 45f6aaa..5e08a80 100644 --- a/omniauth-jane.gemspec +++ b/omniauth-jane.gemspec @@ -15,6 +15,6 @@ Gem::Specification.new do |gem| gem.require_paths = ["lib"] gem.version = OmniAuth::Jane::VERSION - gem.add_dependency 'omniauth', '~> 1.9' + gem.add_dependency 'omniauth', '>= 1.9', '< 3.0' gem.add_dependency 'omniauth-oauth2', '~> 1.5' end