From ee2b80ca6a8b581a861d94aa827ff7399b189df1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Feb 2023 19:52:05 +0000 Subject: [PATCH] Update omniauth requirement from ~> 1.0 to >= 1, < 3 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.1) --- updated-dependencies: - dependency-name: omniauth dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 19 +++++++++++-------- omniauth-alfred.gemspec | 2 +- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index a0b0ad1..13be75b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,7 +2,7 @@ PATH remote: . specs: omniauth-alfred (0.0.0) - omniauth (~> 1.0) + omniauth (>= 1, < 3) omniauth-oauth2 (~> 1.0) GEM @@ -10,7 +10,7 @@ GEM specs: faraday (1.0.1) multipart-post (>= 1.2, < 3) - hashie (4.1.0) + hashie (5.0.0) jwt (2.2.1) multi_json (1.14.1) multi_xml (0.6.0) @@ -21,13 +21,16 @@ GEM multi_json (~> 1.3) multi_xml (~> 0.5) rack (>= 1.2, < 3) - omniauth (1.9.1) + omniauth (2.1.1) hashie (>= 3.4.6) - rack (>= 1.6.2, < 3) - omniauth-oauth2 (1.6.0) - oauth2 (~> 1.1) - omniauth (~> 1.9) - rack (2.2.2) + rack (>= 2.2.3) + rack-protection + omniauth-oauth2 (1.8.0) + oauth2 (>= 1.4, < 3) + omniauth (~> 2.0) + rack (2.2.6.2) + rack-protection (3.0.5) + rack PLATFORMS ruby diff --git a/omniauth-alfred.gemspec b/omniauth-alfred.gemspec index 2e59566..555d75b 100644 --- a/omniauth-alfred.gemspec +++ b/omniauth-alfred.gemspec @@ -16,6 +16,6 @@ Gem::Specification.new do |s| s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.require_paths = ["lib"] - s.add_dependency 'omniauth', '~> 1.0' + s.add_dependency 'omniauth', '>= 1', '< 3' s.add_dependency 'omniauth-oauth2', '~> 1.0' end