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 2121 - ref(core): Adjust `mechanism` in `captureConsoleIntegration` ([#17633](https://github.com/getsentry/sentry-javascript/pull/17633))
2222 - ref(core): Adjust MCP server error event `mechanism` ([#17622](https://github.com/getsentry/sentry-javascript/pull/17622))
2323 - 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))
2425 - ref(nextjs): Set more specific event `mechanism`s ([#17543](https://github.com/getsentry/sentry-javascript/pull/17543))
2526 - ref(node): Adjust mechanism of express, hapi and fastify error handlers ([#17623](https://github.com/getsentry/sentry-javascript/pull/17623))
2627 - 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 {
6161 originalException : error ,
6262 mechanism : {
6363 handled : false ,
64- type : 'error' ,
64+ type : 'auto.deno.global_handlers. error' ,
6565 } ,
6666 } ) ;
6767
@@ -110,7 +110,7 @@ function installGlobalUnhandledRejectionHandler(client: Client): void {
110110 originalException : error ,
111111 mechanism : {
112112 handled : false ,
113- type : 'unhandledrejection' ,
113+ type : 'auto.deno.global_handlers. unhandledrejection' ,
114114 } ,
115115 } ) ;
116116
You can’t perform that action at this time.
0 commit comments