Upgrade Omniauth and JWT gems to switch away from Google+ API
* omniauth-google-oauth2: Google will be deprecating its support for the Google+ API, which currently omniauth-google-oauth2 uses to retrieve user info. The bump in omniauth-google-oauth2 requires an upgrade to ruby-jwt v2+ to support the verification of multiple issue providers (https://github.com/zquestz/omniauth-google-oauth2/pull/345). * jwt: This has the most number of changes that need to be reviewed: https://github.com/jwt/ruby-jwt/blob/master/CHANGELOG.md * oauth2: Needed to support ruby-jwt v2+: https://github.com/oauth-xx/oauth2/blob/master/CHANGELOG.md * omniauth-azure-oauth2 needs a version bump to support ruby-jwt v2+. * omniauth: This version bump only involves backstage improvements: https://github.com/omniauth/omniauth/releases Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/55668
Showing
... | @@ -34,7 +34,7 @@ gem 'omniauth-cas3', '~> 1.1.4' | ... | @@ -34,7 +34,7 @@ gem 'omniauth-cas3', '~> 1.1.4' |
gem 'omniauth-facebook', '~> 4.0.0' | gem 'omniauth-facebook', '~> 4.0.0' | ||
gem 'omniauth-github', '~> 1.3' | gem 'omniauth-github', '~> 1.3' | ||
gem 'omniauth-gitlab', '~> 1.0.2' | gem 'omniauth-gitlab', '~> 1.0.2' | ||
gem 'omniauth-google-oauth2', '~> 0.5.3' | gem 'omniauth-google-oauth2', '~> 0.6.0' | ||
gem 'omniauth-kerberos', '~> 0.3.0', group: :kerberos | gem 'omniauth-kerberos', '~> 0.3.0', group: :kerberos | ||
gem 'omniauth-oauth2-generic', '~> 0.2.2' | gem 'omniauth-oauth2-generic', '~> 0.2.2' | ||
gem 'omniauth-saml', '~> 1.10' | gem 'omniauth-saml', '~> 1.10' | ||
... | @@ -43,7 +43,7 @@ gem 'omniauth-twitter', '~> 1.4' | ... | @@ -43,7 +43,7 @@ gem 'omniauth-twitter', '~> 1.4' |
gem 'omniauth_crowd', '~> 2.2.0' | gem 'omniauth_crowd', '~> 2.2.0' | ||
gem 'omniauth-authentiq', '~> 0.3.3' | gem 'omniauth-authentiq', '~> 0.3.3' | ||
gem 'rack-oauth2', '~> 1.2.1' | gem 'rack-oauth2', '~> 1.2.1' | ||
gem 'jwt', '~> 1.5.6' | gem 'jwt', '~> 2.1.0' | ||
# Spam and anti-bot protection | # Spam and anti-bot protection | ||
gem 'recaptcha', '~> 3.0', require: 'recaptcha/rails' | gem 'recaptcha', '~> 3.0', require: 'recaptcha/rails' | ||
... | ... |
Please register or sign in to comment