Releases: getsentry/sentry-dotnet
Releases · getsentry/sentry-dotnet
5.6.0
5.6.0
Features
- Option to disable the SentryNative integration (#4107, #4134)
- Reintroduced experimental support for Session Replay on Android (#4097)
Fixes
- Ensure user exception data is not removed by AspNetCoreExceptionProcessor (#4016)
- Prevent users from disabling AndroidEnableAssemblyCompression which leads to untrappable crash (#4089)
- Fixed MSVCRT build warning on Windows (#4111)
Features
- If an incoming HTTP request has the
traceparentheader, it is now parsed and interpreted like thesentry-traceheader. Outgoing requests now contain thetraceparentheader to facilitate integration with servesr that only support the W3C Trace Context. (#4084)
Dependencies
5.5.1
5.5.0
Features
- The
IScopeObservernow has anSetTracethat allows observing changes to the scope's trace context. The SDK uses this to propagate thetrace IDtosentry-native. This allows Sentry to connect errors coming from all layers of your application (#4026) - Exception.HResult is now included in the mechanism data for all exceptions (#4029)
Fixes
- Fixed symbolication and source context for net9.0-android (#4033)
- Single quotes added to the release name when using MS Build to create Sentry releases on Windows (#4015)
- Target
net9.0on Sentry.Google.Cloud.Functions to avoid conflict with Sentry.AspNetCore (#4039) - Changed default value for
SentryOptions.EnableAppHangTrackingV2tofalse(#4042) - Missing MAUI
Shellnavigation breadcrumbs on iOS (#4006) - Prevent application crashes when capturing screenshots on iOS (#4069)
Dependencies
5.4.0
5.3.0
Features
- User Feedback can now be captured without errors/exceptions. Note that these APIs replace the older UserFeedback APIs, which have now been marked as obsolete (and will be removed in a future major version bump) (#3981)
Fixes
- Using SentryOptions.Native.SuppressExcBadAccess and SentryOptions.Native.SuppressSignalAborts, users can now block duplicate errors from native due to dotnet NullReferenceExceptions - Defaults to false (#3998)
- Native iOS events are now exposed to the dotnet layer for users to hook through SentryOptions.BeforeSend and SentryOptions.OnCrashedLastRun (#2102)
- Prevent crashes from occurring on Android during OnBeforeSend (#4022)
Dependencies
5.2.0
Features
- Serilog scope properties are now sent with Sentry events (#3976)
- The sample seed used for sampling decisions is now propagated, for use in downstream custom trace samplers (#3951)
- Add Azure Function UseSentry overloads for easier wire ups (#3971)
Fixes
- Fix mismapped breadcrumb levels coming in from native to dotnet SDK (#3993)
Dependencies
5.1.1
Fixes
- Emit transaction.data inside contexts.trace.data (#3936)
- Native SIGSEGV errors resulting from managed NullReferenceExceptions are now suppressed on Android (#3903)
- OTel activities that are marked as not recorded are no longer sent to Sentry (#3890)
- Fixed envelopes with oversized attachments getting stuck in __processing (#3938)
- OperatingSystem will now return macOS as OS name instead of 'Darwin' as well as the proper version. (#2710)
- Ignore null value on CocoaScopeObserver.SetTag (#3948)
5.1.0
Significant change in behavior
- The User.IpAddress is now only set to
{{auto}}whenSendDefaultPiiis enabled. This change gives you control over IP address collection directly on the client (#3893)
Features
- .NET on iOS: Add experimental EnableAppHangTrackingV2 configuration flag to the options binding SDK (#3877)
- Added
SentryOptions.DisableSentryHttpMessageHandler. Useful if you're usingOpenTelemetry.Instrumentation.Httpand ending up with duplicate spans. (#3879)
Fixes
- Prevent Native EXC_BAD_ACCESS signal errors from being captured when managed NullRefrenceExceptions occur (#3909)
- Fixed duplicate SentryMauiEventProcessors (#3905)
- Fixed invalid string.Format index in Debug logs for the DiagnosticSource integration (#3923)
Dependencies
5.0.1
5.0.0
API Changes
- Removed net6.0 and net7.0 TFMs as Microsoft has stopped supporting both of these now. If you need to target net6.0 or net7.0 then we recommend using version 4.x of the .NET SDK for Sentry. (#3807)
- Sentry's Experimental Metrics feature has been deprecated and removed from the SDK. (#3718)
SentryOptions.EnableTracinghas been removed. Instead, tracing should be enabled or disabled by setting theSentryOptions.TracesSampleRateor by usingSentryOptions.TracesSamplerto configure a sampling function (#3569)- Temporarily removed experimental Session Replay support (#3827)
- You should no longer pass
AndroidContextas an argument toSentrySdk.Init(#3562) - The
SentryUser.Segmentproperty has been deprecated. Consider sending this as a tag or additional data instead (#3563) - The ITraceContext now includes an Origin, which is set automatically and is primarily used internally by the Sentry server (#3564)
Device.BatteryLevelandDevice.ProcessorFrequencyare now stored as floats rather than ints, to align with the Cocoa and Java SDKs (#3567)- The
FailedRequestTargets,TagFiltersandTracePropagationTargetsoptions have all been changed fromSubstringOrRegexPatterntoIList<StringOrRegex>(#3566) Scope.Transactionis now always stored as anAsyncLocalalso in Global Mode, to prevent auto-instrumented spans from the UI ending up parented to transactions from a background task (or vice versa). (#3596)
Features
- Added support for
.NET 9(#3699) - Heap dumps can be captured automatically when memory usage exceeds a configurable threshold. Note that this API is still experimental and may change based on user feedback. (#3667)
- libsentrysupplemental.so now supports 16 KB page sizes on Android (#3723)
- Added
SentryOptionsextension for profiling:options.AddProfilingIntegration()(#3660)
Fixes
- Address Trim warnings to enable AOT support, including support for MAUI specifically. (#3841)
- Fixed JNI Error when accessing Android device data from multiple threads (#3802)
- Android - fix bug that prevents logcat.log from getting attached to unhandled events (SIGSEGV Segfault) (#3694)
- Fixed ArgumentNullException in FormRequestPayloadExtractor when handling invalid form data on ASP.NET (#3734)
- Fixed NullReferenceException in SentryTraceHeader when parsing null or empty values (#3757)
- Fix "System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. (Parameter 'idData')" error propagating OpenTelemetry span ids (#3850)
- ArgumentNullException in FormRequestPayloadExtractor when handling invalid form data on ASP.NET (#3734)
- Fixed crash when using NLog with FailedRequestStatusCodes options in a Maui app with Trimming enabled (#3743)