From 9bac3dd7c96d49b7e89e5e8d3b6727113d0b4583 Mon Sep 17 00:00:00 2001 From: Luca Forstner Date: Mon, 4 Jul 2022 10:01:34 +0000 Subject: [PATCH 1/2] meta: Add CHANGELOG for 7.5.0 --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb60878bb5e4..b18dbcff06d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ - "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott +## 7.5.0 + +This release adds the `sendDefaultPii` flag to the `Sentry.init` options. +When using performance monitoring capabilities of the SDK, it controls whether user IDs (set via `Sentry.setUser`) are propagated in the `baggage` header of outgoing HTTP requests. +This flag is set to `false` per default, and acts as an opt-in mechanism for sending potentially sensitive data. +If you want to attach user IDs to Sentry transactions and traces, set this flag to `true` but keep in mind that this is potentially sensitive information. + +- feat(sdk): Add sendDefaultPii option to the JS SDKs (#5341) +- fix(remix): Use cjs for main entry point (#5352) +- ref(tracing): Only add `user_id` to DSC if `sendDefaultPii` is `true` (#5344) + +Work in this release contributed by @jkcorrea and @nfelger. Thank you for your contributions! + ## 7.4.1 This release includes the first *published* version of `@sentry/remix`. From a778d13b05d123c2263ff492267faa908f6b34cd Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Mon, 4 Jul 2022 13:46:56 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b18dbcff06d3..28a89ba7bd98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ This flag is set to `false` per default, and acts as an opt-in mechanism for sen If you want to attach user IDs to Sentry transactions and traces, set this flag to `true` but keep in mind that this is potentially sensitive information. - feat(sdk): Add sendDefaultPii option to the JS SDKs (#5341) +- fix(remix): Sourcemaps upload script is missing in the tarball (#5356) - fix(remix): Use cjs for main entry point (#5352) - ref(tracing): Only add `user_id` to DSC if `sendDefaultPii` is `true` (#5344)