Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@

- Fix native frames measurements being dropped due to race condition ([#5813](https://github.com/getsentry/sentry-react-native/pull/5813))

### Dependencies

- Bump Android SDK from v8.33.0 to v8.35.0 ([#5812](https://github.com/getsentry/sentry-react-native/pull/5812))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8350)
- [diff](https://github.com/getsentry/sentry-java/compare/8.33.0...8.35.0)

## 8.4.0

### Fixes
Expand Down
4 changes: 2 additions & 2 deletions packages/core/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ android {
dependencies {
compileOnly files('libs/replay-stubs.jar')
implementation 'com.facebook.react:react-native:+'
api 'io.sentry:sentry-android:8.33.0'
debugImplementation 'io.sentry:sentry-spotlight:8.33.0'
api 'io.sentry:sentry-android:8.35.0'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Default-on ANR fingerprinting changes event grouping silently

Low Severity

Flagging this per the dependency update review rule (C). The Android SDK 8.35.0 introduces enableAnrFingerprinting, which is enabled by default. This silently changes how ANR events with system-only stacktraces are grouped — consolidating them into a single issue. The React Native bridge has no code referencing this option, so there is no way for RN users to configure it from JavaScript. Users upgrading may see unexpected changes to their ANR issue grouping in the Sentry dashboard. Worth confirming this default is acceptable for React Native users or whether the bridge should expose a way to opt out.

Fix in Cursor Fix in Web

Triggered by project rule: PR Review Guidelines for Cursor Bot

debugImplementation 'io.sentry:sentry-spotlight:8.35.0'
}
Binary file modified packages/core/android/libs/replay-stubs.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/core/android/replay-stubs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ tasks.named('jar', Jar) {
}

dependencies {
compileOnly 'io.sentry:sentry:8.33.0'
compileOnly 'io.sentry:sentry:8.35.0'
}
Loading