Update gems to use Faraday v1.0.1
This commit updates all gems that need Faraday v1.x and updates to Faraday v1.0.1: faraday v1.0.1: - Upgrade notes: https://github.com/lostisland/faraday/blob/master/UPGRADING.md - Changelog: https://github.com/lostisland/faraday/blob/master/CHANGELOG.md We don't appear to have any custom `Faraday::Adapter` or uses of `Faraday::Error` in our dependencies. gitlab-fog-azure-rm v0.9.0: This updates to the latest Azure storage libraries so that this gem no longer depends on a preview Gem release dated over 3 years ago: * Diff: https://gitlab.com/gitlab-org/gitlab-fog-azure-rm/-/compare/v0.8.1...v0.9.0 asana v0.10.2: This removes a few Ruby 2.7 deprecations and updates to Faraday v1.0: * Diff: https://github.com/Asana/ruby-asana/compare/v0.10.0..v0.10.2 sentry-raven v3.0.4: This fixes a few minor bugs: * Diff: https://github.com/getsentry/raven-ruby/compare/v2.9.0..v3.0.0 * Changelog: https://github.com/getsentry/raven-ruby/blob/master/CHANGELOG.md danger v8.0.1: This fixes a number of issues (https://github.com/danger/danger/blob/master/CHANGELOG.md), but we aleady use this in a separate image (registry.gitlab.com/gitlab-org/gitlab-build-images:danger). This is only needed for local development. elasticsearch v6.8.2: https://github.com/elastic/elasticsearch-ruby/compare/v6.8.0..v6.8.2 Closes https://gitlab.com/gitlab-org/gitlab/-/issues/224296
Showing
... | ... | @@ -21,7 +21,7 @@ gem 'pg', '~> 1.1' |
gem 'rugged', '~> 0.28' | ||
gem 'grape-path-helpers', '~> 1.3' | ||
gem 'faraday', '~> 0.12' | ||
gem 'faraday', '~> 1.0' | ||
gem 'marginalia', '~> 1.9.0' | ||
# Authentication libraries | ||
... | ... | @@ -119,7 +119,7 @@ gem 'fog-local', '~> 0.6' |
gem 'fog-openstack', '~> 1.0' | ||
gem 'fog-rackspace', '~> 0.1.1' | ||
gem 'fog-aliyun', '~> 0.3' | ||
gem 'gitlab-fog-azure-rm', '~> 0.8', require: false | ||
gem 'gitlab-fog-azure-rm', '~> 0.9', require: false | ||
# for Google storage | ||
gem 'google-api-client', '~> 0.33' | ||
... | ... | @@ -133,7 +133,7 @@ gem 'seed-fu', '~> 2.3.7' |
# Search | ||
gem 'elasticsearch-model', '~> 6.1' | ||
gem 'elasticsearch-rails', '~> 6.1', require: 'elasticsearch/rails/instrumentation' | ||
gem 'elasticsearch-api', '~> 6.8' | ||
gem 'elasticsearch-api', '~> 6.8.2' | ||
gem 'aws-sdk-core', '~> 3' | ||
gem 'aws-sdk-cloudformation', '~> 1' | ||
gem 'aws-sdk-s3', '~> 1' | ||
... | ... | @@ -249,9 +249,7 @@ gem 'slack-messenger', '~> 2.3.3' |
gem 'hangouts-chat', '~> 0.0.5' | ||
# Asana integration | ||
# asana 0.10.1 needs faraday 1.0 | ||
# https://gitlab.com/gitlab-org/gitlab/-/issues/224296 | ||
gem 'asana', '0.10.0' | ||
gem 'asana', '0.10.2' | ||
# FogBugz integration | ||
gem 'ruby-fogbugz', '~> 0.2.1' | ||
... | ... | @@ -304,7 +302,7 @@ gem "gitlab-license", "~> 1.0" |
gem 'rack-attack', '~> 6.3.0' | ||
# Sentry integration | ||
gem 'sentry-raven', '~> 2.9' | ||
gem 'sentry-raven', '~> 3.0' | ||
gem 'premailer-rails', '~> 1.10.3' | ||
... | ... | @@ -337,7 +335,7 @@ end |
group :development do | ||
gem 'brakeman', '~> 4.2', require: false | ||
gem 'danger', '~> 6.0', require: false | ||
gem 'danger', '~> 8.0', require: false | ||
gem 'letter_opener_web', '~> 1.3.4' | ||
... | ... |
Please register or sign in to comment