Upgrade Grape v1.1.0 to v1.3.2
This brings in Ruby 2.7 suport and a number of fixes: https://github.com/ruby-grape/grape/blob/master/CHANGELOG.md 1. Move all inherited Grape::API -> Grape::API::Instance 2. Remove use of Virtus since this has been removed from Grape. 3. Extract Rack::Response from API error 4. Grape v1.2.3 pulled in a fix used in SafeFile: https://github.com/ruby-grape/grape/pull/1844, so we no longer need to maintain our custom type. 5. Adapt WorkhorseFile with the latest changes to make custom types work with Grape and dry-types. 6. Ensure Array[String] is coerced properly. The change from Virtus to dry-types now requires all strings to be coerced to arrays. Before this was done within Virtus. 7. Coerce Array[Integer] types to arrays of integers The change from Virtus to dry-types now requires all strings to be coerced to arrays of integers. Before this was done within Virtus.
Showing
... | @@ -19,7 +19,7 @@ gem 'default_value_for', '~> 3.3.0' | ... | @@ -19,7 +19,7 @@ gem 'default_value_for', '~> 3.3.0' |
gem 'pg', '~> 1.1' | gem 'pg', '~> 1.1' | ||
gem 'rugged', '~> 0.28' | gem 'rugged', '~> 0.28' | ||
gem 'grape-path-helpers', '~> 1.2' | gem 'grape-path-helpers', '~> 1.3' | ||
gem 'faraday', '~> 0.12' | gem 'faraday', '~> 0.12' | ||
gem 'marginalia', '~> 1.8.0' | gem 'marginalia', '~> 1.8.0' | ||
... | @@ -82,7 +82,7 @@ gem 'gitlab_omniauth-ldap', '~> 2.1.1', require: 'omniauth-ldap' | ... | @@ -82,7 +82,7 @@ gem 'gitlab_omniauth-ldap', '~> 2.1.1', require: 'omniauth-ldap' |
gem 'net-ldap' | gem 'net-ldap' | ||
# API | # API | ||
gem 'grape', '~> 1.1.0' | gem 'grape', '~> 1.3.2' | ||
gem 'grape-entity', '~> 0.7.1' | gem 'grape-entity', '~> 0.7.1' | ||
gem 'rack-cors', '~> 1.0.6', require: 'rack/cors' | gem 'rack-cors', '~> 1.0.6', require: 'rack/cors' | ||
... | ... |
Please register or sign in to comment