From 1db13cc60d9235749ea6c33321085977535099f0 Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Thu, 26 Jan 2023 13:40:54 -0500 Subject: [PATCH 1/3] meta: Update changelog for 7.34.0 --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fec832adb245..3a8d8908ede8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ - "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott +## 7.34.0 + +- feat(nextjs): Add SDK to serverside `app` directory (#6927) +- fix(replay): Do not renew session in error mode (#6948) +- fix(replay): Handle compression worker errors more gracefully (#6936) +- fix(replay): fix path separator substitution to replay all `\` (#6932) +- build(deps): bump ua-parser-js from 0.7.31 to 0.7.33 + +Work in this release contributed by @mdtro. Thank you for your contribution! + ## 7.33.0 With this release, the sample rate for Session Replays will default to 0. We recommend explicitly setting the sample rate via the `replaysSessionSampleRate` and `replaysOnErrorSampleRate` options. From efdd62e31dd4785e75499c390a53e966969c23fd Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Thu, 26 Jan 2023 15:30:56 -0500 Subject: [PATCH 2/3] Apply suggestions from code review Co-authored-by: Lukas Stracke --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a8d8908ede8..77e6bb1ade81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,12 @@ ## 7.34.0 +This release adds automatic injection of the Next.js SDK into serverside `app` directory bundles, allowing users to call the Sentry SDK in server components. + - feat(nextjs): Add SDK to serverside `app` directory (#6927) - fix(replay): Do not renew session in error mode (#6948) - fix(replay): Handle compression worker errors more gracefully (#6936) - fix(replay): fix path separator substitution to replay all `\` (#6932) -- build(deps): bump ua-parser-js from 0.7.31 to 0.7.33 Work in this release contributed by @mdtro. Thank you for your contribution! From 58926d69ddde1aed2e9d990599ec0398a42fbcef Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Thu, 26 Jan 2023 15:39:07 -0500 Subject: [PATCH 3/3] add rrweb fix --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77e6bb1ade81..2fd846ab02fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ This release adds automatic injection of the Next.js SDK into serverside `app` d - fix(replay): Do not renew session in error mode (#6948) - fix(replay): Handle compression worker errors more gracefully (#6936) - fix(replay): fix path separator substitution to replay all `\` (#6932) +- fix(replay): ignore errors in CSSStyleSheetObserver (getsentry/rrweb#16) Work in this release contributed by @mdtro. Thank you for your contribution!