Skip to content

Commit

Permalink
chore(deps): update Cocoa SDK to v8.11.0 (#2594)
Browse files Browse the repository at this point in the history
* chore: update modules/sentry-cocoa to 8.11.0

* Update ApiDefinitions.cs

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: James Crosswell <jamescrosswell@users.noreply.github.com>
  • Loading branch information
3 people committed Sep 5, 2023
1 parent f42def4 commit 8ae8d04
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
- Bump CLI from v2.20.5 to v2.20.6 ([#2590](https://github.com/getsentry/sentry-dotnet/pull/2590))
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2206)
- [diff](https://github.com/getsentry/sentry-cli/compare/2.20.5...2.20.6)
- Bump Cocoa SDK from v8.10.0 to v8.11.0 ([#2594](https://github.com/getsentry/sentry-dotnet/pull/2594))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8110)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.10.0...8.11.0)

## 3.36.0

Expand Down
2 changes: 1 addition & 1 deletion modules/sentry-cocoa
Submodule sentry-cocoa updated 116 files
17 changes: 11 additions & 6 deletions src/Sentry.Bindings.Cocoa/ApiDefinitions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2397,16 +2397,21 @@ interface PrivateSentrySDKOnly
[Export ("getExtraContext")]
NSDictionary ExtraContext { get; }

// +(uint64_t)startProfilingForTrace:(SentryId * _Nonnull)traceId;
// +(uint64_t)startProfilerForTrace:(SentryId * _Nonnull)traceId;
[Static]
[Export ("startProfilingForTrace:")]
ulong StartProfilingForTrace (SentryId traceId);
[Export ("startProfilerForTrace:")]
ulong StartProfilerForTrace (SentryId traceId);

// +(NSDictionary<NSString *,id> * _Nullable)collectProfileForTrace:(SentryId * _Nonnull)traceId since:(uint64_t)startSystemTime;
// +(NSDictionary<NSString *,id> * _Nullable)collectProfileBetween:(uint64_t)startSystemTime and:(uint64_t)endSystemTime forTrace:(SentryId * _Nonnull)traceId;
[Static]
[Export ("collectProfileForTrace:since:")]
[Export ("collectProfileBetween:and:forTrace:")]
[return: NullAllowed]
NSDictionary<NSString, NSObject> CollectProfileForTrace (SentryId traceId, ulong startSystemTime);
NSDictionary<NSString, NSObject> CollectProfileBetween (ulong startSystemTime, ulong endSystemTime, SentryId traceId);

// +(void)discardProfilerForTrace:(SentryId * _Nonnull)traceId;
[Static]
[Export ("discardProfilerForTrace:")]
void DiscardProfilerForTrace (SentryId traceId);

// @property (copy, nonatomic, class) SentryOnAppStartMeasurementAvailable _Nullable onAppStartMeasurementAvailable;
[Static]
Expand Down

0 comments on commit 8ae8d04

Please sign in to comment.