Skip to content
Open
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
3 changes: 2 additions & 1 deletion packages/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"access": "public"
},
"peerDependencies": {
"@nuxt/kit": "^3.13.2 || ^4.0.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Kit peer range mismatch

Medium Severity

Moving @nuxt/kit to a required peer keeps the old ^3.13.2 floor, but the nuxt peer still allows >=3.7.0 and 5.x. Nuxt ships kit in lockstep, so supported 3.7–3.12 apps and future Nuxt 5 apps will not satisfy this peer and can hit unmet-peer install failures or warnings. As a dependency that floor only constrained what the SDK installed; as a peer it now constrains host compatibility.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 25c909d. Configure here.

"nuxt": ">=3.7.0 || 4.x || 5.x",
"nitro": "2.x || 3.x"
},
Expand All @@ -53,7 +54,6 @@
}
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"@sentry/browser": "10.67.0",
"@sentry/cloudflare": "10.67.0",
"@sentry/core": "10.67.0",
Expand All @@ -64,6 +64,7 @@
"local-pkg": "^1.1.2"
},
"devDependencies": {
"@nuxt/kit": "^3.13.2",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Missing fix regression test

Low Severity

This is a fix PR but it adds no unit, integration, or E2E coverage that would fail without the change and pass with it—for example asserting a single deduped @nuxt/kit on Nuxt 4. Flagged per the Testing Conventions rule for fix PRs.

Fix in Cursor Fix in Web

Triggered by project rule: PR Review Guidelines for Cursor Bot

Reviewed by Cursor Bugbot for commit 25c909d. Configure here.

"@nuxt/nitro-server": "^3.21.6",
"nitro": "^3.0.260311-beta",
"nuxi": "^3.25.1",
Expand Down
Loading