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 @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion modules/sentry-cocoa.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 8.48.0
version = 8.49.0
repo = https://github.com/getsentry/sentry-cocoa
4 changes: 0 additions & 4 deletions src/Sentry.Unity.Native/NativeScopeObserver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
6 changes: 1 addition & 5 deletions src/Sentry.Unity.iOS/NativeScopeObserver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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) =>
Expand Down
Loading