Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions instrumentation/all/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module All
VERSION = '0.77.0'
VERSION = '0.78.0'
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
30 changes: 17 additions & 13 deletions instrumentation/http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-http

### v0.25.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.24.0 / 2025-01-16

* BREAKING CHANGE: Set minimum supported version to Ruby 3.1
Expand All @@ -24,44 +28,44 @@

### 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

* (No significant changes)

### 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

Expand All @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module HTTP
VERSION = '0.24.0'
VERSION = '0.25.0'
end
end
end
Loading