Skip to content

Commit 0ec2984

Browse files
Merge branch 'main' into dependabot/github_actions/github/codeql-action-3.28.13
2 parents 5ac12e1 + b03a344 commit 0ec2984

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

.cspell.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ words:
3838
- gemfile
3939
- Gitter
4040
- gruf
41+
- hibachrach
4142
- HTTPX
4243
- httpx
4344
- instrumenter

.toys/.data/releases.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,3 +255,7 @@ gems:
255255
directory: resources/google_cloud_platform
256256
version_rb_path: lib/opentelemetry/resource/detector/google_cloud_platform/version.rb
257257
version_constant: [OpenTelemetry, Resource, Detector, GoogleCloudPlatform, VERSION]
258+
259+
- name: opentelemetry-instrumentation-grpc
260+
directory: instrumentation/grpc
261+
version_constant: [OpenTelemetry, Instrumentation, Grpc, VERSION]

instrumentation/grpc/CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Release History: opentelemetry-instrumentation-grpc
22

3-
### v0.2.0 / 2025-01-16
3+
### v0.2.0 / 2025-04-02
44

5-
* BREAKING CHANGE: Set minimum supported version to Ruby 3.1
6-
7-
* ADDED: Set minimum supported version to Ruby 3.1
5+
* ADDED: Add gRPC trace demonstration
6+
* ADDED: Migrate gRPC instrumentation to OpenTelemetry tooling
7+
* ADDED: Transferred ownership of the gem from @hibachrach to OpenTelemetry
88

99
### v0.1.3 / 2024-09-11
1010

instrumentation/grpc/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# OpenTelemetry gRPC Instrumentation
2-
> [!CAUTION]
3-
> This gem is not ready for release by the open-telemetry org yet, but other versions are available on RubyGems
42

53
[![Gem Version](https://badge.fury.io/rb/opentelemetry-instrumentation-grpc.svg)](https://badge.fury.io/rb/opentelemetry-instrumentation-grpc)
64
[![GitHub Actions CI Status](https://github.com/hibachrach/opentelemetry-instrumentation-grpc/actions/workflows/main.yml/badge.svg)](https://github.com/hibachrach/opentelemetry-instrumentation-grpc/actions?query=branch%3Amain)

instrumentation/grpc/opentelemetry-instrumentation-grpc.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
3333
spec.require_paths = ['lib']
3434

3535
# Uncomment to register a new dependency of your gem
36-
spec.add_dependency 'opentelemetry-api', '~> 1.2'
36+
spec.add_dependency 'opentelemetry-api', '~> 1.0'
3737
spec.add_dependency 'opentelemetry-instrumentation-base', '~> 0.23.0'
3838
# For more information and examples about making a new gem, check out our
3939
# guide at: https://bundler.io/guides/creating_gem.html

releases/Gemfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,8 @@ Dir['../propagator/**/version.rb'].each do |f|
4747
gem "opentelemetry-propagator-#{name}", version
4848
end
4949

50-
excluded_instrumentations = %w[grpc]
5150
Dir['../instrumentation/**/version.rb'].each do |f|
5251
name = f.match(%r{instrumentation/(\w+)/lib})[1]
53-
next if excluded_instrumentations.include?(name)
5452

5553
version = File.read(f).match(/VERSION = '([\d\.]+)'/)[1]
5654
gem "opentelemetry-instrumentation-#{name}", version

0 commit comments

Comments
 (0)