From b04c98e147b85e7185c418fe5422495f36368204 Mon Sep 17 00:00:00 2001 From: Max Malm Date: Wed, 18 Dec 2024 10:00:44 +0100 Subject: [PATCH 1/3] ref(nextjs): Fix typo in source maps deletion warning (#14766) Co-authored-by: Lukas Stracke --- packages/nextjs/src/config/webpack.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nextjs/src/config/webpack.ts b/packages/nextjs/src/config/webpack.ts index 9fb3bef49e67..d8a29d7d025c 100644 --- a/packages/nextjs/src/config/webpack.ts +++ b/packages/nextjs/src/config/webpack.ts @@ -340,7 +340,7 @@ export function constructWebpackConfigFunction( if (!isServer && !userSentryOptions.sourcemaps?.deleteSourcemapsAfterUpload) { // eslint-disable-next-line no-console console.warn( - "[@sentry/nextjs] The Sentry SDK has enabled source map generation for your Next.js app. If you don't want to serve Source Maps to your users, either set the `deleteSourceMapsAfterUpload` option to true, or manually delete the source maps after the build. In future Sentry SDK versions `deleteSourceMapsAfterUpload` will default to `true`. If you do not want to generate and upload sourcemaps, set the `sourcemaps.disable` option in `withSentryConfig()`.", + "[@sentry/nextjs] The Sentry SDK has enabled source map generation for your Next.js app. If you don't want to serve Source Maps to your users, either set the `sourcemaps.deleteSourcemapsAfterUpload` option to true, or manually delete the source maps after the build. In future Sentry SDK versions `sourcemaps.deleteSourcemapsAfterUpload` will default to `true`. If you do not want to generate and upload sourcemaps, set the `sourcemaps.disable` option in `withSentryConfig()`.", ); } From d3c42d2f64cca3ba0e6620e865cfd05c5eabd512 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Wed, 18 Dec 2024 10:37:56 +0100 Subject: [PATCH 2/3] changelog attribution --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d81eed594c2e..48739c5e2bde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ - "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott -Work in this release was contributed by @aloisklink. Thank you for your contribution! +Work in this release was contributed by @aloisklink and @benjick. Thank you for your contributions! ## 8.46.0 From 290510603bcf3f275ad26ec58abfd29153230564 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Wed, 18 Dec 2024 11:41:31 +0100 Subject: [PATCH 3/3] empty commit to pls start ci