Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
5 changes: 2 additions & 3 deletions src/nextjs/nextjs-wizard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.',
Expand Down
Loading