diff --git a/CHANGELOG.md b/CHANGELOG.md index 242e17861..8cc1b505f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -263,6 +263,24 @@ Access to Mobile Replay is limited to early access orgs on Sentry. If you're interested, [sign up for the waitlist](https://sentry.io/lp/mobile-replay-beta/) +## 5.24.2 + +### Features + +- Add an option to disable native (iOS and Android) profiling for the `HermesProfiling` integration ([#4094](https://github.com/getsentry/sentry-react-native/pull/4094)) + + To disable native profilers add the `hermesProfilingIntegration`. + + ```js + import * as Sentry from '@sentry/react-native'; + + Sentry.init({ + integrations: [ + Sentry.hermesProfilingIntegration({ platformProfilers: false }), + ], + }); + ``` + ## 5.24.1 ### Fixes