Skip to content

Commit

Permalink
Lock gRPC version for older Rubies (#1045)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcotc authored May 21, 2020
1 parent d09b203 commit a8b751e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ elsif Gem::Version.new('2.2.0') <= Gem::Version.new(RUBY_VERSION) \
gem 'faraday'
gem 'grape'
gem 'graphql', '< 1.9.4'
gem 'grpc'
gem 'grpc', '~> 1.21.0' # Last version to support Ruby < 2.3
gem 'hiredis'
gem 'mongo', '>= 2.8.0'
gem 'mysql2', '< 0.5', platform: :ruby
Expand Down Expand Up @@ -501,6 +501,7 @@ elsif Gem::Version.new('2.3.0') <= Gem::Version.new(RUBY_VERSION) \
gem 'grape'
gem 'graphql'
gem 'grpc'
gem 'google-protobuf', '~> 3.11.0' # Last version to support Ruby < 2.5
gem 'hiredis'
gem 'mongo', '>= 2.8.0'
gem 'mysql2', '< 0.5', platform: :ruby
Expand Down Expand Up @@ -579,6 +580,7 @@ elsif Gem::Version.new('2.4.0') <= Gem::Version.new(RUBY_VERSION) \
gem 'grape'
gem 'graphql'
gem 'grpc'
gem 'google-protobuf', '~> 3.11.0' # Last version to support Ruby < 2.5
gem 'hiredis'
gem 'mongo', '>= 2.8.0'
gem 'mysql2', '< 0.5', platform: :ruby
Expand Down

0 comments on commit a8b751e

Please sign in to comment.