Skip to content

Commit 49e0e43

Browse files
committed
build: Update Sentry SDK to 8.0.0-alpha.9
1 parent bac56b5 commit 49e0e43

File tree

6 files changed

+813
-135
lines changed

6 files changed

+813
-135
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ updates:
2828
# - dependency-name: "@sentry/react"
2929
- dependency-name: '@sentry/node'
3030
- dependency-name: '@sentry/utils'
31-
- dependency-name: '@sentry/integrations'
3231
- dependency-name: '@sentry/rrweb'
3332

3433
# We ignore everything that hasn't yet been upgrade, this way we will

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,12 @@
5555
"@sentry-internal/rrweb-player": "2.12.0",
5656
"@sentry-internal/rrweb-snapshot": "2.12.0",
5757
"@sentry/babel-plugin-component-annotate": "^2.16.0",
58-
"@sentry/core": "^7.109.0",
59-
"@sentry/integrations": "^7.109.0",
60-
"@sentry/node": "^7.109.0",
61-
"@sentry/react": "^7.109.0",
58+
"@sentry/core": "^8.0.0-alpha.9",
59+
"@sentry/node": "^8.0.0-alpha.9",
60+
"@sentry/react": "^8.0.0-alpha.9",
6261
"@sentry/release-parser": "^1.3.1",
63-
"@sentry/types": "^7.109.0",
64-
"@sentry/utils": "^7.109.0",
62+
"@sentry/types": "^8.0.0-alpha.9",
63+
"@sentry/utils": "^8.0.0-alpha.9",
6564
"@spotlightjs/spotlight": "^1.2.13",
6665
"@tanstack/react-query": "^4.29.7",
6766
"@tanstack/react-query-devtools": "^4.36.1",
@@ -179,7 +178,7 @@
179178
"@codecov/webpack-plugin": "^0.0.1-beta.4",
180179
"@pmmmwh/react-refresh-webpack-plugin": "0.5.10",
181180
"@sentry/jest-environment": "^4.0.0",
182-
"@sentry/profiling-node": "^7.109.0",
181+
"@sentry/profiling-node": "^8.0.0-alpha.9",
183182
"@styled/typescript-styled-plugin": "^1.0.1",
184183
"@testing-library/jest-dom": "^5.16.5",
185184
"@testing-library/react": "^12.1.2",

src/sentry/utils/sdk_crashes/sdk_crash_detection_config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ def build_sdk_crash_detection_configs() -> Sequence[SDKCrashDetectionConfig]:
132132
r"**/@sentry/cli/**",
133133
r"**/@sentry/core/**",
134134
r"**/@sentry/hub/**",
135-
r"**/@sentry/integrations/**",
136135
r"**/@sentry/react/**",
137136
r"**/@sentry/types/**",
138137
r"**/@sentry/utils/**",

static/app/bootstrap/initializeSdk.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// eslint-disable-next-line simple-import-sort/imports
22
import {browserHistory, createRoutes, match} from 'react-router';
3-
import {extraErrorDataIntegration} from '@sentry/integrations';
43
import * as Sentry from '@sentry/react';
54
import {_browserPerformanceTimeOriginMode} from '@sentry/utils';
65
import type {Event} from '@sentry/types';
@@ -51,7 +50,7 @@ const shouldOverrideBrowserProfiling = window?.__initialData?.user?.isSuperuser;
5150
*/
5251
function getSentryIntegrations(routes?: Function) {
5352
const integrations = [
54-
extraErrorDataIntegration({
53+
Sentry.extraErrorDataIntegration({
5554
// 6 is arbitrary, seems like a nice number
5655
depth: 6,
5756
}),

tests/sentry/utils/sdk_crashes/test_sdk_crash_detection_react_native.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -133,14 +133,6 @@ def test_sdk_crash_is_reported_development_paths(
133133
"/@sentry/core/",
134134
True,
135135
),
136-
(
137-
"/@sentry/hub/",
138-
True,
139-
),
140-
(
141-
"/@sentry/integrations/",
142-
True,
143-
),
144136
(
145137
"/@sentry/react/",
146138
True,

0 commit comments

Comments
 (0)