diff --git a/CHANGELOG.md b/CHANGELOG.md index 45ca5e2c1c..b12fce1380 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ - Fixed Sentry CLI executable path resolution that was causing iOS build script failures ([#5003](https://github.com/getsentry/sentry-react-native/pull/5003)) - Fix for `sentry-cli` path discovery not working on Android ([#5009](https://github.com/getsentry/sentry-react-native/pull/5009)) +- Export `addIntegration` from `@sentry/core` ([#5020](https://github.com/getsentry/sentry-react-native/pull/5020)) ### Features diff --git a/packages/core/src/js/index.ts b/packages/core/src/js/index.ts index 1a163a2b06..1e5a0f68ad 100644 --- a/packages/core/src/js/index.ts +++ b/packages/core/src/js/index.ts @@ -18,6 +18,7 @@ export type { export { addBreadcrumb, + addIntegration, captureException, captureEvent, captureFeedback,