@veloxts/velox 0.6.65 → 0.6.67
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 +24 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @veloxts/velox
|
|
2
2
|
|
|
3
|
+
## 0.6.67
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix(create): add browser-safe routes.ts for auth template, prevent set -e from hiding CLI errors in smoke tests, add tsx to scaffolded project devDependencies
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @veloxts/auth@0.6.67
|
|
10
|
+
- @veloxts/core@0.6.67
|
|
11
|
+
- @veloxts/orm@0.6.67
|
|
12
|
+
- @veloxts/router@0.6.67
|
|
13
|
+
- @veloxts/validation@0.6.67
|
|
14
|
+
|
|
15
|
+
## 0.6.66
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- docs(skills): recommend namespace generator for AI agents
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @veloxts/auth@0.6.66
|
|
22
|
+
- @veloxts/core@0.6.66
|
|
23
|
+
- @veloxts/orm@0.6.66
|
|
24
|
+
- @veloxts/router@0.6.66
|
|
25
|
+
- @veloxts/validation@0.6.66
|
|
26
|
+
|
|
3
27
|
## 0.6.65
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veloxts/velox",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.67",
|
|
4
4
|
"description": "Complete VeloxTS framework - batteries included",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -39,11 +39,11 @@
|
|
|
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/auth": "0.6.
|
|
42
|
+
"@veloxts/core": "0.6.67",
|
|
43
|
+
"@veloxts/validation": "0.6.67",
|
|
44
|
+
"@veloxts/router": "0.6.67",
|
|
45
|
+
"@veloxts/orm": "0.6.67",
|
|
46
|
+
"@veloxts/auth": "0.6.67"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"typescript": "5.9.3",
|