Skip to content
Open
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
1 change: 1 addition & 0 deletions apps/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@
"sonner": "2.0.7",
"tailwind-merge": "3.4.0",
"usehooks-ts": "3.1.1",
"zod": "^3.24.1",
Copy link
Contributor

Choose a reason for hiding this comment

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

high

This change introduces zod@^3.24.1. However, other parts of the monorepo appear to be using zod@4.x (version 4.2.1 is present in the lockfile, likely for the @modelcontextprotocol/sdk dependency). Using two different major versions of zod (v3 and v4) can lead to hard-to-debug type incompatibilities, especially if Zod schemas or inferred types are shared between packages like the UI and the server.

To ensure consistency and prevent future issues, it's highly recommended to use a single version of zod across the project. Please consider aligning on a single version, preferably by upgrading this dependency to v4 to match what's already in use elsewhere in the repository.

Suggested change
"zod": "^3.24.1",
"zod": "^4.2.1",

"zustand": "5.0.9"
},
"optionalDependencies": {
Expand Down
22 changes: 15 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.