@veloxts/web 0.8.2 → 0.9.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 +28 -0
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @veloxts/web
|
|
2
2
|
|
|
3
|
+
## 0.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- feat(router): add raw() response primitive for redirects, cookies, custom headers and .check() post-middleware authorization primitive
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [e1c32a2]
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- Updated dependencies [ca6ede3]
|
|
14
|
+
- Updated dependencies [83c5da1]
|
|
15
|
+
- @veloxts/router@0.9.0
|
|
16
|
+
- @veloxts/auth@0.9.0
|
|
17
|
+
- @veloxts/client@0.9.0
|
|
18
|
+
- @veloxts/core@0.9.0
|
|
19
|
+
|
|
20
|
+
## 0.8.3
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- bump dependencies across packages (April 2026)
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @veloxts/auth@0.8.3
|
|
27
|
+
- @veloxts/client@0.8.3
|
|
28
|
+
- @veloxts/core@0.8.3
|
|
29
|
+
- @veloxts/router@0.8.3
|
|
30
|
+
|
|
3
31
|
## 0.8.2
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veloxts/web",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.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/core": "0.
|
|
77
|
-
"@veloxts/client": "0.
|
|
78
|
-
"@veloxts/router": "0.
|
|
75
|
+
"@veloxts/auth": "0.9.0",
|
|
76
|
+
"@veloxts/core": "0.9.0",
|
|
77
|
+
"@veloxts/client": "0.9.0",
|
|
78
|
+
"@veloxts/router": "0.9.0"
|
|
79
79
|
},
|
|
80
80
|
"peerDependenciesMeta": {
|
|
81
81
|
"@veloxts/auth": {
|
|
@@ -86,21 +86,21 @@
|
|
|
86
86
|
}
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"@types/jsdom": "28.0.
|
|
90
|
-
"@types/node": "25.
|
|
89
|
+
"@types/jsdom": "28.0.1",
|
|
90
|
+
"@types/node": "25.6.0",
|
|
91
91
|
"@types/react": "19.2.14",
|
|
92
92
|
"@types/react-dom": "19.2.3",
|
|
93
|
-
"@vitest/coverage-v8": "4.1.
|
|
94
|
-
"fastify": "5.8.
|
|
95
|
-
"jsdom": "
|
|
96
|
-
"react": "19.2.
|
|
97
|
-
"react-dom": "19.2.
|
|
93
|
+
"@vitest/coverage-v8": "4.1.5",
|
|
94
|
+
"fastify": "5.8.5",
|
|
95
|
+
"jsdom": "29.0.2",
|
|
96
|
+
"react": "19.2.5",
|
|
97
|
+
"react-dom": "19.2.5",
|
|
98
98
|
"typescript": "5.9.3",
|
|
99
|
-
"vitest": "4.1.
|
|
100
|
-
"@veloxts/auth": "0.
|
|
101
|
-
"@veloxts/
|
|
102
|
-
"@veloxts/router": "0.
|
|
103
|
-
"@veloxts/
|
|
99
|
+
"vitest": "4.1.5",
|
|
100
|
+
"@veloxts/auth": "0.9.0",
|
|
101
|
+
"@veloxts/client": "0.9.0",
|
|
102
|
+
"@veloxts/router": "0.9.0",
|
|
103
|
+
"@veloxts/core": "0.9.0"
|
|
104
104
|
},
|
|
105
105
|
"keywords": [
|
|
106
106
|
"velox",
|