Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 3 additions & 0 deletions src/Sentry.Unity/ScopeObserver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ public void SetUser(SentryUser? user)
}
}

public void SetTrace(SentryId traceId, SpanId parentSpanId)
{ }
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: will be implemented in follow-up


public abstract void SetUserImpl(SentryUser user);

public abstract void UnsetUserImpl();
Expand Down
2 changes: 1 addition & 1 deletion src/sentry-dotnet
Submodule sentry-dotnet updated 220 files
2 changes: 1 addition & 1 deletion test/Sentry.Unity.Tests/IntegrationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The mechanism now also contains the ,"data":{"HResult":"magicnumber"}. So we're trimming the check because that's not what we're testing here.

using var _ = InitSentrySdk();
var testBehaviour = new GameObject("TestHolder").AddComponent<TestMonoBehaviour>();

Expand Down