Skip to content

Commit 3e02634

Browse files
authored
chore: Update to .NET SDK 5.5.0 (#2093)
1 parent 6daa7fe commit 3e02634

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
- 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))
1919
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2430)
2020
- [diff](https://github.com/getsentry/sentry-cli/compare/2.42.2...2.43.0)
21-
- Bump .NET SDK from v5.2.0 to v5.4.0 ([#2067](https://github.com/getsentry/sentry-unity/pull/2067))
22-
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#540)
23-
- [diff](https://github.com/getsentry/sentry-dotnet/compare/5.2.0...5.4.0)
21+
- 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))
22+
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#550)
23+
- [diff](https://github.com/getsentry/sentry-dotnet/compare/5.2.0...5.5.0)
2424
- 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))
2525
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#083)
2626
- [diff](https://github.com/getsentry/sentry-native/compare/0.8.1...0.8.3)

src/Sentry.Unity/ScopeObserver.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@ public void SetUser(SentryUser? user)
8181
}
8282
}
8383

84+
public void SetTrace(SentryId traceId, SpanId parentSpanId)
85+
{ }
86+
8487
public abstract void SetUserImpl(SentryUser user);
8588

8689
public abstract void UnsetUserImpl();

src/sentry-dotnet

Submodule sentry-dotnet updated 220 files

test/Sentry.Unity.Tests/IntegrationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ public IEnumerator DebugLogException_IsMarkedUnhandled()
210210
{
211211
yield return SetupSceneCoroutine("1_BugFarm");
212212

213-
var expectedMechanism = "\"mechanism\":{\"type\":\"Unity.LogException\",\"handled\":false}}]}";
213+
var expectedMechanism = "\"mechanism\":{\"type\":\"Unity.LogException\",\"handled\":false";
214214
using var _ = InitSentrySdk();
215215
var testBehaviour = new GameObject("TestHolder").AddComponent<TestMonoBehaviour>();
216216

0 commit comments

Comments
 (0)