Skip to content

Commit 16e21d8

Browse files
chore(deps): update Cocoa SDK to v8.49.0 (#2105)
1 parent 75d3996 commit 16e21d8

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
### Dependencies
1212

13-
- 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))
14-
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8480)
15-
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.45.0...8.48.0)
13+
- 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))
14+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8490)
15+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.45.0...8.49.0)
1616
- 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))
1717
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#870)
1818
- [diff](https://github.com/getsentry/sentry-java/compare/8.3.0...8.7.0)

modules/sentry-cocoa.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = 8.48.0
1+
version = 8.49.0
22
repo = https://github.com/getsentry/sentry-cocoa

src/Sentry.Unity.Native/NativeScopeObserver.cs

-4
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,6 @@ public override void SetUserImpl(SentryUser user)
4040
}
4141

4242
public override void UnsetUserImpl() => C.sentry_remove_user();
43-
public override void SetTraceImpl(SentryId traceId, SpanId spanId)
44-
{
45-
// TODO: Needs to be implemented
46-
}
4743

4844
public override void SetTraceImpl(SentryId traceId, SpanId spanId) =>
4945
C.sentry_set_trace(traceId.ToString(), spanId.ToString());

src/Sentry.Unity.iOS/NativeScopeObserver.cs

+1-5
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,10 @@ public override void SetUserImpl(SentryUser user) =>
2525
SentryCocoaBridgeProxy.SetUser(user.Email, user.Id, user.IpAddress, user.Username);
2626

2727
public override void UnsetUserImpl() => SentryCocoaBridgeProxy.UnsetUser();
28-
public override void SetTraceImpl(SentryId traceId, SpanId spanId)
29-
{
30-
// TODO: Needs to be implemented
31-
}
3228

3329
public override void SetTraceImpl(SentryId traceId, SpanId spanId)
3430
{
35-
// Todo: Needs to be implemented
31+
// TODO: Needs to be implemented
3632
}
3733

3834
internal static string GetTimestamp(DateTimeOffset timestamp) =>

0 commit comments

Comments
 (0)