Skip to content

Commit 1458af3

Browse files
committed
chore: add CHANGELOG entries for each crate for API changes
1 parent 1fe18fd commit 1458af3

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

opentelemetry-otlp/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ Released 2024-Sep-30
1010
- Update `opentelemetry-http` dependency version to 0.26
1111
- Update `opentelemetry-proto` dependency version to 0.26
1212
- Bump MSRV to 1.71.1 [2140](https://github.com/open-telemetry/opentelemetry-rust/pull/2140)
13+
- **BREAKING**: [#2217](https://github.com/open-telemetry/opentelemetry-rust/pull/2217)
14+
- **Replaced**: The `MetricsExporterBuilder` interface is modified from `with_temporality_selector` to `with_temporality` example can be seen below:
15+
Previous Signature:
16+
```rust
17+
MetricsExporterBuilder::default().with_temporality_selector(DeltaTemporalitySelector::new())
18+
```
19+
Updated Signature:
20+
```rust
21+
MetricsExporterBuilder::default().with_temporality(Temporality::Delta)
22+
```
1323

1424
## v0.25.0
1525

opentelemetry-sdk/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
- Bump MSRV to 1.70 [#2179](https://github.com/open-telemetry/opentelemetry-rust/pull/2179)
66
- Implement `LogRecord::set_trace_context` for `LogRecord`. Respect any trace context set on a `LogRecord` when emitting through a `Logger`.
77
- Improved `LoggerProvider` shutdown handling to prevent redundant shutdown calls when `drop` is invoked. [#2195](https://github.com/open-telemetry/opentelemetry-rust/pull/2195)
8+
- **BREAKING**: [#2217](https://github.com/open-telemetry/opentelemetry-rust/pull/2217)
9+
- **Replaced**: Removed `{Delta,Cumulative}TemporalitySelector::new()` in favor of directly using `Temporality` enum to simplify the configuration of MetricExporterBuilder with different temporalities.
810

911
## v0.26.0
1012
Released 2024-Sep-30

opentelemetry-stdout/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
## vNext
44

55
- Bump MSRV to 1.70 [#2179](https://github.com/open-telemetry/opentelemetry-rust/pull/2179)
6+
- **BREAKING**: [#2217](https://github.com/open-telemetry/opentelemetry-rust/pull/2217)
7+
- **Replaced**: The `MetricsExporterBuilder` interface is modified from `with_temporality_selector` to `with_temporality` example can be seen below:
8+
Previous Signature:
9+
```rust
10+
MetricsExporterBuilder::default().with_temporality_selector(DeltaTemporalitySelector::new())
11+
```
12+
Updated Signature:
13+
```rust
14+
MetricsExporterBuilder::default().with_temporality(Temporality::Delta)
15+
```
616

717
## v0.26.0
818
Released 2024-Sep-30

0 commit comments

Comments
 (0)