@veloxts/web 0.7.8 → 0.8.0
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 +25 -0
- package/GUIDE.md +1 -1
- package/README.md +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @veloxts/web
|
|
2
2
|
|
|
3
|
+
## 0.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- feat(router): new simplified procedure builder
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @veloxts/auth@0.8.0
|
|
13
|
+
- @veloxts/client@0.8.0
|
|
14
|
+
- @veloxts/core@0.8.0
|
|
15
|
+
- @veloxts/router@0.8.0
|
|
16
|
+
|
|
17
|
+
## 0.7.9
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- feat(router): swagger auto-discovery of module collections
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @veloxts/auth@0.7.9
|
|
24
|
+
- @veloxts/client@0.7.9
|
|
25
|
+
- @veloxts/core@0.7.9
|
|
26
|
+
- @veloxts/router@0.7.9
|
|
27
|
+
|
|
3
28
|
## 0.7.8
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/GUIDE.md
CHANGED
|
@@ -197,7 +197,7 @@ Complete documentation at [@veloxts/velox](https://www.npmjs.com/package/@veloxt
|
|
|
197
197
|
|
|
198
198
|
## Status
|
|
199
199
|
|
|
200
|
-
**v0.
|
|
200
|
+
**v0.8.x** - Early preview. APIs stabilizing with 615+ tests and 94.4% coverage.
|
|
201
201
|
|
|
202
202
|
## License
|
|
203
203
|
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @veloxts/web
|
|
2
2
|
|
|
3
|
-
> **Early Access (v0.
|
|
3
|
+
> **Early Access (v0.8.x)**
|
|
4
4
|
|
|
5
5
|
React Server Components integration for VeloxTS Framework using Vinxi - provides file-based routing, streaming SSR, server actions with Zod validation, and tRPC bridge. Learn more at [@veloxts/velox](https://www.npmjs.com/package/@veloxts/velox).
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veloxts/web",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "React Server Components integration for VeloxTS framework using Vinxi",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -72,10 +72,10 @@
|
|
|
72
72
|
"peerDependencies": {
|
|
73
73
|
"react": ">=19.2.0",
|
|
74
74
|
"react-dom": ">=19.2.0",
|
|
75
|
-
"@veloxts/auth": "0.
|
|
76
|
-
"@veloxts/client": "0.
|
|
77
|
-
"@veloxts/
|
|
78
|
-
"@veloxts/
|
|
75
|
+
"@veloxts/auth": "0.8.0",
|
|
76
|
+
"@veloxts/client": "0.8.0",
|
|
77
|
+
"@veloxts/router": "0.8.0",
|
|
78
|
+
"@veloxts/core": "0.8.0"
|
|
79
79
|
},
|
|
80
80
|
"peerDependenciesMeta": {
|
|
81
81
|
"@veloxts/auth": {
|
|
@@ -97,10 +97,10 @@
|
|
|
97
97
|
"react-dom": "19.2.4",
|
|
98
98
|
"typescript": "5.9.3",
|
|
99
99
|
"vitest": "4.0.18",
|
|
100
|
-
"@veloxts/auth": "0.
|
|
101
|
-
"@veloxts/client": "0.
|
|
102
|
-
"@veloxts/
|
|
103
|
-
"@veloxts/
|
|
100
|
+
"@veloxts/auth": "0.8.0",
|
|
101
|
+
"@veloxts/client": "0.8.0",
|
|
102
|
+
"@veloxts/router": "0.8.0",
|
|
103
|
+
"@veloxts/core": "0.8.0"
|
|
104
104
|
},
|
|
105
105
|
"keywords": [
|
|
106
106
|
"velox",
|