From 6eaadb4f924b2a85a7700ef384976c8bb7a649ea Mon Sep 17 00:00:00 2001 From: Aleksandr Starovojtov <37301326+AS-AlStar@users.noreply.github.com> Date: Sun, 18 Feb 2024 19:32:34 +0300 Subject: [PATCH] feat: Add support gruf 2.19 (#872) --- .github/workflows/ci-instrumentation-canary.yml | 2 -- .github/workflows/ci-instrumentation.yml | 2 -- instrumentation/gruf/Appraisals | 12 ++++++++---- .../gruf/opentelemetry-instrumentation-gruf.gemspec | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci-instrumentation-canary.yml b/.github/workflows/ci-instrumentation-canary.yml index a731bffd2..e3e1afe16 100644 --- a/.github/workflows/ci-instrumentation-canary.yml +++ b/.github/workflows/ci-instrumentation-canary.yml @@ -60,8 +60,6 @@ jobs: steps: - uses: actions/checkout@v4 - name: "Test Ruby 3.3" - # BLOCKED BY: https://github.com/bigcommerce/gruf/pull/197 - if: "${{ matrix.gem != 'gruf' }}" uses: ./.github/actions/test_gem with: gem: "opentelemetry-instrumentation-${{ matrix.gem }}" diff --git a/.github/workflows/ci-instrumentation.yml b/.github/workflows/ci-instrumentation.yml index ebfefb309..59088633a 100644 --- a/.github/workflows/ci-instrumentation.yml +++ b/.github/workflows/ci-instrumentation.yml @@ -51,8 +51,6 @@ jobs: steps: - uses: actions/checkout@v4 - name: "Test Ruby 3.3" - # BLOCKED BY: https://github.com/bigcommerce/gruf/pull/197 - if: "${{ matrix.gem != 'gruf' }}" uses: ./.github/actions/test_gem with: gem: "opentelemetry-instrumentation-${{ matrix.gem }}" diff --git a/instrumentation/gruf/Appraisals b/instrumentation/gruf/Appraisals index 8501003fc..c07e47bb9 100644 --- a/instrumentation/gruf/Appraisals +++ b/instrumentation/gruf/Appraisals @@ -4,10 +4,14 @@ # # SPDX-License-Identifier: Apache-2.0 -appraise 'gruf-2.15.1' do - gem 'gruf', '~> 2.15.1' +appraise 'gruf-2.17' do + gem 'gruf', '~> 2.17.0' end -appraise 'gruf-2.16.1' do - gem 'gruf', '~> 2.16.1' +appraise 'gruf-2.18' do + gem 'gruf', '~> 2.18.0' +end + +appraise 'gruf-2.19' do + gem 'gruf', '~> 2.19.0' end diff --git a/instrumentation/gruf/opentelemetry-instrumentation-gruf.gemspec b/instrumentation/gruf/opentelemetry-instrumentation-gruf.gemspec index 06b9aa58f..229b76ff1 100644 --- a/instrumentation/gruf/opentelemetry-instrumentation-gruf.gemspec +++ b/instrumentation/gruf/opentelemetry-instrumentation-gruf.gemspec @@ -31,7 +31,7 @@ Gem::Specification.new do |spec| spec.add_development_dependency 'appraisal', '~> 2.5' spec.add_development_dependency 'bundler', '>= 1.17' spec.add_development_dependency 'grpc_mock' - spec.add_development_dependency 'gruf', '>= 2.15.1' + spec.add_development_dependency 'gruf', '>= 2.19.0' spec.add_development_dependency 'minitest', '~> 5.0' spec.add_development_dependency 'opentelemetry-sdk', '~> 1.0' spec.add_development_dependency 'opentelemetry-test-helpers'