Skip to content

Commit f293655

Browse files
committed
Bump core to 0.80
1 parent 6a70a7e commit f293655

11 files changed

+444
-152
lines changed

packages/core/package.json

Lines changed: 10 additions & 8 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": "7.2.0",
5+
"version": "7.1.0",
66
"description": "Official Sentry SDK for react-native",
77
"typings": "dist/js/index.d.ts",
88
"types": "dist/js/index.d.ts",
@@ -76,18 +76,19 @@
7676
"@sentry/types": "10.12.0"
7777
},
7878
"devDependencies": {
79-
"@babel/core": "^7.25.2",
79+
"@babel/core": "^7.26.7",
8080
"@expo/metro-config": "~0.20.0",
8181
"@mswjs/interceptors": "^0.25.15",
82-
"@react-native/babel-preset": "0.77.1",
82+
"@react-native/babel-preset": "0.80.0",
8383
"@sentry-internal/eslint-config-sdk": "10.12.0",
8484
"@sentry-internal/eslint-plugin-sdk": "10.12.0",
8585
"@sentry-internal/typescript": "10.12.0",
8686
"@sentry/wizard": "6.5.0",
87-
"@testing-library/react-native": "^12.7.2",
87+
"@testing-library/react-native": "^13.2.2",
8888
"@types/jest": "^29.5.13",
8989
"@types/node": "^20.9.3",
90-
"@types/react": "^18.2.64",
90+
"@types/react": "^19.1.0",
91+
"@types/react-test-renderer": "^19.1.0",
9192
"@types/uglify-js": "^3.17.2",
9293
"@types/uuid": "^9.0.4",
9394
"@types/xmlhttprequest": "^1.8.2",
@@ -102,14 +103,15 @@
102103
"eslint-plugin-react-native": "^3.8.1",
103104
"expo": "^53.0.0",
104105
"expo-module-scripts": "3.1.0",
105-
"jest": "^29.6.2",
106+
"jest": "^29.6.3",
106107
"jest-environment-jsdom": "^29.6.2",
107108
"jest-extended": "^4.0.2",
108109
"madge": "^6.1.0",
109110
"metro": "0.83.1",
110111
"prettier": "^2.0.5",
111-
"react": "18.3.1",
112-
"react-native": "0.77.1",
112+
"react": "19.1.0",
113+
"react-native": "0.80.1",
114+
"react-test-renderer": "19.1.0",
113115
"rimraf": "^4.1.1",
114116
"ts-jest": "^29.3.1",
115117
"typescript": "4.9.5",

packages/core/src/js/RNSentryReplayMaskNativeComponent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { HostComponent, ViewProps } from 'react-native';
22
// The default export exists in the file but eslint doesn't see it
33
// eslint-disable-next-line import/default
4-
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
4+
import { codegenNativeComponent } from 'react-native';
55

66
// If changed to type NativeProps = ViewProps, react native codegen will fail finding the NativeProps type
77
// eslint-disable-next-line @typescript-eslint/no-empty-interface

packages/core/src/js/RNSentryReplayUnmaskNativeComponent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { HostComponent, ViewProps } from 'react-native';
22
// The default export exists in the file but eslint doesn't see it
33
// eslint-disable-next-line import/default
4-
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
4+
import { codegenNativeComponent } from 'react-native';
55

66
// If changed to type NativeProps = ViewProps, react native codegen will fail finding the NativeProps type
77
// eslint-disable-next-line @typescript-eslint/no-empty-interface

0 commit comments

Comments
 (0)