Fix Asana integration
Asana deprecated support for integer task IDs and moved to string IDs. We need to update the ruby-asana gem and modify the regexp to match strings. Users attempting to use the current implementation would see: ``` task: Not a Long: ``` Closes https://gitlab.com/gitlab-org/gitlab/issues/38083
Showing
... | ... | @@ -242,7 +242,7 @@ gem 'slack-notifier', '~> 1.5.1' |
gem 'hangouts-chat', '~> 0.0.5' | ||
# Asana integration | ||
gem 'asana', '~> 0.8.1' | ||
gem 'asana', '~> 0.9' | ||
# FogBugz integration | ||
gem 'ruby-fogbugz', '~> 0.2.1' | ||
... | ... |
Please register or sign in to comment