Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/deno/src/sdk.ts
Original file line number Diff line number Diff line change
@@ -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,
Expand Down Expand Up @@ -36,6 +37,7 @@ export function getDefaultIntegrations(options: Options): Integration[] {
functionToStringIntegration(),
linkedErrorsIntegration(),
dedupeIntegration(),
conversationIdIntegration(),

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Feat PR lacks integration test

Low Severity

This feat PR does not include an integration or E2E test for the new default. Flagged because the project's testing conventions require at least one integration or E2E test on feat PRs. Existing sdk.test.ts already asserts other default integrations, and the user-visible behavior is conversation IDs being stamped onto gen_ai spans.

Fix in Cursor Fix in Web

Triggered by project rule: PR Review Guidelines for Cursor Bot

Reviewed by Cursor Bugbot for commit 7a6643c. Configure here.

// Deno Specific
breadcrumbsIntegration(),
denoContextIntegration(),
Expand Down
3 changes: 3 additions & 0 deletions packages/deno/test/__snapshots__/mod.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ snapshot[`captureMessage 1`] = `
"FunctionToString",
"LinkedErrors",
"Dedupe",
"ConversationId",
"Breadcrumbs",
"DenoContext",
"DenoServe",
Expand Down Expand Up @@ -137,6 +138,7 @@ snapshot[`captureMessage twice 1`] = `
"FunctionToString",
"LinkedErrors",
"Dedupe",
"ConversationId",
"Breadcrumbs",
"DenoContext",
"DenoServe",
Expand Down Expand Up @@ -229,6 +231,7 @@ snapshot[`captureMessage twice 2`] = `
"FunctionToString",
"LinkedErrors",
"Dedupe",
"ConversationId",
"Breadcrumbs",
"DenoContext",
"DenoServe",
Expand Down
Loading