From 4f317d5143fc4cd1ad6b07880e65f7916831066b Mon Sep 17 00:00:00 2001 From: Stan Hu <stanhu@gmail.com> Date: Tue, 21 Jun 2022 23:50:35 -0700 Subject: [PATCH] Update asana gem to v0.10.13 to relax oauth2 dependency There are some minor updates to the asana gem, but we need to update to the oauth2 gem to v2.0 since the latter removes a call to MD5. Diff: https://github.com/Asana/ruby-asana/compare/v0.10.3..v0.10.13 Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/361284 Changelog: changed --- Gemfile | 2 +- Gemfile.lock | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index f0b9bd26c9a1b..04a3327aa457b 100644 --- a/Gemfile +++ b/Gemfile @@ -255,7 +255,7 @@ gem 'slack-messenger', '~> 2.3.4' gem 'hangouts-chat', '~> 0.0.5', require: 'hangouts_chat' # Asana integration -gem 'asana', '~> 0.10.3' +gem 'asana', '~> 0.10.13' # FogBugz integration gem 'ruby-fogbugz', '~> 0.2.1' diff --git a/Gemfile.lock b/Gemfile.lock index c0299cb525154..e9ebf663153bd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -83,11 +83,11 @@ GEM apollo_upload_server (2.1.0) actionpack (>= 4.2) graphql (>= 1.8) - asana (0.10.3) + asana (0.10.13) faraday (~> 1.0) faraday_middleware (~> 1.0) faraday_middleware-multi_json (~> 0.0) - oauth2 (~> 1.4) + oauth2 (>= 1.4, < 3) asciidoctor (2.0.15) asciidoctor-include-ext (0.4.0) asciidoctor (>= 1.5.6, < 3.0.0) @@ -1454,7 +1454,7 @@ DEPENDENCIES addressable (~> 2.8) akismet (~> 3.0) apollo_upload_server (~> 2.1.0) - asana (~> 0.10.3) + asana (~> 0.10.13) asciidoctor (~> 2.0.10) asciidoctor-include-ext (~> 0.4.0) asciidoctor-kroki (~> 0.5.0) -- GitLab