Skip to content

Commit d00f61e

Browse files
authored
Update CHANGELOG.md
1 parent 0409187 commit d00f61e

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
### Features
6+
7+
- Add support for w3c traceparent header ([#4671](https://github.com/getsentry/sentry-java/pull/4671))
8+
- This feature is disabled by default. If enabled, outgoing requests will include the w3c `traceparent` header.
9+
- See https://develop.sentry.dev/sdk/telemetry/traces/distributed-tracing/#w3c-trace-context-header for more details.
10+
```kotlin
11+
Sentry(Android).init(context) { options ->
12+
// ...
13+
options.isPropagateTraceparent = true
14+
}
15+
```
16+
317
## 8.21.1
418

519
### Fixes
@@ -21,15 +35,7 @@
2135
- Replace `Random` implementation with MIT licensed code ([#4664](https://github.com/getsentry/sentry-java/pull/4664))
2236
- Add support for `vars` attribute in `SentryStackFrame` ([#4686](https://github.com/getsentry/sentry-java/pull/4686))
2337
- **Breaking change**: The type of the `vars` attribute has been changed from `Map<String, String>` to `Map<String, Object>`.
24-
- Add support for w3c traceparent header ([#4671](https://github.com/getsentry/sentry-java/pull/4671))
25-
- This feature is disabled by default. If enabled, outgoing requests will include the w3c `traceparent` header.
26-
- See https://develop.sentry.dev/sdk/telemetry/traces/distributed-tracing/#w3c-trace-context-header for more details.
27-
```kotlin
28-
Sentry(Android).init(context) { options ->
29-
// ...
30-
options.isPropagateTraceparent = true
31-
}
32-
```
38+
3339
## 8.20.0
3440

3541
### Fixes

0 commit comments

Comments
 (0)