Skip to content

Commit 4cd26bd

Browse files
Merge branch 'main' into v6
2 parents 643c544 + 7b891b1 commit 4cd26bd

File tree

14 files changed

+66
-22
lines changed

14 files changed

+66
-22
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,17 @@
7777
});
7878
```
7979

80+
- Add `spotlight` option ([#4023](https://github.com/getsentry/sentry-react-native/pull/4023))
81+
- Deprecating `enableSpotlight` and `spotlightSidecarUrl`
82+
83+
### Dependencies
84+
85+
- Bump JavaScript SDK from v7.118.0 to v8.11.0 ([#3910](https://github.com/getsentry/sentry-react-native/pull/3910))
86+
- [changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md#8110)
87+
- [diff](https://github.com/getsentry/sentry-javascript/compare/7.118.0...8.11.0)
88+
89+
## 5.29.0
90+
8091
### Features
8192

8293
- `TimeToInitialDisplay` and `TimeToFullDisplay` start the time to display spans on mount ([#4020](https://github.com/getsentry/sentry-react-native/pull/4020))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@sentry/react-native",
33
"homepage": "https://github.com/getsentry/sentry-react-native",
44
"repository": "https://github.com/getsentry/sentry-react-native",
5-
"version": "5.28.0",
5+
"version": "5.29.0",
66
"description": "Official Sentry SDK for react-native",
77
"typings": "dist/js/index.d.ts",
88
"types": "dist/js/index.d.ts",

samples/expo/app.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"slug": "sentry-react-native-expo-sample",
55
"jsEngine": "hermes",
66
"scheme": "sentry-expo-sample",
7-
"version": "5.28.0",
7+
"version": "5.29.0",
88
"orientation": "portrait",
99
"icon": "./assets/icon.png",
1010
"userInterfaceStyle": "light",
@@ -19,15 +19,15 @@
1919
"ios": {
2020
"supportsTablet": true,
2121
"bundleIdentifier": "io.sentry.expo.sample",
22-
"buildNumber": "16"
22+
"buildNumber": "17"
2323
},
2424
"android": {
2525
"adaptiveIcon": {
2626
"foregroundImage": "./assets/adaptive-icon.png",
2727
"backgroundColor": "#ffffff"
2828
},
2929
"package": "io.sentry.expo.sample",
30-
"versionCode": 16
30+
"versionCode": 17
3131
},
3232
"web": {
3333
"bundler": "metro",

samples/expo/app/_layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ process.env.EXPO_SKIP_DURING_EXPORT !== 'true' && Sentry.init({
8282
// replaysOnErrorSampleRate: 1.0,
8383
replaysSessionSampleRate: 1.0,
8484
},
85-
enableSpotlight: true,
85+
spotlight: true,
8686
});
8787

8888
function RootLayout() {

samples/expo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-react-native-expo-sample",
3-
"version": "5.28.0",
3+
"version": "5.29.0",
44
"main": "expo-router/entry",
55
"scripts": {
66
"start": "expo start",

samples/react-native/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ android {
134134
applicationId "io.sentry.reactnative.sample"
135135
minSdkVersion rootProject.ext.minSdkVersion
136136
targetSdkVersion rootProject.ext.targetSdkVersion
137-
versionCode 19
138-
versionName "5.28.0"
137+
versionCode 20
138+
versionName "5.29.0"
139139
}
140140

141141
signingConfigs {

samples/react-native/ios/sentryreactnativesample/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>5.28.0</string>
20+
<string>5.29.0</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>23</string>
24+
<string>24</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true />
2727
<key>NSAppTransportSecurity</key>

samples/react-native/ios/sentryreactnativesampleTests/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>5.28.0</string>
18+
<string>5.29.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>23</string>
22+
<string>24</string>
2323
</dict>
2424
</plist>

samples/react-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-react-native-sample",
3-
"version": "5.28.0",
3+
"version": "5.29.0",
44
"private": true,
55
"scripts": {
66
"postinstall": "patch-package",

samples/react-native/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Sentry.init({
115115
// replaysSessionSampleRate: 1.0,
116116
replaysOnErrorSampleRate: 1.0,
117117
},
118-
enableSpotlight: true,
118+
spotlight: true,
119119
// This should be disabled when manually initializing the native SDK
120120
// Note that options from JS are not passed to the native SDKs when initialized manually
121121
autoInitializeNativeSdk: true,

0 commit comments

Comments
 (0)