From 0e1f53bdbad2b9a46753145d090439b696690bba Mon Sep 17 00:00:00 2001 From: Charly Gomez Date: Mon, 29 Sep 2025 15:28:17 +0200 Subject: [PATCH 1/2] update nextjs turbopack warning --- src/nextjs/nextjs-wizard.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/nextjs/nextjs-wizard.ts b/src/nextjs/nextjs-wizard.ts index 4a8aa990f..94655b5cc 100644 --- a/src/nextjs/nextjs-wizard.ts +++ b/src/nextjs/nextjs-wizard.ts @@ -363,9 +363,8 @@ export async function runNextjsWizardWithTelemetry( if (isLikelyUsingTurbopack || isLikelyUsingTurbopack === null) { await abortIfCancelled( clack.select({ - message: `Warning: The Sentry SDK is only compatible with Turbopack on Next.js version 15.3.0 (or 15.3.0-canary.8) or later. ${chalk.bold( - `If you are using Turbopack with an older Next.js version, temporarily remove \`--turbo\` or \`--turbopack\` from your dev command until you have verified the SDK is working as expected. Note that the SDK will continue to work for non-Turbopack production builds.`, - )}`, + message: + 'Warning: The Sentry SDK is only compatible with Turbopack on Next.js version 15.4.1 or later.', options: [ { label: 'I understand.', From 4deac55c6a71a012c9963a1a367998ed459a1b7f Mon Sep 17 00:00:00 2001 From: Charly Gomez Date: Mon, 29 Sep 2025 15:30:13 +0200 Subject: [PATCH 2/2] add changelog entry --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b4b77cdf..8d5b6fba1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Unreleased + +- feat(nextjs): Update turbopack warning ([#1089](https://github.com/getsentry/sentry-wizard/pull/1089)) + ## 6.5.0 - feat(android): Add Logs step ([#1085](https://github.com/getsentry/sentry-wizard/pull/1085))