From 561d07d17ceee60ab41b1cd561d211d9d28375b0 Mon Sep 17 00:00:00 2001 From: Antonis Lilis Date: Tue, 7 Apr 2026 10:59:32 +0200 Subject: [PATCH] Add `attachAllThreads` option to React Native docs Documents the new iOS-only `attachAllThreads` option added in sentry-react-native, which forwards to the Cocoa SDK's option for attaching full stack traces for all threads to captured events. Ref: getsentry/sentry-react-native#5959 Co-Authored-By: Claude Opus 4.6 (1M context) --- docs/platforms/react-native/configuration/options.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/platforms/react-native/configuration/options.mdx b/docs/platforms/react-native/configuration/options.mdx index b084e3929ead46..2cb552921e3838 100644 --- a/docs/platforms/react-native/configuration/options.mdx +++ b/docs/platforms/react-native/configuration/options.mdx @@ -377,6 +377,12 @@ Set this boolean to `true` to automatically attach all threads to all logged eve + + +Set this boolean to `true` to attach full stack traces for all threads to all captured events on iOS. + + + When enabled, ANR events whose stacktraces contain only system frames (for example, `java.lang` or `android.os`) are assigned a static fingerprint and grouped into a single issue, rather than creating many separate issues. Set this to `false` to restore per-stacktrace ANR grouping.