File tree Expand file tree Collapse file tree 1 file changed +15
-9
lines changed
Expand file tree Collapse file tree 1 file changed +15
-9
lines changed Original file line number Diff line number Diff line change 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
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
You can’t perform that action at this time.
0 commit comments