@veloxts/orm 0.6.31 → 0.6.51

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