Fixes
- Warnings when .env.sentry-build-plugin is not set on Sentry/CLI (#5029)
- Fix for
sentry-cli
path discovery not working on Android (#5009) - Export
addIntegration
from@sentry/core
(#5020)
Features
-
Adds
replaysSessionQuality
Session Replay option to control replay quality and performance overhead on mobile (#5001)import * as Sentry from '@sentry/react-native'; Sentry.init({ replaysSessionSampleRate: 1.0, replaysSessionQuality: 'low', // possible values: low, medium (default), high integrations: [Sentry.mobileReplayIntegration()], });