diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cf326c4e..ac5837907 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +### Features + +- The SDK now automatically marks stack frames from `Cysharp` and `DG.Tweening` as non in-app. + This highly improves the resulting stack trace quality in the issues details. ([#2285](https://github.com/getsentry/sentry-unity/pull/2285)) + ### Fixes - For targeting iOS, the Unity SDK now brings an iOS-only `.xcframework`, reducing package size. ([#2264](https://github.com/getsentry/sentry-unity/pull/2264)) diff --git a/src/Sentry.Unity/SentryUnityOptions.cs b/src/Sentry.Unity/SentryUnityOptions.cs index 34144e7cc..2197403fd 100644 --- a/src/Sentry.Unity/SentryUnityOptions.cs +++ b/src/Sentry.Unity/SentryUnityOptions.cs @@ -321,6 +321,9 @@ internal SentryUnityOptions( AddInAppExclude("UnityEngine"); AddInAppExclude("UnityEditor"); + AddInAppExclude("Cysharp"); + AddInAppExclude("DG.Tweening"); + var processor = new UnityEventProcessor(this); AddEventProcessor(processor); AddTransactionProcessor(processor);