Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: include context in angular sdk
  • Loading branch information
logaretm committed Feb 3, 2026
commit 7a39bb82ac1aa7376d5bbbb2eec7a6083fcca029
2 changes: 2 additions & 0 deletions packages/angular/src/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import type { BrowserOptions } from '@sentry/browser';
import {
breadcrumbsIntegration,
browserSessionIntegration,
cultureContextIntegration,
globalHandlersIntegration,
httpContextIntegration,
init as browserInit,
Expand Down Expand Up @@ -43,6 +44,7 @@ export function getDefaultIntegrations(_options: BrowserOptions = {}): Integrati
linkedErrorsIntegration(),
dedupeIntegration(),
httpContextIntegration(),
cultureContextIntegration(),
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

q: Is that the only sdk where we need to add this separately?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

Yep, I checked the other SDKs and they don't override the browser's default integrations. Only the angular one does.

browserSessionIntegration(),
];
}
Expand Down
Loading