|
6 | 6 | > make sure you follow our [migration guide](https://docs.sentry.io/platforms/react-native/migration/) first.
|
7 | 7 | <!-- prettier-ignore-end -->
|
8 | 8 |
|
| 9 | +## 6.8.0 |
| 10 | + |
| 11 | +### Features |
| 12 | + |
| 13 | +- Adds Sentry Android Gradle Plugin as an experimental Expo plugin feature ([#4440](https://github.com/getsentry/sentry-react-native/pull/4440)) |
| 14 | + |
| 15 | + To enable the plugin add the `enableAndroidGradlePlugin` in the `@sentry/react-native/expo` of the Expo application configuration. |
| 16 | + |
| 17 | + ```js |
| 18 | + "plugins": [ |
| 19 | + [ |
| 20 | + "@sentry/react-native/expo", |
| 21 | + { |
| 22 | + "experimental_android": { |
| 23 | + "enableAndroidGradlePlugin": true, |
| 24 | + } |
| 25 | + } |
| 26 | + ], |
| 27 | + ``` |
| 28 | + |
| 29 | + To learn more about the available configuration options visit [the documentation](https://docs.sentry.io/platforms/react-native/manual-setup/expo/gradle). |
| 30 | + |
| 31 | +### Fixes |
| 32 | + |
| 33 | +- Remove `error:` prefix from `collect-modules.sh` to avoid failing iOS builds ([#4570](https://github.com/getsentry/sentry-react-native/pull/4570)) |
| 34 | +- Sentry Module Collection Script Fails with Spaces in Node Path on iOS ([#4559](https://github.com/getsentry/sentry-react-native/pull/4559)) |
| 35 | +- Various crashes and issues of Session Replay on Android. See the Android SDK version bump for more details. ([#4529](https://github.com/getsentry/sentry-react-native/pull/4529)) |
| 36 | +- `Sentry.setUser(null)` doesn't crash on iOS with RN 0.77.1 ([#4567](https://github.com/getsentry/sentry-react-native/pull/4567)) |
| 37 | +- Avoid importing `tslib` in Sentry Metro Plugin ([#4573](https://github.com/getsentry/sentry-react-native/pull/4573)) |
| 38 | + |
| 39 | +### Dependencies |
| 40 | + |
| 41 | +- Bump Android SDK from v7.20.1 to v7.22.0 ([#4529](https://github.com/getsentry/sentry-react-native/pull/4529)) |
| 42 | + - [changelog](https://github.com/getsentry/sentry-java/blob/7.x.x/CHANGELOG.md#7220) |
| 43 | + - [diff](https://github.com/getsentry/sentry-java/compare/7.20.1...7.22.0) |
| 44 | +- Bump Cocoa SDK from v8.44.0 to v8.45.0 ([#4537](https://github.com/getsentry/sentry-react-native/pull/4537)) |
| 45 | + - [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8450) |
| 46 | + - [diff](https://github.com/getsentry/sentry-cocoa/compare/8.44.0...8.45.0) |
| 47 | +- Bump CLI from v2.41.1 to v2.42.1 ([#4563](https://github.com/getsentry/sentry-react-native/pull/4563)) |
| 48 | + - [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2421) |
| 49 | + - [diff](https://github.com/getsentry/sentry-cli/compare/2.41.1...2.42.1) |
| 50 | +- Bump Bundler Plugins from v3.1.2 to v3.2.0 ([#4565](https://github.com/getsentry/sentry-react-native/pull/4565)) |
| 51 | + - [changelog](https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md#320) |
| 52 | + - [diff](https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/3.1.2...3.2.0) |
| 53 | + |
| 54 | + |
9 | 55 | ## 6.7.0-alpha.0
|
10 | 56 |
|
11 | 57 | ### Features
|
|
60 | 106 | - Extract iOS native initialization to standalone structures ([#4442](https://github.com/getsentry/sentry-react-native/pull/4442))
|
61 | 107 | - Extract Android native initialization to standalone structures ([#4445](https://github.com/getsentry/sentry-react-native/pull/4445))
|
62 | 108 |
|
63 |
| -### Features |
64 |
| -
|
65 |
| -- Adds Sentry Android Gradle Plugin as an experimental Expo plugin feature ([#4440](https://github.com/getsentry/sentry-react-native/pull/4440)) |
66 |
| -
|
67 |
| - To enable the plugin add the `enableAndroidGradlePlugin` in the `@sentry/react-native/expo` of the Expo application configuration. |
68 |
| -
|
69 |
| - ```js |
70 |
| - "plugins": [ |
71 |
| - [ |
72 |
| - "@sentry/react-native/expo", |
73 |
| - { |
74 |
| - "experimental_android": { |
75 |
| - "enableAndroidGradlePlugin": true, |
76 |
| - } |
77 |
| - } |
78 |
| - ], |
79 |
| - ``` |
80 |
| - |
81 |
| - To learn more about the available configuration options visit [the documentation](https://docs.sentry.io/platforms/react-native/manual-setup/expo/expo-sagp/). |
82 |
| - |
83 |
| -### Fixes |
84 |
| - |
85 |
| -- Various crashes and issues of Session Replay on Android. See the Android SDK version bump for more details. ([#4529](https://github.com/getsentry/sentry-react-native/pull/4529)) |
86 |
| - |
87 |
| -### Dependencies |
88 |
| - |
89 |
| -- Bump Android SDK from v7.20.1 to v7.22.0 ([#4529](https://github.com/getsentry/sentry-react-native/pull/4529)) |
90 |
| - - [changelog](https://github.com/getsentry/sentry-java/blob/7.x.x/CHANGELOG.md#7220) |
91 |
| - - [diff](https://github.com/getsentry/sentry-java/compare/7.20.1...7.22.0) |
92 |
| -- Bump Cocoa SDK from v8.44.0 to v8.45.0 ([#4537](https://github.com/getsentry/sentry-react-native/pull/4537)) |
93 |
| - - [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8450) |
94 |
| - - [diff](https://github.com/getsentry/sentry-cocoa/compare/8.44.0...8.45.0) |
95 |
| - |
96 | 109 | ## 6.7.0
|
97 | 110 |
|
98 | 111 | ### Features
|
|
0 commit comments