diff --git a/CHANGELOG.md b/CHANGELOG.md index c4e43a3c1..476441398 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,9 @@ - Bump CLI from v2.42.2 to v2.42.5 ([#2065](https://github.com/getsentry/sentry-unity/pull/2065), [#2082](https://github.com/getsentry/sentry-unity/pull/2082)) - [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2425) - [diff](https://github.com/getsentry/sentry-cli/compare/2.42.2...2.42.5) +- 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 Native SDK from v0.8.1 to v0.8.2 ([#2077](https://github.com/getsentry/sentry-unity/pull/2077)) - [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#082) - [diff](https://github.com/getsentry/sentry-native/compare/0.8.1...0.8.2) diff --git a/src/sentry-dotnet b/src/sentry-dotnet index 4874a09f6..ab208ce33 160000 --- a/src/sentry-dotnet +++ b/src/sentry-dotnet @@ -1 +1 @@ -Subproject commit 4874a09f6c6f0a66f9541a5c0dd3c673bced4e76 +Subproject commit ab208ce33a4888fdce954cf3f2b1c4e2633b55bb diff --git a/test/Sentry.Unity.Tests/Stubs/TestHub.cs b/test/Sentry.Unity.Tests/Stubs/TestHub.cs index f3c2f5b66..addff8662 100644 --- a/test/Sentry.Unity.Tests/Stubs/TestHub.cs +++ b/test/Sentry.Unity.Tests/Stubs/TestHub.cs @@ -25,6 +25,12 @@ public SentryId CaptureEvent(SentryEvent evt, Scope? scope = null, SentryHint? h return evt.EventId; } + public void CaptureFeedback(SentryFeedback feedback, Scope? scope = null, SentryHint? hint = null) + { + throw new NotImplementedException(); + } + + [Obsolete("Obsolete")] public void CaptureUserFeedback(UserFeedback userFeedback) { throw new NotImplementedException();