diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ddf8b0470..075dde7d03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,9 +11,9 @@ - Bump JavaScript SDK from v7.16.0 to v7.17.4 ([#2582](https://github.com/getsentry/sentry-react-native/pull/2582), [#2598](https://github.com/getsentry/sentry-react-native/pull/2598)) - [changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md#7174) - [diff](https://github.com/getsentry/sentry-javascript/compare/7.16.0...7.17.4) -- Bump Cocoa SDK from v7.29.0 to v7.30.0 ([#2597](https://github.com/getsentry/sentry-react-native/pull/2597)) +- Bump Cocoa SDK from v7.29.0 to v7.30.2 ([#2592](https://github.com/getsentry/sentry-react-native/pull/2592)) - [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7300) - - [diff](https://github.com/getsentry/sentry-cocoa/compare/7.29.0...7.30.0) + - [diff](https://github.com/getsentry/sentry-cocoa/compare/7.29.0...7.30.2) ## 4.8.0 diff --git a/RNSentry.podspec b/RNSentry.podspec index 43918c7640..3c4769ccd9 100644 --- a/RNSentry.podspec +++ b/RNSentry.podspec @@ -17,7 +17,7 @@ Pod::Spec.new do |s| s.preserve_paths = '*.js' s.dependency 'React-Core' - s.dependency 'Sentry', '7.30.0' + s.dependency 'Sentry/HybridSDK', '7.30.2' s.source_files = 'ios/RNSentry.{h,m}' s.public_header_files = 'ios/RNSentry.h' diff --git a/ios/RNSentry.m b/ios/RNSentry.m index f67c3698f5..d3db3be02e 100644 --- a/ios/RNSentry.m +++ b/ios/RNSentry.m @@ -7,6 +7,7 @@ #endif #import +#import #import @interface SentryTraceContext : NSObject diff --git a/scripts/update-cocoa.sh b/scripts/update-cocoa.sh index f838be8b39..c286b5253b 100755 --- a/scripts/update-cocoa.sh +++ b/scripts/update-cocoa.sh @@ -3,7 +3,7 @@ set -euo pipefail file="$(dirname "$0")/../RNSentry.podspec" content=$(cat $file) -regex="('Sentry', *)'([0-9\.]+)'" +regex="('Sentry/HybridSDK', *)'([0-9\.]+)'" if ! [[ $content =~ $regex ]]; then echo "Failed to find the plugin version in $file" exit 1