@vulkano/core 1.20.0 → 1.20.1
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/bootstrap/express.js +6 -1
- package/package.json +20 -19
- package/pnpm-workspace.yaml +1 -0
package/bootstrap/express.js
CHANGED
|
@@ -51,7 +51,12 @@ module.exports = function getExpressConfiguration() {
|
|
|
51
51
|
sockets: {},
|
|
52
52
|
redis: {},
|
|
53
53
|
multer: {
|
|
54
|
-
dest: global.PUBLIC_PATH ? path.join(global.PUBLIC_PATH, 'files') : 'public/files'
|
|
54
|
+
dest: global.PUBLIC_PATH ? path.join(global.PUBLIC_PATH, 'files') : 'public/files',
|
|
55
|
+
limits: {
|
|
56
|
+
// Prevents DoS via deeply nested field names (e.g. a[b][c][d]...),
|
|
57
|
+
// which multer forwards to append-field's unbounded recursive parser.
|
|
58
|
+
fieldNestingDepth: 5
|
|
59
|
+
}
|
|
55
60
|
},
|
|
56
61
|
morgan: {
|
|
57
62
|
format: 'dev',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vulkano/core",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.1",
|
|
4
4
|
"description": "A MVC framework using Express 4",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Vulkano Team",
|
|
@@ -35,37 +35,38 @@
|
|
|
35
35
|
"url": "https://github.com/vulkanojs/vulkano-core/issues"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
38
|
+
"jest": "^30.4.2",
|
|
39
|
+
"nodemon": "^3.1.14",
|
|
40
|
+
"socket.io-client": "^4.8.3",
|
|
41
|
+
"vite-plus": "catalog:"
|
|
41
42
|
},
|
|
42
43
|
"packageManager": "pnpm@11.1.2",
|
|
43
44
|
"dependencies": {
|
|
44
45
|
"@socket.io/mongo-adapter": "^0.4.0",
|
|
45
46
|
"@socket.io/redis-adapter": "^8.3.0",
|
|
46
|
-
"compression": "^1.8.
|
|
47
|
-
"connect-timeout": "^1.9.
|
|
47
|
+
"compression": "^1.8.1",
|
|
48
|
+
"connect-timeout": "^1.9.1",
|
|
48
49
|
"cookie-parser": "^1.4.7",
|
|
49
|
-
"cron": "^4.
|
|
50
|
+
"cron": "^4.4.0",
|
|
50
51
|
"dotenv": "^17.4.2",
|
|
51
52
|
"express": "^4.21.2",
|
|
52
53
|
"express-handlebars": "^9.0.1",
|
|
53
54
|
"express-jwt": "^8.5.1",
|
|
54
|
-
"express-session": "^1.
|
|
55
|
-
"express-useragent": "^2.1
|
|
55
|
+
"express-session": "^1.19.0",
|
|
56
|
+
"express-useragent": "^2.2.1",
|
|
56
57
|
"frameguard": "^4.0.0",
|
|
57
|
-
"helmet": "^8.
|
|
58
|
-
"i18next": "^26.
|
|
58
|
+
"helmet": "^8.3.0",
|
|
59
|
+
"i18next": "^26.3.6",
|
|
59
60
|
"include-all": "^4.0.3",
|
|
60
61
|
"jwt-simple": "^0.5.6",
|
|
61
62
|
"mongoose": "^8.12.1",
|
|
62
|
-
"mongoose-paginate-v2": "^1.9.
|
|
63
|
-
"morgan": "^1.
|
|
64
|
-
"multer": "^2.
|
|
63
|
+
"mongoose-paginate-v2": "^1.9.5",
|
|
64
|
+
"morgan": "^1.11.0",
|
|
65
|
+
"multer": "^2.2.0",
|
|
65
66
|
"nunjucks": "^3.2.4",
|
|
66
|
-
"redis": "^
|
|
67
|
-
"socket.io": "^4.8.
|
|
68
|
-
"socket.io-adapter": "^2.5.
|
|
69
|
-
"undici": "^
|
|
67
|
+
"redis": "^6.1.0",
|
|
68
|
+
"socket.io": "^4.8.3",
|
|
69
|
+
"socket.io-adapter": "^2.5.8",
|
|
70
|
+
"undici": "^7.28.0"
|
|
70
71
|
}
|
|
71
|
-
}
|
|
72
|
+
}
|