@veloxts/mcp 0.6.102 → 0.6.103

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @veloxts/mcp
2
2
 
3
+ ## 0.6.103
4
+
5
+ ### Patch Changes
6
+
7
+ - chore(deps): upgrade Zod from v3 to v4
8
+ - Updated dependencies
9
+ - @veloxts/cli@0.6.103
10
+ - @veloxts/router@0.6.103
11
+ - @veloxts/validation@0.6.103
12
+
3
13
  ## 0.6.102
4
14
 
5
15
  ### Patch Changes
@@ -140,7 +140,7 @@ z.array(z.string())
140
140
  ### Enum Validation
141
141
  \`\`\`typescript
142
142
  z.enum(['active', 'inactive', 'pending'])
143
- z.nativeEnum(StatusEnum)
143
+ z.enum(StatusEnum)
144
144
  \`\`\`
145
145
 
146
146
  ### Union & Intersection
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloxts/mcp",
3
- "version": "0.6.102",
3
+ "version": "0.6.103",
4
4
  "description": "Model Context Protocol server for VeloxTS - expose project context to AI tools",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -24,12 +24,12 @@
24
24
  "dependencies": {
25
25
  "@modelcontextprotocol/sdk": "1.25.3",
26
26
  "typescript": "5.9.3",
27
- "@veloxts/cli": "0.6.102",
28
- "@veloxts/validation": "0.6.102",
29
- "@veloxts/router": "0.6.102"
27
+ "@veloxts/router": "0.6.103",
28
+ "@veloxts/validation": "0.6.103",
29
+ "@veloxts/cli": "0.6.103"
30
30
  },
31
31
  "peerDependencies": {
32
- "zod": ">=3.25.0"
32
+ "zod": "^4.3.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/node": "25.1.0",