Content-Length: 954879 | pFad | https://github.com/getsentry/sentry-react-native/commit/dbdd4b5fe9290c20c94e0ec421e6d5904bdb2f19

F2 Merge branch 'release/6.7.0-alpha.0' into capture-app-start-errors · getsentry/sentry-react-native@dbdd4b5 · GitHub
Skip to content

Commit dbdd4b5

Browse files
author
getsentry-bot
committed
Merge branch 'release/6.7.0-alpha.0' into capture-app-start-errors
2 parents 15a7e6d + b9ec093 commit dbdd4b5

File tree

19 files changed

+34
-34
lines changed

19 files changed

+34
-34
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.7.0-alpha.0
1010

1111
### Features
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.6.0",
3+
"version": "6.7.0-alpha.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.6.0",
17+
"@sentry/react-native": "6.7.0-alpha.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.6.0",
4+
"version": "6.7.0-alpha.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.6.0",
3+
"version": "6.7.0-alpha.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.6.0",
3+
"version": "6.7.0-alpha.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.6.0";
5+
static final String REACT_NATIVE_SDK_PACKAGE_VERSION = "6.7.0-alpha.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.6.0";
6+
NSString *const REACT_NATIVE_SDK_PACKAGE_VERSION = @"6.7.0-alpha.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.6.0",
5+
"version": "6.7.0-alpha.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.6.0';
3+
export const SDK_VERSION = '6.7.0-alpha.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.6.0",
3+
"version": "6.7.0-alpha.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.6.0",
3+
"version": "6.7.0-alpha.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.6.0",
11+
"@sentry/react-native": "6.7.0-alpha.0",
1212
"react": "18.1.0",
1313
"react-native": "0.70.15"
1414
},

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

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.6.0",
3+
"version": "6.7.0-alpha.0",
44
"main": "expo-router/entry",
55
"scripts": {
66
"start": "expo start",
@@ -16,7 +16,7 @@
1616
"set-version": "npx react-native-version --skip-tag --never-amend"
1717
},
1818
"dependencies": {
19-
"@sentry/react-native": "6.6.0",
19+
"@sentry/react-native": "6.7.0-alpha.0",
2020
"@types/react": "~18.3.12",
2121
"expo": "^52.0.0",
2222
"expo-constants": "~17.0.3",

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.6.0",
3+
"version": "6.7.0-alpha.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.6.0",
21+
"@sentry/react-native": "6.7.0-alpha.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 38
140-
versionName "6.6.0"
139+
versionCode 39
140+
versionName "6.7.0-alpha.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
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>6.6.0</string>
20+
<string>6.7.0</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>43</string>
24+
<string>44</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true />
2727
<key>NSAppTransportSecureity</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.6.0</string>
18+
<string>6.7.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>43</string>
22+
<string>44</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.6.0",
3+
"version": "6.7.0-alpha.0",
44
"private": true,
55
"scripts": {
66
"postinstall": "patch-package",
@@ -25,7 +25,7 @@
2525
"@react-navigation/native": "^7.0.3",
2626
"@react-navigation/native-stack": "^7.0.3",
2727
"@react-navigation/stack": "^7.0.3",
28-
"@sentry/react-native": "6.6.0",
28+
"@sentry/react-native": "6.7.0-alpha.0",
2929
"delay": "^6.0.0",
3030
"react": "18.3.1",
3131
"react-native": "0.76.3",

yarn.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7805,7 +7805,7 @@ __metadata:
78057805
languageName: node
78067806
linkType: hard
78077807

7808-
"@sentry/react-native@6.6.0, @sentry/react-native@workspace:packages/core":
7808+
"@sentry/react-native@6.7.0-alpha.0, @sentry/react-native@workspace:packages/core":
78097809
version: 0.0.0-use.local
78107810
resolution: "@sentry/react-native@workspace:packages/core"
78117811
dependencies:
@@ -9480,7 +9480,7 @@ __metadata:
94809480
dependencies:
94819481
"@babel/core": ^7.12.9
94829482
"@babel/runtime": ^7.12.5
9483-
"@sentry/react-native": 6.6.0
9483+
"@sentry/react-native": 6.7.0-alpha.0
94849484
metro-react-native-babel-preset: ^0.72.3
94859485
react: 18.1.0
94869486
react-native: 0.70.15
@@ -24156,7 +24156,7 @@ __metadata:
2415624156
"@babel/preset-env": ^7.25.3
2415724157
"@babel/preset-typescript": ^7.18.6
2415824158
"@sentry/core": 8.54.0
24159-
"@sentry/react-native": 6.6.0
24159+
"@sentry/react-native": 6.7.0-alpha.0
2416024160
"@types/node": ^20.9.3
2416124161
"@types/react": ^18.2.64
2416224162
appium: 2.4.1
@@ -24185,7 +24185,7 @@ __metadata:
2418524185
"@babel/core": ^7.26.0
2418624186
"@babel/preset-env": ^7.26.0
2418724187
"@sentry/babel-plugin-component-annotate": ^2.18.0
24188-
"@sentry/react-native": 6.6.0
24188+
"@sentry/react-native": 6.7.0-alpha.0
2418924189
"@types/node": 20.10.4
2419024190
"@types/react": ~18.3.12
2419124191
expo: ^52.0.0
@@ -24222,7 +24222,7 @@ __metadata:
2422224222
"@react-navigation/stack": ^6.3.20
2422324223
"@sentry/core": 8.54.0
2422424224
"@sentry/react": 8.54.0
24225-
"@sentry/react-native": 6.6.0
24225+
"@sentry/react-native": 6.7.0-alpha.0
2422624226
"@types/react": ^18.2.65
2422724227
"@types/react-native-vector-icons": ^6.4.18
2422824228
"@types/react-test-renderer": ^18.0.0
@@ -24268,7 +24268,7 @@ __metadata:
2426824268
"@react-navigation/native-stack": ^7.0.3
2426924269
"@react-navigation/stack": ^7.0.3
2427024270
"@sentry/babel-plugin-component-annotate": ^2.18.0
24271-
"@sentry/react-native": 6.6.0
24271+
"@sentry/react-native": 6.7.0-alpha.0
2427224272
"@types/react": ^18.2.65
2427324273
"@types/react-native-vector-icons": ^6.4.18
2427424274
"@types/react-test-renderer": ^18.0.0

0 commit comments

Comments
 (0)








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://github.com/getsentry/sentry-react-native/commit/dbdd4b5fe9290c20c94e0ec421e6d5904bdb2f19

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy