diff --git a/CHANGELOG.md b/CHANGELOG.md index a3631305c..bfb98ab6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,10 @@ ## Unreleased +- feat(nextjs): Update turbopack warning ([#1089](https://github.com/getsentry/sentry-wizard/pull/1089)) - feat(nextjs): Set `sendDefaultPii: true` by default ([#1052](https://github.com/getsentry/sentry-wizard/pull/1052)) + ## 6.5.0 - feat(android): Add Logs step ([#1085](https://github.com/getsentry/sentry-wizard/pull/1085)) 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.',