diff --git a/CHANGELOG.md b/CHANGELOG.md index c2b117580..89fe2773b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,9 +10,9 @@ ### Dependencies -- Bump Cocoa SDK from v8.45.0 to v8.48.0 ([#2063](https://github.com/getsentry/sentry-unity/pull/2063), [#2071](https://github.com/getsentry/sentry-unity/pull/2071)) - - [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8480) - - [diff](https://github.com/getsentry/sentry-cocoa/compare/8.45.0...8.48.0) +- Bump Cocoa SDK from v8.45.0 to v8.49.0 ([#2063](https://github.com/getsentry/sentry-unity/pull/2063), [#2071](https://github.com/getsentry/sentry-unity/pull/2071), [#2105](https://github.com/getsentry/sentry-unity/pull/2105)) + - [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8490) + - [diff](https://github.com/getsentry/sentry-cocoa/compare/8.45.0...8.49.0) - Bump Java SDK from v8.3.0 to v8.7.0 ([#2066](https://github.com/getsentry/sentry-unity/pull/2066), [#2075](https://github.com/getsentry/sentry-unity/pull/2075), [#2092](https://github.com/getsentry/sentry-unity/pull/2092), [#2103](https://github.com/getsentry/sentry-unity/pull/2103)) - [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#870) - [diff](https://github.com/getsentry/sentry-java/compare/8.3.0...8.7.0) diff --git a/modules/sentry-cocoa.properties b/modules/sentry-cocoa.properties index 03ca2f7fa..002085e06 100644 --- a/modules/sentry-cocoa.properties +++ b/modules/sentry-cocoa.properties @@ -1,2 +1,2 @@ -version = 8.48.0 +version = 8.49.0 repo = https://github.com/getsentry/sentry-cocoa diff --git a/src/Sentry.Unity.Native/NativeScopeObserver.cs b/src/Sentry.Unity.Native/NativeScopeObserver.cs index 5263ae2b7..a5201125f 100644 --- a/src/Sentry.Unity.Native/NativeScopeObserver.cs +++ b/src/Sentry.Unity.Native/NativeScopeObserver.cs @@ -40,10 +40,6 @@ public override void SetUserImpl(SentryUser user) } public override void UnsetUserImpl() => C.sentry_remove_user(); - public override void SetTraceImpl(SentryId traceId, SpanId spanId) - { - // TODO: Needs to be implemented - } public override void SetTraceImpl(SentryId traceId, SpanId spanId) => C.sentry_set_trace(traceId.ToString(), spanId.ToString()); diff --git a/src/Sentry.Unity.iOS/NativeScopeObserver.cs b/src/Sentry.Unity.iOS/NativeScopeObserver.cs index ca69e4bd0..26aedced9 100644 --- a/src/Sentry.Unity.iOS/NativeScopeObserver.cs +++ b/src/Sentry.Unity.iOS/NativeScopeObserver.cs @@ -25,14 +25,10 @@ public override void SetUserImpl(SentryUser user) => SentryCocoaBridgeProxy.SetUser(user.Email, user.Id, user.IpAddress, user.Username); public override void UnsetUserImpl() => SentryCocoaBridgeProxy.UnsetUser(); - public override void SetTraceImpl(SentryId traceId, SpanId spanId) - { - // TODO: Needs to be implemented - } public override void SetTraceImpl(SentryId traceId, SpanId spanId) { - // Todo: Needs to be implemented + // TODO: Needs to be implemented } internal static string GetTimestamp(DateTimeOffset timestamp) =>