Skip to content

Commit 6bb93f5

Browse files
committed
Merge branch 'add-httpx-to-all' of github.com:kaylareopelle/opentelemetry-ruby-contrib into add-httpx-to-all
2 parents c1dc680 + 125152f commit 6bb93f5

File tree

7 files changed

+17
-5
lines changed

7 files changed

+17
-5
lines changed

instrumentation/all/opentelemetry-instrumentation-all.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ Gem::Specification.new do |spec|
3434
spec.add_dependency 'opentelemetry-instrumentation-dalli', '~> 0.27.0'
3535
spec.add_dependency 'opentelemetry-instrumentation-delayed_job', '~> 0.23.0'
3636
spec.add_dependency 'opentelemetry-instrumentation-ethon', '~> 0.23.0'
37-
spec.add_dependency 'opentelemetry-instrumentation-excon', '~> 0.23.0'
38-
spec.add_dependency 'opentelemetry-instrumentation-faraday', '~> 0.27.0'
37+
spec.add_dependency 'opentelemetry-instrumentation-excon', '~> 0.24.0'
38+
spec.add_dependency 'opentelemetry-instrumentation-faraday', '~> 0.28.0'
3939
spec.add_dependency 'opentelemetry-instrumentation-grape', '~> 0.3.0'
4040
spec.add_dependency 'opentelemetry-instrumentation-graphql', '~> 0.29.0'
4141
spec.add_dependency 'opentelemetry-instrumentation-grpc', '~> 0.2.0'

instrumentation/excon/CHANGELOG.md

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

3+
### v0.24.0 / 2025-08-12
4+
5+
* ADDED: Add Excon `OTEL_SEMCONV_STABILITY_OPT_IN` environment variable [#1569](https://github.com/open-telemetry/opentelemetry-ruby-contrib/pull/1569)
6+
37
### v0.23.0 / 2025-01-16
48

59
* BREAKING CHANGE: Set minimum supported version to Ruby 3.1

instrumentation/excon/lib/opentelemetry/instrumentation/excon/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
module OpenTelemetry
88
module Instrumentation
99
module Excon
10-
VERSION = '0.23.0'
10+
VERSION = '0.24.0'
1111
end
1212
end
1313
end

instrumentation/faraday/CHANGELOG.md

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

3+
### v0.28.0 / 2025-08-12
4+
5+
* ADDED: Add Faraday `OTEL_SEMCONV_STABILITY_OPT_IN` environment variable [#1592](https://github.com/open-telemetry/opentelemetry-ruby-contrib/pull/1592)
6+
37
### v0.27.0 / 2025-06-03
48

59
* ADDED: Suppress internal spans with Faraday instrumentation

instrumentation/faraday/lib/opentelemetry/instrumentation/faraday/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
module OpenTelemetry
88
module Instrumentation
99
module Faraday
10-
VERSION = '0.27.0'
10+
VERSION = '0.28.0'
1111
end
1212
end
1313
end

instrumentation/httpx/CHANGELOG.md

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

3+
### v0.3.0 / 2025-08-12
4+
5+
* ADDED: HTTPX `OTEL_SEMCONV_STABILITY_OPT_IN` environment variable [#1589](https://github.com/open-telemetry/opentelemetry-ruby-contrib/pull/1589)
6+
37
### v0.2.1 / 2025-04-29
48

59
* FIXED: Httpx instrumentation trace context propagation

instrumentation/httpx/lib/opentelemetry/instrumentation/httpx/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
module OpenTelemetry
88
module Instrumentation
99
module HTTPX
10-
VERSION = '0.2.1'
10+
VERSION = '0.3.0'
1111
end
1212
end
1313
end

0 commit comments

Comments
 (0)