From 0100e436d59db6a7e43cfee73d09e216d89a9d22 Mon Sep 17 00:00:00 2001 From: Katie Byers Date: Tue, 26 Jul 2022 23:56:45 -0700 Subject: [PATCH 1/4] update changelog --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19b64295eae8..1d72ac863280 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ - "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott +## 7.8.0 + +- feat(react): Use state context for Redux integration (#5471) +- feat(remix): Set sentry-trace and baggage tags on server-side (#5440) +- feat(tracing): Allow storing span metadata (#5464) +- fix(nextjs): Remove index signaure in `captureUnderscoreErrorException` argument type (#5463) +- fix(nextjs): Stop using `eval` when checking for `sentry-cli` binary (#5447) +- fix(remix): Clone erroneous responses not to consume their body streams. (#5429) +- fix(remix): Do not capture 4xx codes from thrown responses. (#5441) +- ref(angular): Set ErrorHandler Exception Mechanism to be unhandled by default(#3844) +- ref(nextjs): Extract `isBuild` into an exported function (#5444) +- ref(nextjs): Remove compensation for workaround in `_error.js` (#5378) +- ref(nextjs): Use loader to set `RewriteFrames` helper value (#5445) +- ref(node): Improve Express URL Parameterization (#5450) +- ref(utils): Improve uuid generation (#5426) + ## 7.7.0 - feat(angular): Add URL parameterization of transaction names (#5416) From e931ad22a8ee7ed6fa99ec2e506acb7d352af55f Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Wed, 27 Jul 2022 11:29:14 +0200 Subject: [PATCH 2/4] add #5472 --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d72ac863280..b5eaeb12acf1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - feat(react): Use state context for Redux integration (#5471) - feat(remix): Set sentry-trace and baggage tags on server-side (#5440) - feat(tracing): Allow storing span metadata (#5464) +- fix(nextjs): Add transpileClientSDK option (#5472) - fix(nextjs): Remove index signaure in `captureUnderscoreErrorException` argument type (#5463) - fix(nextjs): Stop using `eval` when checking for `sentry-cli` binary (#5447) - fix(remix): Clone erroneous responses not to consume their body streams. (#5429) @@ -20,6 +21,8 @@ - ref(node): Improve Express URL Parameterization (#5450) - ref(utils): Improve uuid generation (#5426) +Work in this release contributed by @mitchheddles. Thank you for your contribution! + ## 7.7.0 - feat(angular): Add URL parameterization of transaction names (#5416) From 8589c3c018afdd97e8a642a94b233304f5aa143a Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Wed, 27 Jul 2022 11:45:36 +0200 Subject: [PATCH 3/4] add #5473 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5eaeb12acf1..907739a7d091 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ - feat(remix): Set sentry-trace and baggage tags on server-side (#5440) - feat(tracing): Allow storing span metadata (#5464) - fix(nextjs): Add transpileClientSDK option (#5472) +- fix(nextjs): Move userNextConfig.sentry to closure (#5473) - fix(nextjs): Remove index signaure in `captureUnderscoreErrorException` argument type (#5463) - fix(nextjs): Stop using `eval` when checking for `sentry-cli` binary (#5447) - fix(remix): Clone erroneous responses not to consume their body streams. (#5429) @@ -20,7 +21,6 @@ - ref(nextjs): Use loader to set `RewriteFrames` helper value (#5445) - ref(node): Improve Express URL Parameterization (#5450) - ref(utils): Improve uuid generation (#5426) - Work in this release contributed by @mitchheddles. Thank you for your contribution! ## 7.7.0 From f63df2a98f673bd40304e606ffbeb9518870e3e5 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Wed, 27 Jul 2022 12:13:24 +0200 Subject: [PATCH 4/4] add #5446, add paragraph about transpileClientSDK option --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 907739a7d091..a2d9d690f36d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,12 @@ ## 7.8.0 +This release adds the `transpileClientSDK` flag to the Next.JS SDK Webpack config. This option makes WebPack transpile the SDK code to the same transpilation level as the user code. By specifying this option, the Next.JS SDK works in older browsers that do not support ES6 or ES6+ (e.g. object spread) features. + - feat(react): Use state context for Redux integration (#5471) - feat(remix): Set sentry-trace and baggage tags on server-side (#5440) - feat(tracing): Allow storing span metadata (#5464) +- feat(tracing): Log start and end of span (#5446) - fix(nextjs): Add transpileClientSDK option (#5472) - fix(nextjs): Move userNextConfig.sentry to closure (#5473) - fix(nextjs): Remove index signaure in `captureUnderscoreErrorException` argument type (#5463) @@ -21,6 +24,7 @@ - ref(nextjs): Use loader to set `RewriteFrames` helper value (#5445) - ref(node): Improve Express URL Parameterization (#5450) - ref(utils): Improve uuid generation (#5426) + Work in this release contributed by @mitchheddles. Thank you for your contribution! ## 7.7.0