Skip to content

Commit a4dc853

Browse files
committed
release: 6.14.0
1 parent a4864d6 commit a4dc853

File tree

19 files changed

+35
-35
lines changed

19 files changed

+35
-35
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
> make sure you follow our [migration guide](https://docs.sentry.io/platforms/react-native/migration/) first.
77
<!-- prettier-ignore-end -->
88
9-
## Unreleased
9+
## 6.14.0
1010

1111
### Fixes
1212

dev-packages/e2e-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-react-native-e2e-tests",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"private": true,
55
"description": "Sentry React Native End to End Tests Library",
66
"main": "dist/index.js",
@@ -14,7 +14,7 @@
1414
"@babel/preset-env": "^7.25.3",
1515
"@babel/preset-typescript": "^7.18.6",
1616
"@sentry/core": "8.54.0",
17-
"@sentry/react-native": "6.13.1",
17+
"@sentry/react-native": "6.14.0",
1818
"@types/node": "^20.9.3",
1919
"@types/react": "^18.2.64",
2020
"appium": "2.4.1",

dev-packages/type-check/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sentry-react-native-type-check",
33
"private": true,
4-
"version": "6.13.1",
4+
"version": "6.14.0",
55
"scripts": {
66
"type-check": "./run-type-check.sh"
77
}

dev-packages/utils/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-samples-utils",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"description": "Internal Samples Utils",
55
"main": "index.js",
66
"license": "MIT",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"packages": [
55
"packages/*",
66
"dev-packages/*",

packages/core/android/src/main/java/io/sentry/react/RNSentryVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
class RNSentryVersion {
44
static final String REACT_NATIVE_SDK_PACKAGE_NAME = "npm:@sentry/react-native";
5-
static final String REACT_NATIVE_SDK_PACKAGE_VERSION = "6.13.1";
5+
static final String REACT_NATIVE_SDK_PACKAGE_VERSION = "6.14.0";
66
static final String NATIVE_SDK_NAME = "sentry.native.android.react-native";
77
static final String ANDROID_SDK_NAME = "sentry.java.android.react-native";
88
static final String REACT_NATIVE_SDK_NAME = "sentry.javascript.react-native";

packages/core/ios/RNSentryVersion.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
NSString *const NATIVE_SDK_NAME = @"sentry.cocoa.react-native";
44
NSString *const REACT_NATIVE_SDK_NAME = @"sentry.javascript.react-native";
55
NSString *const REACT_NATIVE_SDK_PACKAGE_NAME = @"npm:@sentry/react-native";
6-
NSString *const REACT_NATIVE_SDK_PACKAGE_VERSION = @"6.13.1";
6+
NSString *const REACT_NATIVE_SDK_PACKAGE_VERSION = @"6.14.0";

packages/core/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": "6.13.1",
5+
"version": "6.14.0",
66
"description": "Official Sentry SDK for react-native",
77
"typings": "dist/js/index.d.ts",
88
"types": "dist/js/index.d.ts",

packages/core/src/js/version.ts

Lines changed: 1 addition & 1 deletion
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 = '6.13.1';
3+
export const SDK_VERSION = '6.14.0';

performance-tests/TestAppPlain/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "TestAppPlain",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"private": true,
55
"scripts": {
66
"android": "react-native run-android",

performance-tests/TestAppSentry/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "TestAppSentry",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"private": true,
55
"scripts": {
66
"android": "react-native run-android",
77
"ios": "react-native run-ios",
88
"start": "react-native start"
99
},
1010
"dependencies": {
11-
"@sentry/react-native": "6.13.1",
11+
"@sentry/react-native": "6.14.0",
1212
"react": "18.1.0",
1313
"react-native": "0.70.15"
1414
},

samples/expo/app.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"jsEngine": "hermes",
66
"newArchEnabled": true,
77
"scheme": "sentry-expo-sample",
8-
"version": "6.13.1",
8+
"version": "6.14.0",
99
"orientation": "portrait",
1010
"icon": "./assets/icon.png",
1111
"userInterfaceStyle": "light",
@@ -20,15 +20,15 @@
2020
"ios": {
2121
"supportsTablet": true,
2222
"bundleIdentifier": "io.sentry.expo.sample",
23-
"buildNumber": "46"
23+
"buildNumber": "47"
2424
},
2525
"android": {
2626
"adaptiveIcon": {
2727
"foregroundImage": "./assets/adaptive-icon.png",
2828
"backgroundColor": "#ffffff"
2929
},
3030
"package": "io.sentry.expo.sample",
31-
"versionCode": 46
31+
"versionCode": 47
3232
},
3333
"web": {
3434
"bundler": "metro",
@@ -93,4 +93,4 @@
9393
"url": "https://u.expo.dev/00000000-0000-0000-0000-000000000000"
9494
}
9595
}
96-
}
96+
}

samples/expo/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-react-native-expo-sample",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"main": "expo-router/entry",
55
"scripts": {
66
"start": "expo start",
@@ -17,7 +17,7 @@
1717
"eas-build-pre-install": "npm i -g corepack && yarn install --no-immutable --inline-builds && yarn workspace @sentry/react-native build"
1818
},
1919
"dependencies": {
20-
"@sentry/react-native": "6.13.1",
20+
"@sentry/react-native": "6.14.0",
2121
"@types/react": "~19.0.10",
2222
"expo": "^53.0.0",
2323
"expo-constants": "~17.1.5",

samples/react-native-macos/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-react-native-macos-sample",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"private": true,
55
"scripts": {
66
"start": "react-native start --experimental-debugger",
@@ -18,7 +18,7 @@
1818
"@react-navigation/stack": "^6.3.20",
1919
"@sentry/core": "8.54.0",
2020
"@sentry/react": "8.54.0",
21-
"@sentry/react-native": "6.13.1",
21+
"@sentry/react-native": "6.14.0",
2222
"delay": "^6.0.0",
2323
"react": "18.2.0",
2424
"react-native": "0.73.9",

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ android {
136136
applicationId "io.sentry.reactnative.sample"
137137
minSdkVersion rootProject.ext.minSdkVersion
138138
targetSdkVersion rootProject.ext.targetSdkVersion
139-
versionCode 48
140-
versionName "6.13.1"
139+
versionCode 49
140+
versionName "6.14.0"
141141
}
142142

143143
signingConfigs {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
<key>CFBundlePackageType</key>
2020
<string>APPL</string>
2121
<key>CFBundleShortVersionString</key>
22-
<string>6.13.1</string>
22+
<string>6.14.0</string>
2323
<key>CFBundleSignature</key>
2424
<string>????</string>
2525
<key>CFBundleVersion</key>
26-
<string>53</string>
26+
<string>54</string>
2727
<key>LSRequiresIPhoneOS</key>
2828
<true />
2929
<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>6.13.1</string>
18+
<string>6.14.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>53</string>
22+
<string>54</string>
2323
</dict>
2424
</plist>

samples/react-native/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-react-native-sample",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"private": true,
55
"scripts": {
66
"android": "react-native run-android",
@@ -27,7 +27,7 @@
2727
"@react-navigation/native-stack": "7.3.12",
2828
"@react-navigation/stack": "7.3.1",
2929
"@sentry/core": "8.54.0",
30-
"@sentry/react-native": "6.13.1",
30+
"@sentry/react-native": "6.14.0",
3131
"@shopify/flash-list": "1.8.0",
3232
"delay": "^6.0.0",
3333
"react": "19.0.0",

yarn.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8879,7 +8879,7 @@ __metadata:
88798879
languageName: node
88808880
linkType: hard
88818881

8882-
"@sentry/react-native@6.13.1, @sentry/react-native@workspace:packages/core":
8882+
"@sentry/react-native@6.14.0, @sentry/react-native@workspace:packages/core":
88838883
version: 0.0.0-use.local
88848884
resolution: "@sentry/react-native@workspace:packages/core"
88858885
dependencies:
@@ -10580,7 +10580,7 @@ __metadata:
1058010580
dependencies:
1058110581
"@babel/core": ^7.12.9
1058210582
"@babel/runtime": ^7.12.5
10583-
"@sentry/react-native": 6.13.1
10583+
"@sentry/react-native": 6.14.0
1058410584
metro-react-native-babel-preset: ^0.72.3
1058510585
react: 18.1.0
1058610586
react-native: 0.70.15
@@ -26312,7 +26312,7 @@ __metadata:
2631226312
"@babel/preset-env": ^7.25.3
2631326313
"@babel/preset-typescript": ^7.18.6
2631426314
"@sentry/core": 8.54.0
26315-
"@sentry/react-native": 6.13.1
26315+
"@sentry/react-native": 6.14.0
2631626316
"@types/node": ^20.9.3
2631726317
"@types/react": ^18.2.64
2631826318
appium: 2.4.1
@@ -26341,7 +26341,7 @@ __metadata:
2634126341
"@babel/core": ^7.26.0
2634226342
"@babel/preset-env": ^7.26.0
2634326343
"@sentry/babel-plugin-component-annotate": 3.4.0
26344-
"@sentry/react-native": 6.13.1
26344+
"@sentry/react-native": 6.14.0
2634526345
"@types/node": 20.10.4
2634626346
"@types/react": ~19.0.10
2634726347
expo: ^53.0.0
@@ -26381,7 +26381,7 @@ __metadata:
2638126381
"@react-navigation/stack": ^6.3.20
2638226382
"@sentry/core": 8.54.0
2638326383
"@sentry/react": 8.54.0
26384-
"@sentry/react-native": 6.13.1
26384+
"@sentry/react-native": 6.14.0
2638526385
"@types/react": ^18.2.65
2638626386
"@types/react-native-vector-icons": ^6.4.18
2638726387
"@types/react-test-renderer": ^18.0.0
@@ -26428,7 +26428,7 @@ __metadata:
2642826428
"@react-navigation/stack": 7.3.1
2642926429
"@sentry/babel-plugin-component-annotate": 3.4.0
2643026430
"@sentry/core": 8.54.0
26431-
"@sentry/react-native": 6.13.1
26431+
"@sentry/react-native": 6.14.0
2643226432
"@shopify/flash-list": 1.8.0
2643326433
"@types/jest": ^29.5.14
2643426434
"@types/node": ^22.13.1

0 commit comments

Comments
 (0)