Skip to content

Commit 86bf3b5

Browse files
author
getsentry-bot
committed
Merge branch 'release/5.35.0' into v5
2 parents 25d26df + 1d15d81 commit 86bf3b5

File tree

9 files changed

+21
-11
lines changed

9 files changed

+21
-11
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 5.35.0
4+
5+
### Fixes
6+
7+
- Enhanced accuracy of time-to-display spans. ([#4042](https://github.com/getsentry/sentry-react-native/pull/4042))
8+
- TimeToDisplay correctly warns about not supporting the new React Native architecture ([#4160](https://github.com/getsentry/sentry-react-native/pull/4160))
9+
- Native Wrapper method `setContext` ensures only values convertible to NativeMap are passed ([#4168](https://github.com/getsentry/sentry-react-native/pull/4168))
10+
- Native Wrapper method `setExtra` ensures only stringified values are passed ([#4168](https://github.com/getsentry/sentry-react-native/pull/4168))
11+
- `setContext('key', null)` removes the key value also from platform context ([#4168](https://github.com/getsentry/sentry-react-native/pull/4168))
12+
313
## 5.35.0-beta.0
414

515
### Fixes

package.json

+1-1
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.35.0-beta.0",
5+
"version": "5.35.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

+3-3
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.35.0-beta.0",
7+
"version": "5.35.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": "26"
22+
"buildNumber": "27"
2323
},
2424
"android": {
2525
"adaptiveIcon": {
2626
"foregroundImage": "./assets/adaptive-icon.png",
2727
"backgroundColor": "#ffffff"
2828
},
2929
"package": "io.sentry.expo.sample",
30-
"versionCode": 26
30+
"versionCode": 27
3131
},
3232
"web": {
3333
"bundler": "metro",

samples/expo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-react-native-expo-sample",
3-
"version": "5.35.0-beta.0",
3+
"version": "5.35.0",
44
"main": "expo-router/entry",
55
"scripts": {
66
"start": "expo start",

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

+2-2
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 29
138-
versionName "5.35.0-beta.0"
137+
versionCode 30
138+
versionName "5.35.0"
139139
}
140140

141141
signingConfigs {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>33</string>
24+
<string>34</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true />
2727
<key>NSAppTransportSecurity</key>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>33</string>
22+
<string>34</string>
2323
</dict>
2424
</plist>

samples/react-native/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-react-native-sample",
3-
"version": "5.35.0-beta.0",
3+
"version": "5.35.0",
44
"private": true,
55
"scripts": {
66
"postinstall": "patch-package",

src/js/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export const SDK_PACKAGE_NAME = 'npm:@sentry/react-native';
22
export const SDK_NAME = 'sentry.javascript.react-native';
3-
export const SDK_VERSION = '5.35.0-beta.0';
3+
export const SDK_VERSION = '5.35.0';

0 commit comments

Comments
 (0)