File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
packages/deno/src/integrations Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 21
21
- ref(core): Adjust `mechanism` in `captureConsoleIntegration` ([#17633](https://github.com/getsentry/sentry-javascript/pull/17633))
22
22
- ref(core): Adjust MCP server error event `mechanism` ([#17622](https://github.com/getsentry/sentry-javascript/pull/17622))
23
23
- ref(core): Simplify `linkedErrors` mechanism logic ([#17600](https://github.com/getsentry/sentry-javascript/pull/17600))
24
+ - ref(deno): Adjust `mechanism` of errors caught by `globalHandlersIntegration` ([#17635](https://github.com/getsentry/sentry-javascript/pull/17635))
24
25
- ref(nextjs): Set more specific event `mechanism`s ([#17543](https://github.com/getsentry/sentry-javascript/pull/17543))
25
26
- ref(node): Adjust mechanism of express, hapi and fastify error handlers ([#17623](https://github.com/getsentry/sentry-javascript/pull/17623))
26
27
- ref(node-core): Add `mechanism` to cron instrumentations ([#17544](https://github.com/getsentry/sentry-javascript/pull/17544))
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ function installGlobalErrorHandler(client: Client): void {
61
61
originalException : error ,
62
62
mechanism : {
63
63
handled : false ,
64
- type : 'error' ,
64
+ type : 'auto.deno.global_handlers. error' ,
65
65
} ,
66
66
} ) ;
67
67
@@ -110,7 +110,7 @@ function installGlobalUnhandledRejectionHandler(client: Client): void {
110
110
originalException : error ,
111
111
mechanism : {
112
112
handled : false ,
113
- type : 'unhandledrejection' ,
113
+ type : 'auto.deno.global_handlers. unhandledrejection' ,
114
114
} ,
115
115
} ) ;
116
116
You can’t perform that action at this time.
0 commit comments