@veloxts/velox 0.6.104 → 0.6.106
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 +36 -0
- package/README.md +2 -2
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @veloxts/velox
|
|
2
2
|
|
|
3
|
+
## 0.6.106
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- chores
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @veloxts/auth@0.6.106
|
|
10
|
+
- @veloxts/cache@0.6.106
|
|
11
|
+
- @veloxts/core@0.6.106
|
|
12
|
+
- @veloxts/events@0.6.106
|
|
13
|
+
- @veloxts/mail@0.6.106
|
|
14
|
+
- @veloxts/orm@0.6.106
|
|
15
|
+
- @veloxts/queue@0.6.106
|
|
16
|
+
- @veloxts/router@0.6.106
|
|
17
|
+
- @veloxts/scheduler@0.6.106
|
|
18
|
+
- @veloxts/storage@0.6.106
|
|
19
|
+
- @veloxts/validation@0.6.106
|
|
20
|
+
|
|
21
|
+
## 0.6.105
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- fix(create): resolve JSX conditional marker artifacts and add auth route guard & some socumentation updates
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @veloxts/auth@0.6.105
|
|
28
|
+
- @veloxts/cache@0.6.105
|
|
29
|
+
- @veloxts/core@0.6.105
|
|
30
|
+
- @veloxts/events@0.6.105
|
|
31
|
+
- @veloxts/mail@0.6.105
|
|
32
|
+
- @veloxts/orm@0.6.105
|
|
33
|
+
- @veloxts/queue@0.6.105
|
|
34
|
+
- @veloxts/router@0.6.105
|
|
35
|
+
- @veloxts/scheduler@0.6.105
|
|
36
|
+
- @veloxts/storage@0.6.105
|
|
37
|
+
- @veloxts/validation@0.6.105
|
|
38
|
+
|
|
3
39
|
## 0.6.104
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Velox TS Framework
|
|
2
2
|
|
|
3
|
-
> **
|
|
3
|
+
> **Early Access (v0.6.x)**
|
|
4
4
|
|
|
5
5
|
## Type-safe full-stack without the build step
|
|
6
6
|
|
|
@@ -37,7 +37,7 @@ Note: Manual setup requires Prisma 7 configuration with driver adapters. See [@v
|
|
|
37
37
|
|
|
38
38
|
This umbrella package re-exports:
|
|
39
39
|
|
|
40
|
-
- `@veloxts/core` - App bootstrap, plugins,
|
|
40
|
+
- `@veloxts/core` - App bootstrap, plugins, error handling
|
|
41
41
|
- `@veloxts/router` - Procedures, REST adapter, tRPC integration
|
|
42
42
|
- `@veloxts/orm` - Prisma database plugin with driver adapters
|
|
43
43
|
- `@veloxts/auth` - JWT/session authentication, guards, rate limiting
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veloxts/velox",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.106",
|
|
4
4
|
"description": "Complete VeloxTS framework - batteries included",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -39,30 +39,30 @@
|
|
|
39
39
|
"CHANGELOG.md"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@veloxts/core": "0.6.
|
|
43
|
-
"@veloxts/validation": "0.6.
|
|
44
|
-
"@veloxts/
|
|
45
|
-
"@veloxts/
|
|
46
|
-
"@veloxts/orm": "0.6.
|
|
42
|
+
"@veloxts/core": "0.6.106",
|
|
43
|
+
"@veloxts/validation": "0.6.106",
|
|
44
|
+
"@veloxts/router": "0.6.106",
|
|
45
|
+
"@veloxts/auth": "0.6.106",
|
|
46
|
+
"@veloxts/orm": "0.6.106"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"typescript": "5.9.3",
|
|
50
50
|
"vitest": "4.0.18",
|
|
51
|
-
"@veloxts/cache": "0.6.
|
|
52
|
-
"@veloxts/scheduler": "0.6.
|
|
53
|
-
"@veloxts/
|
|
54
|
-
"@veloxts/
|
|
55
|
-
"@veloxts/
|
|
56
|
-
"@veloxts/
|
|
51
|
+
"@veloxts/cache": "0.6.106",
|
|
52
|
+
"@veloxts/scheduler": "0.6.106",
|
|
53
|
+
"@veloxts/queue": "0.6.106",
|
|
54
|
+
"@veloxts/storage": "0.6.106",
|
|
55
|
+
"@veloxts/events": "0.6.106",
|
|
56
|
+
"@veloxts/mail": "0.6.106"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"zod": "^4.3.0",
|
|
60
|
-
"@veloxts/
|
|
61
|
-
"@veloxts/
|
|
62
|
-
"@veloxts/
|
|
63
|
-
"@veloxts/
|
|
64
|
-
"@veloxts/events": "0.6.
|
|
65
|
-
"@veloxts/scheduler": "0.6.
|
|
60
|
+
"@veloxts/cache": "0.6.106",
|
|
61
|
+
"@veloxts/queue": "0.6.106",
|
|
62
|
+
"@veloxts/mail": "0.6.106",
|
|
63
|
+
"@veloxts/storage": "0.6.106",
|
|
64
|
+
"@veloxts/events": "0.6.106",
|
|
65
|
+
"@veloxts/scheduler": "0.6.106"
|
|
66
66
|
},
|
|
67
67
|
"peerDependenciesMeta": {
|
|
68
68
|
"@veloxts/cache": {
|