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
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,11 @@ This should cause the adapter to crash and the exception to be shown in the sent
-->

## Changelog

### **WORK IN PROGRESS**
- (@Apollon77) Disable Sentry session reporting
- (@GermanBluefox) Updated packages to latest versions

### 3.0.4 (2025-12-30)
- (@GermanBluefox) Updated packages to latest versions

Expand Down
7 changes: 6 additions & 1 deletion build/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,12 @@ class SentryPlugin extends plugin_base_1.PluginBase {
this.Sentry.init({
release: `${this.parentPackage.name}@${this.parentPackage.version}`,
dsn: pluginConfig.dsn,
integrations: [new SentryIntegrations.Dedupe()],
integrations: [
new SentryIntegrations.Dedupe(),
SentryIntegrations.httpIntegration({
trackIncomingRequestsAsSessions: false, // default: true
}),
],
});
if (this.parentIoPackage?.common) {
this.Sentry.setTag('version', this.parentIoPackage.common.installedVersion || this.parentIoPackage.common.version);
Expand Down
Loading
Loading