Skip to content

Commit 97f2457

Browse files
authored
feat: Added Cysharp and DG.Tweening to InAppExclude (#2285)
1 parent 218bf5f commit 97f2457

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Unreleased
44

5+
### Features
6+
7+
- The SDK now automatically marks stack frames from `Cysharp` and `DG.Tweening` as non in-app.
8+
This highly improves the resulting stack trace quality in the issues details. ([#2285](https://github.com/getsentry/sentry-unity/pull/2285))
9+
510
### Fixes
611

712
- The check used to verify whether the current thread is the main-thread now includes `JobsUtility.IsExecutingJob` to support running in Burst. ([#2226](https://github.com/getsentry/sentry-unity/pull/2226))

src/Sentry.Unity/SentryUnityOptions.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,9 @@ internal SentryUnityOptions(
321321

322322
AddInAppExclude("UnityEngine");
323323
AddInAppExclude("UnityEditor");
324+
AddInAppExclude("Cysharp");
325+
AddInAppExclude("DG.Tweening");
326+
324327
var processor = new UnityEventProcessor(this);
325328
AddEventProcessor(processor);
326329
AddTransactionProcessor(processor);

0 commit comments

Comments
 (0)