Skip to content

Commit ebe3e89

Browse files
committed
Merge branch 'main' of https://github.com/TaduJR/sentry-react-native into fix/android-ttid-event-name-matching
2 parents 95843cc + 9253345 commit ebe3e89

16 files changed

Lines changed: 101 additions & 95 deletions

File tree

.github/workflows/sample-application-expo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
fail-fast: false
5151
matrix:
5252
ios-use-frameworks: ["no-frameworks", "dynamic-frameworks"]
53-
build-type: ["dev", "production"]
53+
build-type: ["production"]
5454
steps:
5555
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
5656

@@ -147,7 +147,7 @@ jobs:
147147
strategy:
148148
fail-fast: false
149149
matrix:
150-
build-type: ["dev", "production"]
150+
build-type: ["production"]
151151
steps:
152152
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
153153

.github/workflows/sample-application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ jobs:
254254
strategy:
255255
fail-fast: false
256256
matrix:
257-
build-type: ["dev", "production"]
257+
build-type: ["production"]
258258
steps:
259259
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
260260

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,15 @@
2626

2727
### Dependencies
2828

29-
- Bump Cocoa SDK from v9.26.1 to v9.27.0 ([#6670](https://github.com/getsentry/sentry-react-native/pull/6670))
30-
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#9270)
31-
- [diff](https://github.com/getsentry/sentry-cocoa/compare/9.26.1...9.27.0)
29+
- Bump Cocoa SDK from v9.26.1 to v9.28.0 ([#6670](https://github.com/getsentry/sentry-react-native/pull/6670), [#6693](https://github.com/getsentry/sentry-react-native/pull/6693))
30+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#9280)
31+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/9.26.1...9.28.0)
32+
- Bump JavaScript SDK from v10.73.0 to v10.74.0 ([#6695](https://github.com/getsentry/sentry-react-native/pull/6695))
33+
- [changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md#10740)
34+
- [diff](https://github.com/getsentry/sentry-javascript/compare/10.73.0...10.74.0)
35+
- Bump Android SDK from v8.55.0 to v8.56.0 ([#6694](https://github.com/getsentry/sentry-react-native/pull/6694))
36+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8560)
37+
- [diff](https://github.com/getsentry/sentry-java/compare/8.55.0...8.56.0)
3238

3339
## 8.25.0
3440

dev-packages/e2e-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"devDependencies": {
1414
"@babel/preset-env": "^7.25.3",
1515
"@babel/preset-typescript": "^7.18.6",
16-
"@sentry/core": "10.73.0",
16+
"@sentry/core": "10.74.0",
1717
"@sentry/react-native": "8.25.0",
1818
"@types/node": "^20.9.3",
1919
"@types/react": "^19.1.4",

packages/core/RNSentry.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Pod::Spec.new do |s|
6363
'DEFINES_MODULE' => 'YES'
6464
}
6565

66-
sentry_cocoa_version = '9.27.0'
66+
sentry_cocoa_version = '9.28.0'
6767

6868
# Consume sentry-cocoa as a prebuilt `Sentry.xcframework` by default.
6969
#

packages/core/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ android {
178178
}
179179
}
180180

181-
def sentryAndroidVersion = '8.55.0'
181+
def sentryAndroidVersion = '8.56.0'
182182

183183
dependencies {
184184
compileOnly files('libs/replay-stubs.jar')

packages/core/android/expo-handler/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ android {
2020

2121
dependencies {
2222
compileOnly project(':expo-modules-core')
23-
compileOnly 'io.sentry:sentry-android:8.55.0'
23+
compileOnly 'io.sentry:sentry-android:8.56.0'
2424
}
0 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.55.0'
21+
compileOnly 'io.sentry:sentry:8.56.0'
2222
}

packages/core/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@
7373
"react-native": ">=0.65.0"
7474
},
7575
"dependencies": {
76-
"@sentry/browser": "10.73.0",
77-
"@sentry/bundler-plugins": "10.73.0",
76+
"@sentry/browser": "10.74.0",
77+
"@sentry/bundler-plugins": "10.74.0",
7878
"@sentry/cli": "3.7.0",
79-
"@sentry/core": "10.73.0",
79+
"@sentry/core": "10.74.0",
8080
"@sentry/expo-upload-sourcemaps": "workspace:*",
81-
"@sentry/react": "10.73.0"
81+
"@sentry/react": "10.74.0"
8282
},
8383
"devDependencies": {
8484
"@babel/core": "^7.26.7",
@@ -87,8 +87,8 @@
8787
"@mswjs/interceptors": "^0.25.15",
8888
"@react-native/babel-preset": "0.87.1",
8989
"@react-native/jest-preset": "0.87.1",
90-
"@sentry/eslint-plugin-sdk": "10.73.0",
91-
"@sentry/typescript": "10.73.0",
90+
"@sentry/eslint-plugin-sdk": "10.74.0",
91+
"@sentry/typescript": "10.74.0",
9292
"@sentry/wizard": "7.0.3",
9393
"@testing-library/react-native": "^13.2.2",
9494
"@types/jest": "^29.5.13",

0 commit comments

Comments
 (0)