Skip to content

Commit 29be0a4

Browse files
committed
add changelog
1 parent 68a67d5 commit 29be0a4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

opentelemetry-sdk/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88
transparent change.
99
[#2338](https://github.com/open-telemetry/opentelemetry-rust/pull/2338)
1010

11+
- *Breaking* LogExporter::export() method doesn't take mutable reference to self:
12+
Before:
13+
async fn export(&mut self, _batch: LogBatch<'_>) -> LogResult<()>
14+
After:
15+
async fn export(&self, _batch: LogBatch<'_>) -> LogResult<()>
16+
The custom exporters would need to internally synchronize their mutable states (if any)
17+
1118
## 0.27.1
1219

1320
Released 2024-Nov-27

0 commit comments

Comments
 (0)