diff --git a/CHANGELOG.md b/CHANGELOG.md index d9ebd50716..b656c6d7ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +### Features + +- Add `lastEventId` method to the API ([#2675](https://github.com/getsentry/sentry-react-native/pull/2675)) + ### Dependencies - Bump Cocoa SDK from v7.31.2 to v7.31.3 ([#2647](https://github.com/getsentry/sentry-react-native/pull/2647)) diff --git a/src/js/index.ts b/src/js/index.ts index 3ac0c4db08..8c909fc0f8 100644 --- a/src/js/index.ts +++ b/src/js/index.ts @@ -48,6 +48,10 @@ export { withProfiler, } from '@sentry/react'; +export { + lastEventId, +} from '@sentry/browser'; + import * as Integrations from './integrations'; import { SDK_NAME, SDK_VERSION } from './version'; export { ReactNativeOptions } from './options';