Skip to content

Commit 2edc1fd

Browse files
Merge branch 'main' into dependabot/github_actions/github/codeql-action-4.30.8
2 parents 6ef1542 + 4e838a7 commit 2edc1fd

File tree

3 files changed

+25
-8
lines changed

3 files changed

+25
-8
lines changed

.github/dependabot.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,25 @@ updates:
55
directory: "/"
66
schedule:
77
interval: daily
8+
# Update all dependencies - processes from root to handle path dependencies correctly
89
- package-ecosystem: bundler
910
directory: "/"
1011
schedule:
1112
interval: weekly
13+
ignore:
14+
# Ignore internal instrumentation interdependencies managed via local paths in Gemfiles
15+
- dependency-name: "opentelemetry-instrumentation-*"
16+
- dependency-name: "opentelemetry-helpers-*"
17+
- dependency-name: "opentelemetry-processor-*"
18+
- dependency-name: "opentelemetry-propagator-*"
19+
- dependency-name: "opentelemetry-sampler-*"
20+
- dependency-name: "opentelemetry-resource-detector-*"
1221
groups:
13-
all-gems:
22+
production-dependencies:
23+
dependency-type: "production"
1424
patterns:
15-
- "**/Gemfile"
25+
- "*"
26+
development-dependencies:
27+
dependency-type: "development"
28+
patterns:
29+
- "*"

.toys/.data/releases.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,10 @@ gems:
193193
directory: instrumentation/faraday
194194
version_constant: [OpenTelemetry, Instrumentation, Faraday, VERSION]
195195

196+
- name: opentelemetry-instrumentation-grpc
197+
directory: instrumentation/grpc
198+
version_constant: [OpenTelemetry, Instrumentation, Grpc, VERSION]
199+
196200
- name: opentelemetry-instrumentation-mongo
197201
directory: instrumentation/mongo
198202
version_constant: [OpenTelemetry, Instrumentation, Mongo, VERSION]
@@ -290,6 +294,6 @@ gems:
290294
version_rb_path: lib/opentelemetry/resource/detector/google_cloud_platform/version.rb
291295
version_constant: [OpenTelemetry, Resource, Detector, GoogleCloudPlatform, VERSION]
292296

293-
- name: opentelemetry-instrumentation-grpc
294-
directory: instrumentation/grpc
295-
version_constant: [OpenTelemetry, Instrumentation, Grpc, VERSION]
297+
- name: opentelemetry-sampler-xray
298+
directory: sampler/xray
299+
version_constant: [OpenTelemetry, Sampler, XRay, VERSION]

CONTRIBUTING.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,8 @@ This repository contains multiple Ruby gems:
6969

7070
* Various instrumentation gems located in subdirectories of `instrumentation`
7171
* Various resource detector gems located in subdirectories of `resources`
72-
* `opentelemetry-propagator-xray` located in the `propagator/xray` directory
73-
* `opentelemetry-propagator-ottrace` located in the `propagator/ottrace` directory
74-
* `opentelemetry-propagator-google_cloud_trace_context` located in the `propagator/google_cloud_trace_context` directory
72+
* Various propagation gems located in the subdirectories of `propagator`
73+
* `opentelemetry-sampler-xray` located in the `sampler/xray` directory
7574

7675
Each of these gems has its configuration and tests.
7776

0 commit comments

Comments
 (0)