Bump Omniauth dependencies to v2 (#13)

master
Brent Offner 2021-05-17 19:19:58 -04:00 committed by GitHub
parent cc9ea059a8
commit 1354d31733
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 44 additions and 34 deletions

View File

@ -1,59 +1,69 @@
PATH
remote: .
specs:
omniauth-keycloak (1.2.0)
json-jwt (~> 1.12)
omniauth (~> 1.9.0)
omniauth-oauth2 (~> 1.6.0)
omniauth-keycloak (1.3.1)
json-jwt (~> 1.13.0)
omniauth (~> 2.0.4)
omniauth-oauth2 (~> 1.7.1)
GEM
remote: https://rubygems.org/
specs:
activesupport (6.0.3.1)
activesupport (6.1.3.2)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
zeitwerk (~> 2.2, >= 2.2.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
addressable (2.5.2)
public_suffix (>= 2.0.2, < 4.0)
aes_key_wrap (1.0.1)
bindata (2.4.7)
concurrent-ruby (1.1.6)
aes_key_wrap (1.1.0)
bindata (2.4.9)
concurrent-ruby (1.1.8)
crack (0.4.3)
safe_yaml (~> 1.0.0)
diff-lcs (1.3)
docile (1.3.1)
faraday (1.0.1)
faraday (1.4.1)
faraday-excon (~> 1.1)
faraday-net_http (~> 1.0)
faraday-net_http_persistent (~> 1.1)
multipart-post (>= 1.2, < 3)
ruby2_keywords (>= 0.0.4)
faraday-excon (1.1.0)
faraday-net_http (1.0.1)
faraday-net_http_persistent (1.1.0)
hashdiff (0.3.7)
hashie (4.1.0)
i18n (1.8.2)
i18n (1.8.10)
concurrent-ruby (~> 1.0)
json (2.3.1)
json-jwt (1.12.0)
json-jwt (1.13.0)
activesupport (>= 4.2)
aes_key_wrap
bindata
jwt (2.2.1)
minitest (5.14.1)
multi_json (1.14.1)
jwt (2.2.3)
minitest (5.14.4)
multi_json (1.15.0)
multi_xml (0.6.0)
multipart-post (2.1.1)
oauth2 (1.4.4)
oauth2 (1.4.7)
faraday (>= 0.8, < 2.0)
jwt (>= 1.0, < 3.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
omniauth (1.9.1)
omniauth (2.0.4)
hashie (>= 3.4.6)
rack (>= 1.6.2, < 3)
omniauth-oauth2 (1.6.0)
oauth2 (~> 1.1)
omniauth (~> 1.9)
rack-protection
omniauth-oauth2 (1.7.1)
oauth2 (~> 1.4)
omniauth (>= 1.9, < 3)
public_suffix (3.0.3)
rack (2.2.3)
rack-protection (2.1.0)
rack
rake (13.0.1)
rspec (3.8.0)
rspec-core (~> 3.8.0)
@ -68,26 +78,26 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0)
rspec-support (3.8.0)
ruby2_keywords (0.0.4)
safe_yaml (1.0.4)
simplecov (0.16.1)
docile (~> 1.1)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
thread_safe (0.3.6)
tzinfo (1.2.7)
thread_safe (~> 0.1)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
webmock (3.4.2)
addressable (>= 2.3.6)
crack (>= 0.3.2)
hashdiff
zeitwerk (2.3.0)
zeitwerk (2.4.2)
PLATFORMS
ruby
DEPENDENCIES
bundler (~> 1.16)
bundler (~> 2.2)
omniauth-keycloak!
rake (~> 13.0)
rspec (~> 3.0)
@ -95,4 +105,4 @@ DEPENDENCIES
webmock (~> 3.4.2)
BUNDLED WITH
2.1.4
2.2.9

View File

@ -1,5 +1,5 @@
module Omniauth
module Keycloak
VERSION = "1.2.1"
VERSION = "1.3.1"
end
end

View File

@ -23,11 +23,11 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]
spec.add_dependency "omniauth", "~> 1.9.0"
spec.add_dependency "omniauth-oauth2", "~> 1.6.0"
spec.add_dependency "json-jwt", "~> 1.12"
spec.add_dependency "omniauth", "~> 2.0.4"
spec.add_dependency "omniauth-oauth2", "~> 1.7.1"
spec.add_dependency "json-jwt", "~> 1.13.0"
spec.add_development_dependency "bundler", "~> 1.16"
spec.add_development_dependency "bundler", "~> 2.2"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency 'simplecov', '~> 0.16.1'