Skip to content
Closed
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: 1 addition & 1 deletion examples/client-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"@vitejs/plugin-react-swc": "^4.3.0",
"jsdom": "^29.1.0",
"prettier": "^3.5.3",
"vite": "^5.4.19",
"vite": "^8.1.5",
"vitest": "^3.2.4"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion examples/guide-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"globals": "^16.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.61.0",
"vite": "^5.4.19"
"vite": "^8.1.5"
},
"engines": {
"node": "22.17.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"rimraf": "^6.0.1",
"rollup": "^4.46.2",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vite": "^8.1.5",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Vite 8 breaks vitest dependency

High Severity

vitest stays at ^3.2.4 while vite jumps to ^8.1.5. Vitest 3.2.4 depends on vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0, so it does not support Vite 8. Test runs that go through Vite's config/runtime can fail or pull inconsistent Vite versions.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit d42c08b. Configure here.

"vitest": "^3.2.4"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"react-native-gesture-handler": "~2.30.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vite": "^8.1.5",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-no-bundle": "^4.0.0",
"vitest": "^3.2.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/react-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"rimraf": "^6.0.1",
"rollup-plugin-execute": "^1.1.1",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vite": "^8.1.5",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-no-bundle": "^4.0.0",
"vitest": "^3.2.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"react-native-gesture-handler": "~2.30.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vite": "^8.1.5",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-no-bundle": "^4.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
"rollup-plugin-execute": "^1.1.1",
"rollup-preserve-directives": "^1.1.3",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vite": "^8.1.5",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Vite 8 breaks plugin-react peers

High Severity

Bumping vite to ^8.1.5 leaves @vitejs/plugin-react at ^4.5.1, whose peer range is only ^4.2.0 || ^5.0.0 || ^6.0.0. That mismatch affects every React package and example that still uses the v4 plugin, so installs and Vite builds are likely to fail or behave incorrectly under Vite 8's Rolldown stack.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit d42c08b. Configure here.

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Vite 8 breaks Vitest peers

High Severity

Bumping vite from 5.4 to 8.1 leaves vitest at ^3.2.4, which only peers Vite 5–7. Vite 8 also replaces Rollup with Rolldown, so unchanged @vitejs/plugin-react ^4.5.1 and vite-plugin-dts ^4.5.0 are outside supported ranges. Package builds and Vitest runs are likely to fail without coordinated upgrades.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 82ac2f4. Configure here.

"vite-plugin-dts": "^4.5.0",
"vite-plugin-no-bundle": "^4.0.0",
"vitest": "^3.2.4",
Expand Down
Loading
Loading