hubot 11.6.0 → 12.0.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.
Files changed (2) hide show
  1. package/package.json +7 -7
  2. package/src/Robot.mjs +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hubot",
3
- "version": "11.6.0",
3
+ "version": "12.0.0",
4
4
  "author": "hubot",
5
5
  "keywords": [
6
6
  "github",
@@ -14,12 +14,6 @@
14
14
  "type": "git",
15
15
  "url": "https://github.com/hubotio/hubot.git"
16
16
  },
17
- "dependencies": {
18
- "connect-multiparty": "^2.2.0",
19
- "express": "^4.21.2",
20
- "express-basic-auth": "^1.2.1",
21
- "pino": "^8.11.0"
22
- },
23
17
  "devDependencies": {
24
18
  "standard": "^17.1.0"
25
19
  },
@@ -47,5 +41,11 @@
47
41
  "next"
48
42
  ],
49
43
  "dryRun": false
44
+ },
45
+ "dependencies": {
46
+ "connect-multiparty": "^2.2.0",
47
+ "express": "^5.1.0",
48
+ "express-basic-auth": "^1.2.1",
49
+ "pino": "^9.6.0"
50
50
  }
51
51
  }
package/src/Robot.mjs CHANGED
@@ -461,7 +461,6 @@ class Robot {
461
461
  authUser[user] = pass
462
462
  app.use(basicAuth({ users: authUser }))
463
463
  }
464
- app.use(express.query())
465
464
 
466
465
  app.use(express.json({ limit }))
467
466
  app.use(express.urlencoded({ limit, parameterLimit: paramLimit, extended: true }))