Skip to content
Closed
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
1 change: 0 additions & 1 deletion packages/cloudflare/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@
"dependencies": {
"@opentelemetry/api": "^1.9.1",
"@sentry/core": "10.67.0",
"@sentry/node": "10.67.0",
"@sentry/server-utils": "10.67.0"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cloudflare/src/nodejs_compat/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from '../index';
export { prismaIntegration } from '@sentry/node';
export { prismaIntegration } from '@sentry/server-utils';

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Fix PR lacks regression test

Low Severity

This fix PR changes the prismaIntegration import source and drops the @sentry/node dependency, but adds no unit, integration, or E2E test that would fail without the fix. The existing Prisma suite still covers the export working, yet would also pass on the old @sentry/node path. Flagged because Testing Conventions in the PR review rules ask fix PRs to include a regression test.

Additional Locations (1)
Fix in Cursor Fix in Web

Triggered by project rule: PR Review Guidelines for Cursor Bot

Reviewed by Cursor Bugbot for commit a717254. Configure here.

export { vercelAIIntegration } from './integrations/tracing/vercelai';
Loading