Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-api

### v1.6.0 / 2025-08-14

- ADDED: Add noop methods on Trace::Span for `attributes` and `events`

### v1.5.0 / 2025-02-20

- ADDED: Support 3.1 Min Version
Expand Down
2 changes: 1 addition & 1 deletion api/lib/opentelemetry/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

module OpenTelemetry
## Current OpenTelemetry version
VERSION = '1.5.0'
VERSION = '1.6.0'
end
4 changes: 2 additions & 2 deletions exporter/otlp-logs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Release History: opentelemetry-exporter-otlp-logs

### v0.2.1 / 2025-07-29
### v0.2.1 / 2025-08-14

* FIXED: Support hash bodies and attribute values in OTLP logs exporter
- FIXED: Support hash bodies and attribute values in OTLP logs exporter

### v0.2.0 / 2025-02-25

Expand Down
8 changes: 6 additions & 2 deletions exporter/otlp-metrics/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
# Release History: opentelemetry-exporter-otlp-metrics

### v0.6.0 / 2025-08-14

- ADDED: Add support for exporting asynchronous instruments

### v0.5.0 / 2025-06-23

* ADDED: Add exponential histogram in otlp metrics exporter
- ADDED: Add exponential histogram in otlp metrics exporter

### v0.4.1 / 2025-04-17

* FIXED: Update out-of-date google-protobuf-any
- FIXED: Update out-of-date google-protobuf-any

### v0.4.0 / 2025-02-25

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module Exporter
module OTLP
module Metrics
## Current OpenTelemetry OTLP exporter version
VERSION = '0.5.0'
VERSION = '0.6.0'
end
end
end
Expand Down
6 changes: 3 additions & 3 deletions logs_sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Release History: opentelemetry-logs-sdk

### v0.3.0 / 2025-07-29
### v0.3.0 / 2025-08-14

* ADDED: Update error message for invalid log record attribute
* ADDED: Set logs exporter default to OTLP
- ADDED: Update error message for invalid log record attribute
- ADDED: Set logs exporter default to OTLP

### v0.2.0 / 2025-02-25

Expand Down
5 changes: 5 additions & 0 deletions metrics_api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release History: opentelemetry-metrics-api

### v0.4.0 / 2025-08-14

- ADDED: Support asynchronous instruments: ObservableGauge, ObservableCounter and ObservableUpDownCounter
- FIXED: Update max instrument name length from 63 to 255 characters and allow `/` in instrument names

### v0.3.0 / 2025-02-25

- ADDED: Support 3.1 Min Version
Expand Down
2 changes: 1 addition & 1 deletion metrics_api/lib/opentelemetry/metrics/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
module OpenTelemetry
module Metrics
## Current OpenTelemetry metrics version
VERSION = '0.3.0'
VERSION = '0.4.0'
end
end
19 changes: 12 additions & 7 deletions metrics_sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,33 @@
# Release History: opentelemetry-metrics-sdk

### v0.7.4 / 2025-07-29
### v0.8.0 / 2025-08-14

* FIXED: Validate scale range and raise exception if out of bounds for exponential histograms
- BREAKING CHANGE: Update default aggregation temporality for counter, histogram, and up down counter to cumulative

- ADDED: Support asynchronous instruments: ObservableGauge, ObservableCounter and ObservableUpDownCounter
- FIXED: Validate scale range on exponential histograms and raise exception if out of bounds
- FIXED: Update max instrument name length from 63 to 255 characters and allow `/` in instrument names
- FIXED: Validate scale range and raise exception if out of bounds for exponential histograms

### v0.7.3 / 2025-07-09

* FIXED: Stop exporting metrics with empty data points
- FIXED: Stop exporting metrics with empty data points

### v0.7.2 / 2025-07-03

* FIXED: Coerce aggregation temporality to be a symbol for exponential histograms
- FIXED: Coerce aggregation temporality to be a symbol for exponential histograms

### v0.7.1 / 2025-05-28

* FIXED: Recover periodic metric readers after forking
- FIXED: Recover periodic metric readers after forking

### v0.7.0 / 2025-05-13

* ADDED: Add basic exponential histogram
- ADDED: Add basic exponential histogram

### v0.6.1 / 2025-04-09

* FIXED: Use condition signal to replace sleep and remove timeout.timeout…
- FIXED: Use condition signal to replace sleep and remove timeout.timeout…

### v0.6.0 / 2025-02-25

Expand Down
2 changes: 1 addition & 1 deletion metrics_sdk/lib/opentelemetry/sdk/metrics/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module OpenTelemetry
module SDK
module Metrics
# Current OpenTelemetry metrics sdk version
VERSION = '0.7.4'
VERSION = '0.8.0'
end
end
end
5 changes: 3 additions & 2 deletions sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Release History: opentelemetry-sdk

### v1.8.1 / 2025-07-29
### v1.8.1 / 2025-08-14

* FIXED: Remove patch constraint on Zipkin exporter
- FIXED: Remove patch constraint on Zipkin exporter
- DOCS: Fix Resource merge documentation

### v1.8.0 / 2025-02-25

Expand Down
Loading