Skip to content

Commit 4b3f3a5

Browse files
authored
Export extraErrorDataIntegration (#4762)
* Export extraErrorDataIntegration * Add changelog * Fix changelog
1 parent e4ac943 commit 4b3f3a5

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
> make sure you follow our [migration guide](https://docs.sentry.io/platforms/react-native/migration/) first.
77
<!-- prettier-ignore-end -->
88
9+
## Unreleased
10+
11+
### Fixes
12+
13+
- Export `extraErrorDataIntegration` from `@sentry/core` ([#4762](https://github.com/getsentry/sentry-react-native/pull/4762))
14+
915
## 6.11.0
1016

1117
### Features

packages/core/src/js/integrations/exports.ts

+1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,5 @@ export {
3434
inboundFiltersIntegration,
3535
linkedErrorsIntegration as browserLinkedErrorsIntegration,
3636
rewriteFramesIntegration,
37+
extraErrorDataIntegration,
3738
} from '@sentry/react';

samples/react-native/src/App.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ Sentry.init({
126126
},
127127
namePlaceholder: 'Fullname',
128128
}),
129+
Sentry.extraErrorDataIntegration(),
129130
);
130131
return integrations.filter(i => i.name !== 'Dedupe');
131132
},

0 commit comments

Comments
 (0)