From 387c61656e3f930925dd7def7b368a1867ea2d4e Mon Sep 17 00:00:00 2001 From: GitHub Date: Wed, 8 Mar 2023 03:07:57 +0000 Subject: [PATCH 1/2] chore: update modules/sentry-cocoa to 8.3.0 --- CHANGELOG.md | 8 ++++++++ modules/sentry-cocoa | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d302341b5..368d819044 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## Unreleased + +### Dependencies + +- Bump Cocoa SDK from v8.2.0 to v8.3.0 ([#2220](https://github.com/getsentry/sentry-dotnet/pull/2220)) + - [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#830) + - [diff](https://github.com/getsentry/sentry-cocoa/compare/8.2.0...8.3.0) + ## 3.29.0 **Notice:** The `` MSBuild property previously defaulted to `true` for projects compiled in `Release` configuration. diff --git a/modules/sentry-cocoa b/modules/sentry-cocoa index ccb70752c8..c85564d7c9 160000 --- a/modules/sentry-cocoa +++ b/modules/sentry-cocoa @@ -1 +1 @@ -Subproject commit ccb70752c81850d659813f934973c93da48447bb +Subproject commit c85564d7c92adb28f7ee15e2d758b67d7bfd06bd From f1782b88fb8f4096481d8c0ea813a4e81a0a3b27 Mon Sep 17 00:00:00 2001 From: Matt Johnson-Pint Date: Tue, 7 Mar 2023 23:04:27 -0800 Subject: [PATCH 2/2] Update ApiDefinitions.cs --- src/Sentry.Bindings.Cocoa/ApiDefinitions.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs b/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs index 0a7bf15fe3..456c15870b 100644 --- a/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs +++ b/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs @@ -738,6 +738,10 @@ interface SentryOptions [Export ("enableFileIOTracing")] bool EnableFileIOTracing { get; set; } + // @property (nonatomic) BOOL enableTracing; + [Export ("enableTracing")] + bool EnableTracing { get; set; } + // @property (nonatomic, strong) NSNumber * _Nullable tracesSampleRate; [NullAllowed, Export ("tracesSampleRate", ArgumentSemantic.Strong)] NSNumber TracesSampleRate { get; set; }