Skip to content

Commit 6fb3258

Browse files
feat: Update Sentry SDKs to v10.47.0 (#1342)
1 parent 217da1b commit 6fb3258

6 files changed

Lines changed: 272 additions & 264 deletions

File tree

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@
105105
"e2e": "xvfb-maybe vitest run --root=./test/e2e --silent=false --disable-console-intercept"
106106
},
107107
"dependencies": {
108-
"@sentry/browser": "10.46.0",
109-
"@sentry/core": "10.46.0",
110-
"@sentry/node": "10.46.0"
108+
"@sentry/browser": "10.47.0",
109+
"@sentry/core": "10.47.0",
110+
"@sentry/node": "10.47.0"
111111
},
112112
"peerDependencies": {
113-
"@sentry/node-native": "10.46.0"
113+
"@sentry/node-native": "10.47.0"
114114
},
115115
"peerDependenciesMeta": {
116116
"@sentry/node-native": {
@@ -119,9 +119,9 @@
119119
},
120120
"devDependencies": {
121121
"@rollup/plugin-typescript": "^12.1.3",
122-
"@sentry-internal/typescript": "10.46.0",
123-
"@sentry-internal/eslint-plugin-sdk": "10.46.0",
124-
"@sentry/node-native": "10.46.0",
122+
"@sentry-internal/typescript": "10.47.0",
123+
"@sentry-internal/eslint-plugin-sdk": "10.47.0",
124+
"@sentry/node-native": "10.47.0",
125125
"@types/busboy": "^1.5.4",
126126
"@types/koa": "^2.0.52",
127127
"@types/koa-bodyparser": "^4.3.0",

src/main/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ export {
108108
nativeNodeFetchIntegration,
109109
NodeClient,
110110
nodeContextIntegration,
111+
nodeRuntimeMetricsIntegration,
111112
onUnhandledRejectionIntegration,
112113
openAIIntegration,
113114
OpenFeatureIntegrationHook,

src/renderer/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export {
4747
createUserFeedbackEnvelope,
4848
dedupeIntegration,
4949
defaultRequestInstrumentationOptions,
50+
elementTimingIntegration,
5051
endSession,
5152
eventFiltersIntegration,
5253
eventFromException,

src/renderer/sdk.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ interface ElectronRendererOptions extends Partial<ElectronRendererOptionsInterna
5151
export function init<O extends ElectronRendererOptions>(
5252
options: ElectronRendererOptions & O = {} as ElectronRendererOptions & O,
5353
// This parameter name ensures that TypeScript error messages contain a hint for fixing SDK version mismatches
54-
originalInit: (if_you_get_a_typescript_error_ensure_sdks_use_version_v10_46_0: O) => void = browserInit,
54+
originalInit: (if_you_get_a_typescript_error_ensure_sdks_use_version_v10_47_0: O) => void = browserInit,
5555
): void {
5656
// Ensure the browser SDK is only init'ed once.
5757
if (window?.__SENTRY__RENDERER_INIT__) {

src/utility/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ export {
109109
nativeNodeFetchIntegration,
110110
NodeClient,
111111
nodeContextIntegration,
112+
nodeRuntimeMetricsIntegration,
112113
onUncaughtExceptionIntegration,
113114
onUnhandledRejectionIntegration,
114115
openAIIntegration,

0 commit comments

Comments
 (0)