|
16 | 16 |
|
17 | 17 | ### Fixes
|
18 | 18 |
|
| 19 | +- Export `extraErrorDataIntegration` from `@sentry/core` ([#4762](https://github.com/getsentry/sentry-react-native/pull/4762)) |
| 20 | + |
| 21 | +### Dependencies |
| 22 | + |
| 23 | +- Bump Cocoa SDK from v8.49.0 to v8.49.1 ([#4771](https://github.com/getsentry/sentry-react-native/pull/4771)) |
| 24 | + - [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8491) |
| 25 | + - [diff](https://github.com/getsentry/sentry-cocoa/compare/8.49.0...8.49.1) |
| 26 | + |
| 27 | +## 6.11.0 |
| 28 | + |
| 29 | +### Features |
| 30 | + |
| 31 | +- Improve Warm App Start reporting on Android ([#4641](https://github.com/getsentry/sentry-react-native/pull/4641), [#4695](https://github.com/getsentry/sentry-react-native/pull/4695)) |
| 32 | +- Add `createTimeToInitialDisplay({useFocusEffect})` and `createTimeToFullDisplay({useFocusEffect})` to allow record full display on screen focus ([#4665](https://github.com/getsentry/sentry-react-native/pull/4665)) |
| 33 | +- Add support for measuring Time to Initial Display for already seen routes ([#4661](https://github.com/getsentry/sentry-react-native/pull/4661)) |
| 34 | + - Introduce `enableTimeToInitialDisplayForPreloadedRoutes` option to the React Navigation integration. |
| 35 | + |
| 36 | + ```js |
| 37 | + Sentry.reactNavigationIntegration({ |
| 38 | + enableTimeToInitialDisplayForPreloadedRoutes: true, |
| 39 | + }); |
| 40 | + ``` |
| 41 | + |
| 42 | +- Add `useDispatchedActionData` option to the React Navigation integration to filter out navigation actions that should not create spans ([#4684](https://github.com/getsentry/sentry-react-native/pull/4684)) |
| 43 | + - For example `PRELOAD`, `SET_PARAMS`, `TOGGLE_DRAWER` and others. |
| 44 | + |
| 45 | + ```js |
| 46 | + Sentry.reactNavigationIntegration({ |
| 47 | + useDispatchedActionData: true, |
| 48 | + }); |
| 49 | + ``` |
| 50 | + |
| 51 | +### Fixes |
| 52 | + |
| 53 | +- Equalize TTID and TTFD duration when TTFD manual API is called and resolved before auto TTID ([#4680](https://github.com/getsentry/sentry-react-native/pull/4680)) |
| 54 | +- Avoid loading Sentry native components in Expo Go ([#4696](https://github.com/getsentry/sentry-react-native/pull/4696)) |
19 | 55 | - Avoid silent failure when JS bundle was not created due to Sentry Xcode scripts failure ([#4690](https://github.com/getsentry/sentry-react-native/pull/4690))
|
20 | 56 | - Fixes Feedback Widget accessibility issue on iOS ([#4739](https://github.com/getsentry/sentry-react-native/pull/4739))
|
21 | 57 | - Prevent crash on iOS during profiling stop when debug images are missing ([#4738](https://github.com/getsentry/sentry-react-native/pull/4738))
|
22 | 58 | - Attach only App Starts within the 60s threshold (fixed comparison units, use ms) ([#4746](https://github.com/getsentry/sentry-react-native/pull/4746))
|
23 | 59 | - Add missing `popTimeToDisplayFor` in to the Android Old Arch Native interface([#4751](https://github.com/getsentry/sentry-react-native/pull/4751))
|
24 | 60 |
|
| 61 | +### Changes |
| 62 | + |
| 63 | +- Change `gradle.projectsEvaluated` to `project.afterEvaluate` in the Sentry Gradle Plugin to fix tasks not being created when using `--configure-on-demand` ([#4687](https://github.com/getsentry/sentry-react-native/pull/4687)) |
| 64 | +- Remove `SENTRY_FORCE_FOREGROUND` from Xcode Scripts as the underlying `--force-foreground` Sentry CLI is no-op since v2.37.0 ([#4689](https://github.com/getsentry/sentry-react-native/pull/4689)) |
| 65 | +- TTID and TTFD use native getters instead od events to pass timestamps to the JS layer ([#4669](https://github.com/getsentry/sentry-react-native/pull/4669), [#4681](https://github.com/getsentry/sentry-react-native/pull/4681)) |
| 66 | + |
25 | 67 | ### Dependencies
|
26 | 68 |
|
27 | 69 | - Bump Bundler Plugins from v3.2.2 to v3.3.1 ([#4693](https://github.com/getsentry/sentry-react-native/pull/4693), [#4707](https://github.com/getsentry/sentry-react-native/pull/4707), [#4720](https://github.com/getsentry/sentry-react-native/pull/4720), [#4721](https://github.com/getsentry/sentry-react-native/pull/4721))
|
|
0 commit comments