BREAKING CHANGES
- 
BreadcrumbLevel.Criticalhas been renamed toBreadcrumbLevel.Fatalfor consistency with the other Sentry SDKs (#4605)
- 
SentryOptions.IsEnvironmentUser now defaults to false on MAUI. The means the User.Name will no longer be set, by default, to the name of the device (#4606) 
- 
Remove unnecessary files from SentryCocoaFramework before packing (#4602) 
- 
Removed obsolete APIs (#4619) - Removed the unusual constructor from Sentry.Maui.BreadcrumbEventthat had been marked as obsolete. That constructor expected aIEnumerable<(string Key, string Value)>[]argument (i.e. an array of IEnumerable of tuples). If you were using this constructor, you should instead use the alternate constructor that expects just an IEnumerable of tuples:IEnumerable<(string Key, string Value)>.
- Removed SentrySdk.CaptureUserFeedbackand all associated members. Use the newerSentrySdk.CaptureFeedbackinstead.
 
- Removed the unusual constructor from 
- 
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) 
- 
ScopeExtensions.Populate is now internal (#4611) 
- 
Add support for W3C traceparent header for outgoing requests (#4661) 
 This feature is disabled by default. When enabled, outgoing requests will include the W3C traceparent header.SentrySdk.Init(options => { // ... options.PropagateTraceparent = true; }); See https://develop.sentry.dev/sdk/telemetry/traces/distributed-tracing/#w3c-trace-context-header for more details.