Skip to content

Commit f3d8c75

Browse files
committed
Update deps. Closes hapijs#168
1 parent 58cbf89 commit f3d8c75

6 files changed

+8
-6
lines changed

.eslintignore

100644100755
File mode changed.

.gitignore

100644100755
File mode changed.

.npmignore

100644100755
File mode changed.

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ language: node_js
33
node_js:
44
- "4"
55
- "6"
6+
- "7"
67
- "node"
78

89
sudo: false
@@ -11,6 +12,7 @@ env:
1112
- HAPI_VERSION="13"
1213
- HAPI_VERSION="14"
1314
- HAPI_VERSION="15"
15+
- HAPI_VERSION="16"
1416

1517
install:
1618
- npm install

lib/listener.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ internals.Sockets.prototype.auth = function (socket) {
500500
this._byUser[user] &&
501501
this._byUser[user].length >= this._listener._settings.auth.maxConnectionsPerUser) {
502502

503-
return Boom.serverTimeout('Too many connections for the authenticated user');
503+
return Boom.serverUnavailable('Too many connections for the authenticated user');
504504
}
505505

506506
this._byUser[user] = this._byUser[user] || [];

package.json

100644100755
+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nes",
33
"description": "WebSocket adapter plugin for hapi routes",
4-
"version": "6.3.1",
4+
"version": "6.3.2",
55
"repository": "git://github.com/hapijs/nes",
66
"main": "lib/index.js",
77
"browser": "dist/client.js",
@@ -14,13 +14,13 @@
1414
"node": ">=4.5.0"
1515
},
1616
"dependencies": {
17-
"boom": "3.x.x",
17+
"boom": "4.x.x",
1818
"call": "3.x.x",
1919
"cryptiles": "3.x.x",
2020
"hoek": "4.x.x",
2121
"iron": "4.x.x",
2222
"items": "^2.1.x",
23-
"joi": "9.x.x",
23+
"joi": "10.x.x",
2424
"ws": "1.x.x"
2525
},
2626
"peerDependencies": {
@@ -29,8 +29,8 @@
2929
"devDependencies": {
3030
"babel-cli": "^6.1.2",
3131
"babel-preset-es2015": "^6.1.2",
32-
"code": "3.x.x",
33-
"hapi": "15.x.x",
32+
"code": "4.x.x",
33+
"hapi": "16.x.x",
3434
"lab": "11.x.x"
3535
},
3636
"babel": {

0 commit comments

Comments
 (0)