hubot 11.4.0 → 11.5.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 +1 -1
  2. package/src/Response.mjs +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hubot",
3
- "version": "11.4.0",
3
+ "version": "11.5.0",
4
4
  "author": "hubot",
5
5
  "keywords": [
6
6
  "github",
package/src/Response.mjs CHANGED
@@ -14,7 +14,8 @@ class Response {
14
14
  this.match = match
15
15
  this.envelope = {
16
16
  room: this.message.room,
17
- user: this.message.user
17
+ user: this.message.user,
18
+ message: this.message
18
19
  }
19
20
  }
20
21