diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eece03ef5..0c91c98823 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Unreleased * Fix: Merge user from event and scope (#467) +* Bump: Sentry-Cocoa to 7.1.3 for iOS and macOS (#488) # 5.1.0-beta.1 diff --git a/flutter/ios/Classes/SentryFlutterPluginApple.swift b/flutter/ios/Classes/SentryFlutterPluginApple.swift index f2aff5dfec..2440f77cc7 100644 --- a/flutter/ios/Classes/SentryFlutterPluginApple.swift +++ b/flutter/ios/Classes/SentryFlutterPluginApple.swift @@ -266,7 +266,7 @@ public class SentryFlutterPluginApple: NSObject, FlutterPlugin { do { let envelope = try parseJsonEnvelope(event) - SentrySDK.capture(envelope) + PrivateSentrySDKOnly.capture(envelope) result("") } catch { print("Cannot parse the envelope json !") diff --git a/flutter/ios/Classes/SentrySDK+FlutterPrivate.h b/flutter/ios/Classes/SentrySDK+FlutterPrivate.h deleted file mode 100644 index 0a5f346fe7..0000000000 --- a/flutter/ios/Classes/SentrySDK+FlutterPrivate.h +++ /dev/null @@ -1,11 +0,0 @@ -#import - -NS_ASSUME_NONNULL_BEGIN - -@interface SentrySDK (FlutterPrivate) - -+ (void)captureEnvelope:(SentryEnvelope *)envelope; - -@end - -NS_ASSUME_NONNULL_END \ No newline at end of file diff --git a/flutter/ios/sentry_flutter.podspec b/flutter/ios/sentry_flutter.podspec index 73464cb967..1b5092e8d5 100644 --- a/flutter/ios/sentry_flutter.podspec +++ b/flutter/ios/sentry_flutter.podspec @@ -12,7 +12,7 @@ Sentry SDK for Flutter with support to native through sentry-cocoa. :tag => s.version.to_s } s.source_files = 'Classes/**/*' s.public_header_files = 'Classes/**/*.h' - s.dependency 'Sentry', '~> 7.0.3' + s.dependency 'Sentry', '~> 7.1.3' s.ios.dependency 'Flutter' s.osx.dependency 'FlutterMacOS' s.ios.deployment_target = '9.0' diff --git a/flutter/macos/Classes/SentrySDK+FlutterPrivate.h b/flutter/macos/Classes/SentrySDK+FlutterPrivate.h deleted file mode 120000 index eebb84b89a..0000000000 --- a/flutter/macos/Classes/SentrySDK+FlutterPrivate.h +++ /dev/null @@ -1 +0,0 @@ -../../ios/Classes/SentrySDK+FlutterPrivate.h \ No newline at end of file