-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andy Lo-A-Foe
committed
May 30, 2016
1 parent
587cbfc
commit cc16358
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ The adapter requires the following environment variables to be defined before yo | |
| MATTERMOST\_GROUP | Yes | The team/group on your Mattermost server e.g. _core_ | | ||
| MATTERMOST\_USER | Yes | The Mattermost user account name e.g. _[email protected]_ | | ||
| MATTERMOST\_PASSWORD | Yes | The password of the user e.g. _s3cr3tP@ssw0rd!_ | | ||
| MATTERMOST\_WSS_PORT | No | Overrides the default port `443` for websocket (`wss://`) connections | | ||
| MATTERMOST\_WSS\_PORT | No | Overrides the default port `443` for websocket (`wss://`) connections | | ||
|
||
## Example configuration | ||
|
||
|
@@ -54,12 +54,12 @@ Recently Mattermost has received a major upgrade that introduces backwards incom | |
|
||
### Upgrading your Hubot for Mattermost 3.x | ||
|
||
Find the `package.json` file in your Hubot directory and look for the line in the `dependencies` section that references `hubot-matteruser`. Change the verion so it points to `^3.0.1` of the client. Example: | ||
Find the `package.json` file in your Hubot directory and look for the line in the `dependencies` section that references `hubot-matteruser`. Change the verion so it points to `^3.1.0` of the client. Example: | ||
|
||
```json | ||
... | ||
"dependencies": { | ||
"hubot-matteruser": "^3.0.1" | ||
"hubot-matteruser": "^3.1.0" | ||
}, | ||
... | ||
``` | ||
|