Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@

Apps on the Old Architecture now get the same aggregate, span attribution and slow call breadcrumbs as TurboModules. An `arch: 'new' | 'legacy'` field distinguishes the two sources. Opt in with `turboModuleContextIntegration({ enableLegacyNativeModules: true })`.


### Fixes

- `sentry-expo-upload-sourcemaps` now reads plugin config when the plugin is registered as `@sentry/react-native` ([#6543](https://github.com/getsentry/sentry-react-native/pull/6543))

### Dependencies

- Bump Android SDK from v8.50.1 to v8.51.0 ([#6539](https://github.com/getsentry/sentry-react-native/pull/6539))
Expand Down
4 changes: 3 additions & 1 deletion packages/expo-upload-sourcemaps/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ function getSentryPluginPropertiesFromExpoConfig() {
return false;
}
const [pluginName] = plugin;
return pluginName === '@sentry/react-native/expo';
// Both '@sentry/react-native' and '@sentry/react-native/expo' are valid
// plugin paths in the Expo config; Expo resolves them the same way.
return pluginName === '@sentry/react-native/expo' || pluginName === '@sentry/react-native';
});

if (sentryPlugin) {
Expand Down
Loading