hubot 11.5.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.
package/bin/Hubot.mjs CHANGED
@@ -134,6 +134,7 @@ async function loadExternalScripts () {
134
134
  }
135
135
 
136
136
  (async () => {
137
+ await robot.load(pathResolve('.', 'configuration'))
137
138
  await robot.loadAdapter(options.file)
138
139
  if (options.version) {
139
140
  console.log(robot.version)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hubot",
3
- "version": "11.5.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 }))