Skip to content

Commit db88ae9

Browse files
committed
Merge branch 'main' into capture-app-start-errors-v7
# Conflicts: # packages/core/android/libs/replay-stubs.jar # samples/react-native/android/app/build.gradle
2 parents 72546e6 + 59d1977 commit db88ae9

File tree

22 files changed

+135
-125
lines changed

22 files changed

+135
-125
lines changed

CHANGELOG.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,26 @@
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+
## 7.10.0
10+
11+
### Fixes
12+
13+
- Fixes Android incompatibility with Firebase dependencies ([#5563](https://github.com/getsentry/sentry-react-native/pull/5563))
1014

1115
### Dependencies
1216

1317
- Bump Bundler Plugins from v4.6.2 to v4.7.0 ([#5554](https://github.com/getsentry/sentry-react-native/pull/5554))
1418
- [changelog](https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md#470)
1519
- [diff](https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/4.6.2...4.7.0)
16-
- Bump JavaScript SDK from v10.34.0 to v10.35.0 ([#5555](https://github.com/getsentry/sentry-react-native/pull/5555))
17-
- [changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md#10350)
18-
- [diff](https://github.com/getsentry/sentry-javascript/compare/10.34.0...10.35.0)
20+
- Bump Android SDK from v8.30.0 to v8.31.0 ([#5563](https://github.com/getsentry/sentry-react-native/pull/5563))
21+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8310)
22+
- [diff](https://github.com/getsentry/sentry-java/compare/8.30.0...8.31.0)
23+
- Bump Android SDK Stubs from v8.30.0 to v8.31.0 ([#5562](https://github.com/getsentry/sentry-react-native/pull/5562))
24+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8310)
25+
- [diff](https://github.com/getsentry/sentry-java/compare/8.30.0...8.31.0)
26+
- Bump JavaScript SDK from v10.34.0 to v10.36.0 ([#5555](https://github.com/getsentry/sentry-react-native/pull/5555), [#5564](https://github.com/getsentry/sentry-react-native/pull/5564))
27+
- [changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md#10360)
28+
- [diff](https://github.com/getsentry/sentry-javascript/compare/10.34.0...10.36.0)
1929

2030
## 7.9.0
2131

dev-packages/e2e-tests/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-react-native-e2e-tests",
3-
"version": "7.9.0",
3+
"version": "7.10.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": "10.35.0",
17-
"@sentry/react-native": "7.9.0",
16+
"@sentry/core": "10.36.0",
17+
"@sentry/react-native": "7.10.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": "7.9.0",
4+
"version": "7.10.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": "7.9.0",
3+
"version": "7.10.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": "7.9.0",
3+
"version": "7.10.0",
44
"packages": [
55
"packages/*",
66
"dev-packages/*",

packages/core/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ android {
5555
dependencies {
5656
compileOnly files('libs/replay-stubs.jar')
5757
implementation 'com.facebook.react:react-native:+'
58-
api 'io.sentry:sentry-android:8.30.0'
58+
api 'io.sentry:sentry-android:8.31.0'
5959
}
2 Bytes
Binary file not shown.

packages/core/android/replay-stubs/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ tasks.named('jar', Jar) {
1818
}
1919

2020
dependencies {
21-
compileOnly 'io.sentry:sentry:8.30.0'
21+
compileOnly 'io.sentry:sentry:8.31.0'
2222
}

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 = "7.9.0";
5+
static final String REACT_NATIVE_SDK_PACKAGE_VERSION = "7.10.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 = @"7.9.0";
6+
NSString *const REACT_NATIVE_SDK_PACKAGE_VERSION = @"7.10.0";

0 commit comments

Comments
 (0)