From 68ec19606e71a14d38f31f1c1d79d5131359289a Mon Sep 17 00:00:00 2001 From: Joseph Azevedo Date: Thu, 25 Jul 2024 15:31:20 -0700 Subject: [PATCH 1/2] relax the version requirement for 'google-protobuf' to allow using newer 'grpc' gem --- Gemfile | 2 +- examples/Gemfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index c55c81ac..7c08e138 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,5 @@ source 'https://rubygems.org' -gem 'google-protobuf', '~> 3.19.6' +gem 'google-protobuf', '~> 3' gemspec diff --git a/examples/Gemfile b/examples/Gemfile index 4a744598..381a2070 100644 --- a/examples/Gemfile +++ b/examples/Gemfile @@ -4,6 +4,6 @@ gem 'temporal-ruby', path: '../' gem 'dry-types', '>= 1.7.2' gem 'dry-struct', '~> 1.6.0' -gem 'google-protobuf', '~> 3.19.6' +gem 'google-protobuf', '~> 3' gem 'rspec', group: :test From 547839e6cf5d22e3b6c588714b0a1c396f0f3de6 Mon Sep 17 00:00:00 2001 From: Joseph Azevedo Date: Thu, 25 Jul 2024 17:14:25 -0700 Subject: [PATCH 2/2] use major.minor to have min minor version requirement --- Gemfile | 2 +- examples/Gemfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 7c08e138..a98c51b0 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,5 @@ source 'https://rubygems.org' -gem 'google-protobuf', '~> 3' +gem 'google-protobuf', '~> 3.19' gemspec diff --git a/examples/Gemfile b/examples/Gemfile index 381a2070..c6fc0199 100644 --- a/examples/Gemfile +++ b/examples/Gemfile @@ -4,6 +4,6 @@ gem 'temporal-ruby', path: '../' gem 'dry-types', '>= 1.7.2' gem 'dry-struct', '~> 1.6.0' -gem 'google-protobuf', '~> 3' +gem 'google-protobuf', '~> 3.19' gem 'rspec', group: :test