Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Fixes

- Target `net9.0` on Sentry.Google.Cloud.Functions to avoid conflict with Sentry.AspNetCore ([#4039](https://github.com/getsentry/sentry-dotnet/pull/4039))
- Changed default value for `SentryOptions.EnableAppHangTrackingV2` to `false` ([#4041](https://github.com/getsentry/sentry-dotnet/pull/4041))
Comment thread
jamescrosswell marked this conversation as resolved.
Outdated

### Features

Expand Down
2 changes: 1 addition & 1 deletion src/Sentry/Platforms/Cocoa/SentryOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ internal NativeOptions(SentryOptions options)
/// <remarks>
/// See https://docs.sentry.io/platforms/apple/configuration/app-hangs/#app-hangs-v2
/// </remarks>
public bool EnableAppHangTrackingV2 { get; set; } = true;
public bool EnableAppHangTrackingV2 { get; set; } = false;

/// <summary>
/// When enabled, the SDK adds breadcrumbs for various system events.
Expand Down