Skip to content

Commit 0a0945a

Browse files
markushibitsandfoxes
authored andcommitted
Add changelog
1 parent aaaf007 commit 0a0945a

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,17 @@
1212
- Removed `SentrySdk.CaptureUserFeedback` and all associated members. Use the newer `SentrySdk.CaptureFeedback` instead.
1313
- Backpressure handling is now enabled by default, meaning that the SDK will monitor system health and reduce the sampling rate of events and transactions when the system is under load. When the system is determined to be healthy again, the sampling rates are returned to their original levels. ([#4615](https://github.com/getsentry/sentry-dotnet/pull/4615))
1414
- ScopeExtensions.Populate is now internal ([#4611](https://github.com/getsentry/sentry-dotnet/pull/4611))
15+
- Add support for W3C traceparent header for outgoing requests ([#4661](https://github.com/getsentry/sentry-dotnet/pull/4661))
16+
This feature is disabled by default. When enabled, outgoing requests will include the W3C traceparent header.
17+
```csharp
18+
SentrySdk.Init(options =>
19+
{
20+
// ...
21+
options.PropagateTraceparent = true;
22+
});
23+
```
24+
25+
See https://develop.sentry.dev/sdk/telemetry/traces/distributed-tracing/#w3c-trace-context-header for more details.
1526

1627
### Fixes
1728

0 commit comments

Comments
 (0)