create-velox-app 0.6.101 → 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,17 @@
1
1
  # create-velox-app
2
2
 
3
+ ## 0.6.103
4
+
5
+ ### Patch Changes
6
+
7
+ - chore(deps): upgrade Zod from v3 to v4
8
+
9
+ ## 0.6.102
10
+
11
+ ### Patch Changes
12
+
13
+ - chore: upgrade fastify to 5.7.4 across all packages
14
+
3
15
  ## 0.6.101
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-velox-app",
3
- "version": "0.6.101",
3
+ "version": "0.6.103",
4
4
  "description": "Project scaffolder for VeloxTS framework",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -28,7 +28,7 @@
28
28
  "better-sqlite3": "12.6.2",
29
29
  "dotenv": "17.2.3",
30
30
  "file-uri-to-path": "2.0.0",
31
- "zod": "3.25.76"
31
+ "zod": "4.3.6"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/bcrypt": "6.0.0",
@@ -26,7 +26,7 @@
26
26
  "better-sqlite3": "12.6.2",
27
27
  "dotenv": "17.2.3",
28
28
  "file-uri-to-path": "2.0.0",
29
- "zod": "3.25.76"
29
+ "zod": "4.3.6"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "25.1.0",
@@ -27,7 +27,7 @@
27
27
  "better-sqlite3": "12.6.2",
28
28
  "dotenv": "17.2.3",
29
29
  "file-uri-to-path": "2.0.0",
30
- "zod": "3.25.76"
30
+ "zod": "4.3.6"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "25.1.0",
@@ -71,7 +71,7 @@ export const userProcedures = procedures('users', {
71
71
 
72
72
  updateUser: procedure()
73
73
  .guard(authenticated)
74
- .input(z.object({ id: z.string().uuid() }).merge(UpdateUserInput))
74
+ .input(z.object({ id: z.string().uuid() }).extend(UpdateUserInput.shape))
75
75
  .output(UserSchema)
76
76
  .mutation(async ({ input, ctx }) => {
77
77
  const { id, ...data } = input;
@@ -92,7 +92,7 @@ export const userProcedures = procedures('users', {
92
92
 
93
93
  patchUser: procedure()
94
94
  .guard(authenticated)
95
- .input(z.object({ id: z.string().uuid() }).merge(UpdateUserInput))
95
+ .input(z.object({ id: z.string().uuid() }).extend(UpdateUserInput.shape))
96
96
  .output(UserSchema)
97
97
  .mutation(async ({ input, ctx }) => {
98
98
  const { id, ...data } = input;
@@ -54,7 +54,7 @@ export const userProcedures = procedures('users', {
54
54
  }),
55
55
 
56
56
  updateUser: procedure()
57
- .input(z.object({ id: z.string().uuid() }).merge(UpdateUserInput))
57
+ .input(z.object({ id: z.string().uuid() }).extend(UpdateUserInput.shape))
58
58
  .output(UserSchema)
59
59
  .mutation(async ({ input, ctx }) => {
60
60
  const { id, ...data } = input;
@@ -62,7 +62,7 @@ export const userProcedures = procedures('users', {
62
62
  }),
63
63
 
64
64
  patchUser: procedure()
65
- .input(z.object({ id: z.string().uuid() }).merge(UpdateUserInput))
65
+ .input(z.object({ id: z.string().uuid() }).extend(UpdateUserInput.shape))
66
66
  .output(UserSchema)
67
67
  .mutation(async ({ input, ctx }) => {
68
68
  const { id, ...data } = input;
@@ -31,7 +31,7 @@
31
31
  "react": "19.2.4",
32
32
  "react-dom": "19.2.4",
33
33
  "vinxi": "0.5.11",
34
- "zod": "3.25.76"
34
+ "zod": "4.3.6"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "25.1.0",
@@ -33,7 +33,7 @@
33
33
  "react": "19.2.4",
34
34
  "react-dom": "19.2.4",
35
35
  "vinxi": "0.5.11",
36
- "zod": "3.25.76"
36
+ "zod": "4.3.6"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/bcrypt": "6.0.0",