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 apps/realtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@
"@types/node": "24.2.1",
"socket.io-client": "4.8.1",
"typescript": "^5.7.3",
"vitest": "^3.0.8"
"vitest": "^4.1.8"
}
}
2 changes: 1 addition & 1 deletion apps/sim/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@
"tailwindcss": "^3.4.1",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.8"
"vitest": "^4.1.8"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Vitest and coverage-v8 major version mismatch

High Severity

@vitest/coverage-v8 remains at ^3.0.8 while vitest is bumped to ^4.1.8. Vitest requires its companion packages to share the same major version and actively warns (or errors) on mismatch. This will cause coverage collection to fail at runtime in both apps/sim and packages/ts-sdk.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 84e7e73. Configure here.

},
"trustedDependencies": [
"canvas",
Expand Down
2 changes: 1 addition & 1 deletion packages/audit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@
"@sim/testing": "workspace:*",
"@sim/tsconfig": "workspace:*",
"typescript": "^5.7.3",
"vitest": "^3.0.8"
"vitest": "^4.1.8"
}
}
2 changes: 1 addition & 1 deletion packages/logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
"devDependencies": {
"@sim/tsconfig": "workspace:*",
"typescript": "^5.7.3",
"vitest": "^3.0.8"
"vitest": "^4.1.8"
}
}
2 changes: 1 addition & 1 deletion packages/security/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@
"@sim/tsconfig": "workspace:*",
"@types/node": "24.2.1",
"typescript": "^5.7.3",
"vitest": "^3.0.8"
"vitest": "^4.1.8"
}
}
2 changes: 1 addition & 1 deletion packages/testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"devDependencies": {
"@sim/tsconfig": "workspace:*",
"typescript": "^5.7.3",
"vitest": "^3.0.8"
"vitest": "^4.1.8"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Outdated peerDependencies for vitest in testing package

Medium Severity

The peerDependencies declares "vitest": "^3.0.0" but devDependencies now uses ^4.1.8. All consumer packages also use vitest 4.x, so the peer dependency range is unsatisfied, generating warnings or install failures depending on the package manager's strictness settings.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 84e7e73. Configure here.

},
"dependencies": {
"@sim/utils": "workspace:*"
Expand Down
2 changes: 1 addition & 1 deletion packages/ts-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@types/node": "^20.5.1",
"@vitest/coverage-v8": "^3.0.8",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

P1 @vitest/coverage-v8 is a companion package that must match the major version of vitest. With vitest now at ^4.1.8, keeping @vitest/coverage-v8 at ^3.0.8 will cause a peer-dependency conflict at install time and coverage reporting will fail at runtime because the v3 coverage plugin is incompatible with the v4 runner API.

Suggested change
"@vitest/coverage-v8": "^3.0.8",
"@vitest/coverage-v8": "^4.1.8",

"typescript": "^5.7.3",
"vitest": "^3.0.8"
"vitest": "^4.1.8"
},
"engines": {
"node": ">=16"
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@
"devDependencies": {
"@sim/tsconfig": "workspace:*",
"typescript": "^5.7.3",
"vitest": "^3.0.8"
"vitest": "^4.1.8"
}
}
Loading