diff --git a/instrumentation/all/CHANGELOG.md b/instrumentation/all/CHANGELOG.md index b928e55936..11ea92b7e5 100644 --- a/instrumentation/all/CHANGELOG.md +++ b/instrumentation/all/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History: opentelemetry-instrumentation-all +### v0.78.0 / 2025-06-17 + +* ADDED: Add `OTEL_SEMCONV_STABILITY_OPT_IN` environment variable to HTTP.rb instrumentation [#1547](https://github.com/open-telemetry/opentelemetry-ruby-contrib/pull/1547) + ### v0.77.0 / 2025-06-03 * ADDED: Suppress internal spans with Faraday instrumentation diff --git a/instrumentation/all/lib/opentelemetry/instrumentation/all/version.rb b/instrumentation/all/lib/opentelemetry/instrumentation/all/version.rb index 0899e10fee..ba0904497f 100644 --- a/instrumentation/all/lib/opentelemetry/instrumentation/all/version.rb +++ b/instrumentation/all/lib/opentelemetry/instrumentation/all/version.rb @@ -7,7 +7,7 @@ module OpenTelemetry module Instrumentation module All - VERSION = '0.77.0' + VERSION = '0.78.0' end end end diff --git a/instrumentation/all/opentelemetry-instrumentation-all.gemspec b/instrumentation/all/opentelemetry-instrumentation-all.gemspec index a7ba5b71c1..d82679955c 100644 --- a/instrumentation/all/opentelemetry-instrumentation-all.gemspec +++ b/instrumentation/all/opentelemetry-instrumentation-all.gemspec @@ -40,7 +40,7 @@ Gem::Specification.new do |spec| spec.add_dependency 'opentelemetry-instrumentation-graphql', '~> 0.29.0' spec.add_dependency 'opentelemetry-instrumentation-grpc', '~> 0.2.0' spec.add_dependency 'opentelemetry-instrumentation-gruf', '~> 0.3.0' - spec.add_dependency 'opentelemetry-instrumentation-http', '~> 0.24.0' + spec.add_dependency 'opentelemetry-instrumentation-http', '~> 0.25.0' spec.add_dependency 'opentelemetry-instrumentation-http_client', '~> 0.23.0' spec.add_dependency 'opentelemetry-instrumentation-koala', '~> 0.21.0' spec.add_dependency 'opentelemetry-instrumentation-lmdb', '~> 0.23.0' diff --git a/instrumentation/http/CHANGELOG.md b/instrumentation/http/CHANGELOG.md index 3cb0602ae4..22ffdfe92e 100644 --- a/instrumentation/http/CHANGELOG.md +++ b/instrumentation/http/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History: opentelemetry-instrumentation-http +### v0.25.0 / 2025-06-17 + +* ADDED: Add `OTEL_SEMCONV_STABILITY_OPT_IN` environment variable [#1547](https://github.com/open-telemetry/opentelemetry-ruby-contrib/pull/1547) + ### v0.24.0 / 2025-01-16 * BREAKING CHANGE: Set minimum supported version to Ruby 3.1 @@ -24,28 +28,28 @@ ### v0.23.1 / 2023-06-05 -* FIXED: Base config options +* FIXED: Base config options ### v0.23.0 / 2023-05-15 -* ADDED: Add span_preprocessor hook +* ADDED: Add span_preprocessor hook ### v0.22.0 / 2023-04-17 -* BREAKING CHANGE: Drop support for EoL Ruby 2.7 +* BREAKING CHANGE: Drop support for EoL Ruby 2.7 -* ADDED: Drop support for EoL Ruby 2.7 +* ADDED: Drop support for EoL Ruby 2.7 ### v0.21.0 / 2023-01-14 -* ADDED: Add request/response hooks to more http clients -* DOCS: Fix gem homepage -* DOCS: More gem documentation fixes +* ADDED: Add request/response hooks to more http clients +* DOCS: Fix gem homepage +* DOCS: More gem documentation fixes ### v0.20.0 / 2022-06-09 * Upgrading Base dependency version -* FIXED: Broken test file requirements +* FIXED: Broken test file requirements ### v0.19.6 / 2022-05-05 @@ -53,15 +57,15 @@ ### v0.19.5 / 2022-05-02 -* FIXED: RubyGems Fallback +* FIXED: RubyGems Fallback ### v0.19.4 / 2022-02-02 -* FIXED: Excessive hash creation on context attr merging +* FIXED: Excessive hash creation on context attr merging ### v0.19.3 / 2021-12-01 -* FIXED: Change net attribute names to match the semantic conventions spec for http +* FIXED: Change net attribute names to match the semantic conventions spec for http ### v0.19.2 / 2021-09-29 @@ -73,9 +77,9 @@ ### v0.19.0 / 2021-06-23 -* BREAKING CHANGE: Total order constraint on span.status= +* BREAKING CHANGE: Total order constraint on span.status= -* FIXED: Total order constraint on span.status= +* FIXED: Total order constraint on span.status= ### v0.18.0 / 2021-05-21 diff --git a/instrumentation/http/lib/opentelemetry/instrumentation/http/version.rb b/instrumentation/http/lib/opentelemetry/instrumentation/http/version.rb index 7fb6283f32..f00ec3c478 100644 --- a/instrumentation/http/lib/opentelemetry/instrumentation/http/version.rb +++ b/instrumentation/http/lib/opentelemetry/instrumentation/http/version.rb @@ -7,7 +7,7 @@ module OpenTelemetry module Instrumentation module HTTP - VERSION = '0.24.0' + VERSION = '0.25.0' end end end