diff --git a/CHANGELOG.md b/CHANGELOG.md index e61bfd6bb..edfede698 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,9 +18,9 @@ - Bump CLI from v2.42.2 to v2.43.0 ([#2065](https://github.com/getsentry/sentry-unity/pull/2065), [#2082](https://github.com/getsentry/sentry-unity/pull/2082), [#2085](https://github.com/getsentry/sentry-unity/pull/2085)) - [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2430) - [diff](https://github.com/getsentry/sentry-cli/compare/2.42.2...2.43.0) -- Bump .NET SDK from v5.2.0 to v5.4.0 ([#2067](https://github.com/getsentry/sentry-unity/pull/2067)) - - [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#540) - - [diff](https://github.com/getsentry/sentry-dotnet/compare/5.2.0...5.4.0) +- Bump .NET SDK from v5.2.0 to v5.5.0 ([#2067](https://github.com/getsentry/sentry-unity/pull/2067), [#2093](https://github.com/getsentry/sentry-unity/pull/2093)) + - [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#550) + - [diff](https://github.com/getsentry/sentry-dotnet/compare/5.2.0...5.5.0) - Bump Native SDK from v0.8.1 to v0.8.3 ([#2077](https://github.com/getsentry/sentry-unity/pull/2077), [#2087](https://github.com/getsentry/sentry-unity/pull/2087)) - [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#083) - [diff](https://github.com/getsentry/sentry-native/compare/0.8.1...0.8.3) diff --git a/src/Sentry.Unity/ScopeObserver.cs b/src/Sentry.Unity/ScopeObserver.cs index 1a7f0996b..86dc3e872 100644 --- a/src/Sentry.Unity/ScopeObserver.cs +++ b/src/Sentry.Unity/ScopeObserver.cs @@ -81,6 +81,9 @@ public void SetUser(SentryUser? user) } } + public void SetTrace(SentryId traceId, SpanId parentSpanId) + { } + public abstract void SetUserImpl(SentryUser user); public abstract void UnsetUserImpl(); diff --git a/src/sentry-dotnet b/src/sentry-dotnet index ab208ce33..92262a164 160000 --- a/src/sentry-dotnet +++ b/src/sentry-dotnet @@ -1 +1 @@ -Subproject commit ab208ce33a4888fdce954cf3f2b1c4e2633b55bb +Subproject commit 92262a16455992af112cc03a4fc3c79462acaef5 diff --git a/test/Sentry.Unity.Tests/IntegrationTests.cs b/test/Sentry.Unity.Tests/IntegrationTests.cs index a4918b041..10e7e4924 100644 --- a/test/Sentry.Unity.Tests/IntegrationTests.cs +++ b/test/Sentry.Unity.Tests/IntegrationTests.cs @@ -210,7 +210,7 @@ public IEnumerator DebugLogException_IsMarkedUnhandled() { yield return SetupSceneCoroutine("1_BugFarm"); - var expectedMechanism = "\"mechanism\":{\"type\":\"Unity.LogException\",\"handled\":false}}]}"; + var expectedMechanism = "\"mechanism\":{\"type\":\"Unity.LogException\",\"handled\":false"; using var _ = InitSentrySdk(); var testBehaviour = new GameObject("TestHolder").AddComponent();