@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.
@@ -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.0",
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
- "vite-plus": "catalog:",
39
- "jest": "^29.7.0",
40
- "nodemon": "^3.1.14"
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.0",
47
- "connect-timeout": "^1.9.0",
47
+ "compression": "^1.8.1",
48
+ "connect-timeout": "^1.9.1",
48
49
  "cookie-parser": "^1.4.7",
49
- "cron": "^4.1.0",
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.18.1",
55
- "express-useragent": "^2.1.0",
55
+ "express-session": "^1.19.0",
56
+ "express-useragent": "^2.2.1",
56
57
  "frameguard": "^4.0.0",
57
- "helmet": "^8.0.0",
58
- "i18next": "^26.0.8",
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.4",
63
- "morgan": "^1.10.0",
64
- "multer": "^2.1.1",
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": "^5.12.1",
67
- "socket.io": "^4.8.1",
68
- "socket.io-adapter": "^2.5.6",
69
- "undici": "^6.25.0"
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
+ }
@@ -1,5 +1,6 @@
1
1
  allowBuilds:
2
2
  fsevents: set this to true or false
3
+ unrs-resolver: set this to true or false
3
4
  catalog:
4
5
  vite: npm:@voidzero-dev/vite-plus-core@latest
5
6
  vitest: npm:@voidzero-dev/vite-plus-test@latest