@veloxts/validation 0.6.31 → 0.6.52

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +168 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,173 @@
1
1
  # @veloxts/validation
2
2
 
3
+ ## 0.6.52
4
+
5
+ ### Patch Changes
6
+
7
+ - feat(mcp): smart CLI resolution with fallbacks
8
+ - Updated dependencies
9
+ - @veloxts/core@0.6.52
10
+
11
+ ## 0.6.51
12
+
13
+ ### Patch Changes
14
+
15
+ - fix(web): configure @vinxi/server-functions for RSC server actions
16
+ - Updated dependencies
17
+ - @veloxts/core@0.6.51
18
+
19
+ ## 0.6.50
20
+
21
+ ### Patch Changes
22
+
23
+ - lint fixed
24
+ - Updated dependencies
25
+ - @veloxts/core@0.6.50
26
+
27
+ ## 0.6.49
28
+
29
+ ### Patch Changes
30
+
31
+ - feat(create): add client import lint script for RSC templates
32
+ - Updated dependencies
33
+ - @veloxts/core@0.6.49
34
+
35
+ ## 0.6.48
36
+
37
+ ### Patch Changes
38
+
39
+ - fix(web): remove server-only guards incompatible with Vite SS
40
+ - Updated dependencies
41
+ - @veloxts/core@0.6.48
42
+
43
+ ## 0.6.47
44
+
45
+ ### Patch Changes
46
+
47
+ - fix(web): use /adapters for createH3ApiHandler to avoid server-only
48
+ - Updated dependencies
49
+ - @veloxts/core@0.6.47
50
+
51
+ ## 0.6.46
52
+
53
+ ### Patch Changes
54
+
55
+ - fix(web): remove transitive server-only import from main entry
56
+ - Updated dependencies
57
+ - @veloxts/core@0.6.46
58
+
59
+ ## 0.6.45
60
+
61
+ ### Patch Changes
62
+
63
+ - fix(web): remove server-only guard from main entry for Vinxi compat
64
+ - Updated dependencies
65
+ - @veloxts/core@0.6.45
66
+
67
+ ## 0.6.44
68
+
69
+ ### Patch Changes
70
+
71
+ - refactor(web): implement proper RSC server/client separation
72
+ - Updated dependencies
73
+ - @veloxts/core@0.6.44
74
+
75
+ ## 0.6.43
76
+
77
+ ### Patch Changes
78
+
79
+ - fix(web): exclude native modules from Vite dependency optimization
80
+ - Updated dependencies
81
+ - @veloxts/core@0.6.43
82
+
83
+ ## 0.6.42
84
+
85
+ ### Patch Changes
86
+
87
+ - fix(web): enable tsconfig path aliases for Vite/Vinxi + docs(web): add @public/@internal JSDoc annotations to server actions
88
+ - Updated dependencies
89
+ - @veloxts/core@0.6.42
90
+
91
+ ## 0.6.41
92
+
93
+ ### Patch Changes
94
+
95
+ - feat(web): add authAction helper for procedure bridge authentication
96
+ - Updated dependencies
97
+ - @veloxts/core@0.6.41
98
+
99
+ ## 0.6.40
100
+
101
+ ### Patch Changes
102
+
103
+ - feat(create): consolidate template styles with unified dark mode design
104
+ - Updated dependencies
105
+ - @veloxts/core@0.6.40
106
+
107
+ ## 0.6.39
108
+
109
+ ### Patch Changes
110
+
111
+ - fix RSC client hydration with split layout architecture
112
+ - Updated dependencies
113
+ - @veloxts/core@0.6.39
114
+
115
+ ## 0.6.38
116
+
117
+ ### Patch Changes
118
+
119
+ - fix client hydration for RSC templates
120
+ - Updated dependencies
121
+ - @veloxts/core@0.6.38
122
+
123
+ ## 0.6.37
124
+
125
+ ### Patch Changes
126
+
127
+ - feat(web): add validated() helper for secure server actions & add rsc-auth template with validated()
128
+ - Updated dependencies
129
+ - @veloxts/core@0.6.37
130
+
131
+ ## 0.6.36
132
+
133
+ ### Patch Changes
134
+
135
+ - Gap Remediation Plan
136
+ - Updated dependencies
137
+ - @veloxts/core@0.6.36
138
+
139
+ ## 0.6.35
140
+
141
+ ### Patch Changes
142
+
143
+ - proper auth template testing in verify-publis
144
+ - Updated dependencies
145
+ - @veloxts/core@0.6.35
146
+
147
+ ## 0.6.34
148
+
149
+ ### Patch Changes
150
+
151
+ - update PostgreSQL adapter for Prisma 7 API
152
+ - Updated dependencies
153
+ - @veloxts/core@0.6.34
154
+
155
+ ## 0.6.33
156
+
157
+ ### Patch Changes
158
+
159
+ - changed claude.md instruction, added prisma config
160
+ - Updated dependencies
161
+ - @veloxts/core@0.6.33
162
+
163
+ ## 0.6.32
164
+
165
+ ### Patch Changes
166
+
167
+ - Introducing new Ecosystem Expansion packages: cache, queue, mail, storage, scheduler, events. Do not use yet
168
+ - Updated dependencies
169
+ - @veloxts/core@0.6.32
170
+
3
171
  ## 0.6.31
4
172
 
5
173
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloxts/validation",
3
- "version": "0.6.31",
3
+ "version": "0.6.52",
4
4
  "description": "Zod integration and validation middleware for VeloxTS framework",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "zod": "3.25.76",
26
- "@veloxts/core": "0.6.31"
26
+ "@veloxts/core": "0.6.52"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@vitest/coverage-v8": "4.0.16",