Skip to content

Commit 03ece25

Browse files
committed
Merge branch 'main' into feedback-ui
# Conflicts: # CHANGELOG.md # samples/react-native/package.json # yarn.lock
2 parents f8988bc + e99226d commit 03ece25

File tree

21 files changed

+889
-466
lines changed

21 files changed

+889
-466
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
### Features
1212

13-
- Send Sentry react-native SDK version in the session replay event (#4450)
1413
- User Feedback Form Component Beta ([#4435](https://github.com/getsentry/sentry-react-native/pull/4435))
1514

1615
To collect user feedback from inside your application call `Sentry.showFeedbackForm()` or add the `FeedbackForm` component.
@@ -21,6 +20,18 @@
2120
<FeedbackForm/>
2221
```
2322

23+
### Dependencies
24+
25+
- Bump JavaScript SDK from v8.53.0 to v8.54.0 ([#4503](https://github.com/getsentry/sentry-react-native/pull/4503))
26+
- [changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md#8540)
27+
- [diff](https://github.com/getsentry/sentry-javascript/compare/8.53.0...8.54.0)
28+
29+
## 6.6.0
30+
31+
### Features
32+
33+
- Send Sentry React Native SDK version in the Session Replay Events on iOS ([#4450](https://github.com/getsentry/sentry-react-native/pull/4450))
34+
2435
### Fixes
2536

2637
- Add mechanism field to unhandled rejection errors ([#4457](https://github.com/getsentry/sentry-react-native/pull/4457))

dev-packages/e2e-tests/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-react-native-e2e-tests",
3-
"version": "6.5.0",
3+
"version": "6.6.0",
44
"private": true,
55
"description": "Sentry React Native End to End Tests Library",
66
"main": "dist/index.js",
@@ -13,8 +13,8 @@
1313
"devDependencies": {
1414
"@babel/preset-env": "^7.25.3",
1515
"@babel/preset-typescript": "^7.18.6",
16-
"@sentry/core": "8.53.0",
17-
"@sentry/react-native": "6.5.0",
16+
"@sentry/core": "8.54.0",
17+
"@sentry/react-native": "6.6.0",
1818
"@types/node": "^20.9.3",
1919
"@types/react": "^18.2.64",
2020
"appium": "2.4.1",
@@ -23,7 +23,7 @@
2323
"babel-jest": "^29.7.0",
2424
"jest": "^29.7.0",
2525
"react": "18.3.1",
26-
"react-native": "0.76.3",
26+
"react-native": "0.77.0",
2727
"react-native-launch-arguments": "^4.0.2",
2828
"typescript": "4.9.5",
2929
"webdriverio": "^8.27.0"

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.5.0",
4+
"version": "6.6.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": "0.0.1",
3+
"version": "6.6.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.5.0",
3+
"version": "6.6.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.5.0";
5+
static final String REACT_NATIVE_SDK_PACKAGE_VERSION = "6.6.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.5.0";
6+
NSString *const REACT_NATIVE_SDK_PACKAGE_VERSION = @"6.6.0";

packages/core/package.json

Lines changed: 14 additions & 14 deletions
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.5.0",
5+
"version": "6.6.0",
66
"description": "Official Sentry SDK for react-native",
77
"typings": "dist/js/index.d.ts",
88
"types": "dist/js/index.d.ts",
@@ -66,32 +66,32 @@
6666
},
6767
"dependencies": {
6868
"@sentry/babel-plugin-component-annotate": "2.20.1",
69-
"@sentry/browser": "8.53.0",
69+
"@sentry/browser": "8.54.0",
7070
"@sentry/cli": "2.41.1",
71-
"@sentry/core": "8.53.0",
72-
"@sentry/react": "8.53.0",
73-
"@sentry/types": "8.53.0",
74-
"@sentry/utils": "8.53.0"
71+
"@sentry/core": "8.54.0",
72+
"@sentry/react": "8.54.0",
73+
"@sentry/types": "8.54.0",
74+
"@sentry/utils": "8.54.0"
7575
},
7676
"devDependencies": {
7777
"@babel/core": "^7.25.2",
7878
"@expo/metro-config": "0.19.5",
7979
"@mswjs/interceptors": "^0.25.15",
80-
"@react-native/babel-preset": "0.76.3",
81-
"@sentry-internal/eslint-config-sdk": "8.53.0",
82-
"@sentry-internal/eslint-plugin-sdk": "8.53.0",
83-
"@sentry-internal/typescript": "8.53.0",
84-
"@sentry/wizard": "3.39.0",
80+
"@react-native/babel-preset": "0.77.0",
81+
"@sentry-internal/eslint-config-sdk": "8.54.0",
82+
"@sentry-internal/eslint-plugin-sdk": "8.54.0",
83+
"@sentry-internal/typescript": "8.54.0",
84+
"@sentry/wizard": "3.40.0",
8585
"@testing-library/react-native": "^12.7.2",
86-
"@types/jest": "^29.5.3",
86+
"@types/jest": "^29.5.13",
8787
"@types/node": "^20.9.3",
8888
"@types/react": "^18.2.64",
8989
"@types/uglify-js": "^3.17.2",
9090
"@types/uuid": "^9.0.4",
9191
"@types/xmlhttprequest": "^1.8.2",
9292
"@typescript-eslint/eslint-plugin": "^5.48.0",
9393
"@typescript-eslint/parser": "^5.48.0",
94-
"babel-jest": "^29.6.2",
94+
"babel-jest": "^29.6.3",
9595
"babel-plugin-module-resolver": "^5.0.0",
9696
"babel-preset-fbjs": "^3.4.0",
9797
"downlevel-dts": "^0.11.0",
@@ -107,7 +107,7 @@
107107
"metro": "0.81.0",
108108
"prettier": "^2.0.5",
109109
"react": "18.3.1",
110-
"react-native": "0.76.3",
110+
"react-native": "0.77.0",
111111
"react-test-renderer": "^18.3.1",
112112
"rimraf": "^4.1.1",
113113
"ts-jest": "^29.1.1",

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.5.0';
3+
export const SDK_VERSION = '6.6.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.5.0",
3+
"version": "6.6.0",
44
"private": true,
55
"scripts": {
66
"android": "react-native run-android",

0 commit comments

Comments
 (0)