diff --git a/packages/deno/src/sdk.ts b/packages/deno/src/sdk.ts index 3e792e2fd0d7..7521a6d7a40c 100644 --- a/packages/deno/src/sdk.ts +++ b/packages/deno/src/sdk.ts @@ -1,6 +1,7 @@ import type { Client, Integration, Options, StackParser } from '@sentry/core'; import type { ServerRuntimeClientOptions } from '@sentry/core/server'; import { + conversationIdIntegration, createStackParser, dedupeIntegration, eventFiltersIntegration, @@ -36,6 +37,7 @@ export function getDefaultIntegrations(options: Options): Integration[] { functionToStringIntegration(), linkedErrorsIntegration(), dedupeIntegration(), + conversationIdIntegration(), // Deno Specific breadcrumbsIntegration(), denoContextIntegration(), diff --git a/packages/deno/test/__snapshots__/mod.test.ts.snap b/packages/deno/test/__snapshots__/mod.test.ts.snap index 0a94a93ed604..25d7b155ca46 100644 --- a/packages/deno/test/__snapshots__/mod.test.ts.snap +++ b/packages/deno/test/__snapshots__/mod.test.ts.snap @@ -52,6 +52,7 @@ snapshot[`captureMessage 1`] = ` "FunctionToString", "LinkedErrors", "Dedupe", + "ConversationId", "Breadcrumbs", "DenoContext", "DenoServe", @@ -137,6 +138,7 @@ snapshot[`captureMessage twice 1`] = ` "FunctionToString", "LinkedErrors", "Dedupe", + "ConversationId", "Breadcrumbs", "DenoContext", "DenoServe", @@ -229,6 +231,7 @@ snapshot[`captureMessage twice 2`] = ` "FunctionToString", "LinkedErrors", "Dedupe", + "ConversationId", "Breadcrumbs", "DenoContext", "DenoServe",