| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| sentry-react-native-8.3.0.tgz | 2026-03-05 | 4.3 MB | |
| 8.3.0 source code.tar.gz | 2026-03-05 | 6.9 MB | |
| 8.3.0 source code.zip | 2026-03-05 | 7.4 MB | |
| README.md | 2026-03-05 | 3.9 kB | |
| Totals: 4 Items | 18.6 MB | 0 | |
Features
- Add
onNativeLogcallback to intercept and forward native SDK logs to JavaScript console (#5622) - The callback receives native log events with
level,component, andmessageproperties - Only works when
debug: trueis enabled inSentry.init -
Use
consoleSandboxinside the callback to prevent feedback loops with Sentry's console integration ```js import * as Sentry from '@sentry/react-native';Sentry.init({ debug: true, onNativeLog: ({ level, component, message }) => { // Use consoleSandbox to avoid feedback loops Sentry.consoleSandbox(() => { console.log(
[Sentry Native] [${level.toUpperCase()}] [${component}] ${message}); }); } }); ``` -
Add expo constants on event context (#5748)
- Capture dynamic route params as span attributes for Expo Router navigations (#5750)
- EAS Build Hooks (#5666)
- Capture EAS build events in Sentry. Add the following to your
package.json:json { "scripts": { "eas-build-on-complete": "sentry-eas-build-on-complete" } }SetSENTRY_DSNin your EAS secrets, and optionallySENTRY_EAS_BUILD_CAPTURE_SUCCESS=trueto also capture successful builds.
Fixes
- App start data not attached to sampled transactions when preceded by unsampled transactions (#5756)
- Resolve relative
SOURCEMAP_FILEpaths against the project root in the Xcode build script (#5730) - Fixes the issue with unit mismatch in
adjustTransactionDuration(#5740) - Handle
inactivestate for spans (#5742)
Dependencies
- Bump JavaScript SDK from v10.39.0 to v10.42.0 (#5715, #5744, #5753)
- [changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md#10420
- diff
- Bump Bundler Plugins from v4.9.1 to v5.1.1 (#5700)
- [changelog](https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md#511
- diff
- Bump CLI from v3.2.2 to v3.3.0 (#5743, #5762)
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#330
- diff
- Bump Cocoa SDK from v9.5.1 to v9.6.0 (#5759)
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#960
- diff