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
4 changes: 2 additions & 2 deletions playgrounds/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"dependencies": {
"@tailwindcss/postcss": "workspace:^",
"fast-glob": "^3.3.3",
"next": "^16.0.10",
"next": "^16.1.0",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

The specified eslint-config-next version does not exist; this is a critical version mismatch.

Next.js 16.1.0 exists and is the latest stable version, and Next.js versions 16.0.0 – 16.0.6 are affected by CVE-2025-55182, making 16.1.0 safe from this critical vulnerability.

However, eslint-config-next's latest stable version is 16.0.10, published 6 days ago. The eslint-config-next 16.1.0 version does not exist as a stable release. If the package.json specifies "eslint-config-next": "^16.1.0", this will fail to resolve during installation.

Correct the dependency to use eslint-config-next@^16.0.10 to match the actual available version, or wait for eslint-config-next 16.1.0 to be released.

🤖 Prompt for AI Agents
In playgrounds/nextjs/package.json around line 14, the package.json references a
non-existent eslint-config-next version (^16.1.0) which will fail to resolve;
update the eslint-config-next dependency to the latest published stable version
by changing it to ^16.0.10 (or another available released version) so installs
succeed, ensuring the version string matches the actual released
eslint-config-next package.

"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwindcss": "workspace:^"
Expand All @@ -21,7 +21,7 @@
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.10",
"eslint-config-next": "^16.1.0",
"typescript": "^5.5.4"
}
}
4 changes: 2 additions & 2 deletions playgrounds/v3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"upgrade": "node scripts/upgrade.mjs"
},
"dependencies": {
"next": "^16.0.10",
"next": "^16.1.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwindcss": "^3"
Expand All @@ -20,7 +20,7 @@
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.22",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.10",
"eslint-config-next": "^16.1.0",
"typescript": "^5.5.4"
}
}
Loading