From c63cfb463ed68401fe17aee5717c4699bfa97a75 Mon Sep 17 00:00:00 2001 From: GitHub Date: Thu, 17 Sep 2026 09:45:43 +0000 Subject: [PATCH 1/2] chore: update scripts/update-cocoa.sh to 9.29.0 --- CHANGELOG.md | 3 +++ packages/core/RNSentry.podspec | 2 +- packages/core/scripts/sentry_utils.rb | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee9f326410..edc75b4ab6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,9 @@ - Bump Android SDK from v8.56.0 to v8.57.0 ([#6732](https://github.com/getsentry/sentry-react-native/pull/6732)) - [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8570) - [diff](https://github.com/getsentry/sentry-java/compare/8.56.0...8.57.0) +- Bump Cocoa SDK from v9.28.0 to v9.29.0 ([#6736](https://github.com/getsentry/sentry-react-native/pull/6736)) + - [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#9290) + - [diff](https://github.com/getsentry/sentry-cocoa/compare/9.28.0...9.29.0) ## 8.26.0 diff --git a/packages/core/RNSentry.podspec b/packages/core/RNSentry.podspec index e057107178..86fef33e73 100644 --- a/packages/core/RNSentry.podspec +++ b/packages/core/RNSentry.podspec @@ -63,7 +63,7 @@ Pod::Spec.new do |s| 'DEFINES_MODULE' => 'YES' } - sentry_cocoa_version = '9.28.0' + sentry_cocoa_version = '9.29.0' # Consume sentry-cocoa as a prebuilt `Sentry.xcframework` by default. # diff --git a/packages/core/scripts/sentry_utils.rb b/packages/core/scripts/sentry_utils.rb index 508e0d359c..8c16524e17 100644 --- a/packages/core/scripts/sentry_utils.rb +++ b/packages/core/scripts/sentry_utils.rb @@ -60,8 +60,8 @@ def is_new_hermes_runtime(rn_version) # `Sentry` module. `Sentry-Dynamic.xcframework` would ship the same # `Sentry.framework` inside but under a mismatched enclosing name, so # CocoaPods generates `-framework Sentry-Dynamic` and fails at link. - '9.28.0' => { - 'Sentry' => '0c5caf36bb129b8ca1b258bd7d455c451eefb517acd01c0347f35723afbc1473', + '9.29.0' => { + 'Sentry' => '63fe5a7258097fded9ef485bbb1d8e80e1e91d419ee6d8a6ad405454b5b50fef', }, }.freeze From e8460f45104ad4f7904ae84cce2ff47122c9d76e Mon Sep 17 00:00:00 2001 From: Antonis Lilis Date: Thu, 17 Sep 2026 12:01:43 +0200 Subject: [PATCH 2/2] Add iOS warning --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index edc75b4ab6..9d196806ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ ## Unreleased +> [!WARNING] +> iOS native crashes now set `mechanism.synthetic`, taking the mach/signal name out of the grouping hash. Expect a one-time regrouping as your app adopts this version. + ### Features - Add Session Replay runtime controls to start, stop, and manage recording manually ([#6703](https://github.com/getsentry/sentry-react-native/pull/6703))