From 414422f758709a5c73041b5cebd1e2363b30d636 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Tue, 18 Oct 2022 12:49:51 +0200 Subject: [PATCH 1/3] meta: Update changelog for 7.16.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aff0224d244b..6e2c2a85efdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,30 @@ - "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott +## 7.16.0 + +This release adds the `withSentryConfig` feature to the Svelte SDK. It replaces the now deprecated Svelte `componentTrackingPreprocessor` which will be removed in the next major release. + +- feat(node): Export Span type from `@sentry/types` (#5982) +- feat(svelte): Add `withSentryConfig` function to wrap User Svelte Configuration (#5936) +- fix(nextjs): Correctly apply auto-instrumentation to pages in `src` folder (#5984) +- fix(node): Improve logging in express scope tag match test (#5977) +- fix(remix): Add yargs dependency for uploading sourcemaps (#5926) +- fix(svelte): Track components without script tags (#5957) +- fix(utils): Rename `global.ts` -> `worldwide.ts` (#5969) +- fix(vue): Start pageload transaction earlier to capture missing spans (#5983) +- ref(browser): Remove `getGlobalObject()` usage from `@sentry/browser` (#5884) +- ref(build): Remove `constToVarPlugin` (#5970) +- ref(core): Remove `getGlobalObject()` usage from `@sentry/core` (#5914) +- ref(nextjs): Don't assert existance of `pageProps` in `_app` (#5945) +- ref(tracing): Remove `getGlobalObject()` usage from `@sentry/tracing` (#5885) +- ref(utils): Deprecate `getGlobalObject` as it's no longer used (#5949) +- ref(utils): Remove `getGlobalObject()` usage from `@sentry/node` and `integrations` (#5947) +- ref(utils): Remove `getGlobalObject()` usage from all framework specific SDKs (#5948) +- ref(utils): Remove `getGlobalObject` usage from utils (#5831) + +Work in this release contributed by @jeengbe. Thank you for your contribution! + ## 7.15.0 This release deprecates `@sentry/hub` and all of it's exports. All of the `@sentry/hub` exports have moved to `@sentry/core`. `@sentry/hub` will be removed in the next major release. From c700f46da6b19471ca215ba9c8c3bf2c858bf39f Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Tue, 18 Oct 2022 14:19:15 +0200 Subject: [PATCH 2/3] apply code review suggestions --- CHANGELOG.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e2c2a85efdf..2ec32e7ac848 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,20 +11,13 @@ This release adds the `withSentryConfig` feature to the Svelte SDK. It replaces - feat(node): Export Span type from `@sentry/types` (#5982) - feat(svelte): Add `withSentryConfig` function to wrap User Svelte Configuration (#5936) - fix(nextjs): Correctly apply auto-instrumentation to pages in `src` folder (#5984) -- fix(node): Improve logging in express scope tag match test (#5977) - fix(remix): Add yargs dependency for uploading sourcemaps (#5926) - fix(svelte): Track components without script tags (#5957) - fix(utils): Rename `global.ts` -> `worldwide.ts` (#5969) - fix(vue): Start pageload transaction earlier to capture missing spans (#5983) -- ref(browser): Remove `getGlobalObject()` usage from `@sentry/browser` (#5884) - ref(build): Remove `constToVarPlugin` (#5970) -- ref(core): Remove `getGlobalObject()` usage from `@sentry/core` (#5914) - ref(nextjs): Don't assert existance of `pageProps` in `_app` (#5945) -- ref(tracing): Remove `getGlobalObject()` usage from `@sentry/tracing` (#5885) - ref(utils): Deprecate `getGlobalObject` as it's no longer used (#5949) -- ref(utils): Remove `getGlobalObject()` usage from `@sentry/node` and `integrations` (#5947) -- ref(utils): Remove `getGlobalObject()` usage from all framework specific SDKs (#5948) -- ref(utils): Remove `getGlobalObject` usage from utils (#5831) Work in this release contributed by @jeengbe. Thank you for your contribution! From 1980f4a88f72cdd83ca26d30d083f34fb0f221ce Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Tue, 18 Oct 2022 15:35:33 +0200 Subject: [PATCH 3/3] add #5967 abd #5971 --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ec32e7ac848..e82a269c6b39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ This release adds the `withSentryConfig` feature to the Svelte SDK. It replaces - feat(node): Export Span type from `@sentry/types` (#5982) - feat(svelte): Add `withSentryConfig` function to wrap User Svelte Configuration (#5936) - fix(nextjs): Correctly apply auto-instrumentation to pages in `src` folder (#5984) +- fix(nextjs): Fix typing issue with `withSentryConfig` and `NextConfig` (#5967) +- fix(react): Support root and wildcard routes in react router v6 (#5971) - fix(remix): Add yargs dependency for uploading sourcemaps (#5926) - fix(svelte): Track components without script tags (#5957) - fix(utils): Rename `global.ts` -> `worldwide.ts` (#5969)