Skip to content

Commit e6a57ed

Browse files
committed
Patch release v1.7.2
1 parent 7f18179 commit e6a57ed

File tree

4 files changed

+61
-138
lines changed

4 files changed

+61
-138
lines changed

.travis.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
language: node_js
22
node_js:
3-
- "0.12"
4-
- "4.2.1"
3+
- "4"
4+
- "6"
5+
- "8"
6+
- "10"
57
- "node"

HISTORY.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 1.7.2
2+
* Fixed: parsing error when `Connection` header uses ',' instead of ', ' (with space) [#46](https://github.com/sitegui/nodejs-websocket/pull/46)
3+
* Fixed: uses Buffer.alloc and Buffer.from instead of new Buffer
4+
* Changed: Drop support for Node v0.12
5+
16
# 1.7.1
27
* Fixed: two errors were emitted when trying to sendText to a closed connection while there was another pending binary write operation.
38

package-lock.json

+47-131
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nodejs-websocket",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"author": "Sitegui <[email protected]>",
55
"description": "Basic server&client approach to websocket (text and binary frames)",
66
"main": "./index.js",
@@ -15,13 +15,13 @@
1515
],
1616
"license": "MIT",
1717
"engines": {
18-
"node": ">=0.10"
18+
"node": ">=4"
1919
},
2020
"scripts": {
2121
"test": "mocha -R spec -b"
2222
},
2323
"devDependencies": {
24-
"mocha": "^3.0.2",
25-
"should": "^11.1.0"
24+
"mocha": "^5.2.0",
25+
"should": "^13.2.3"
2626
}
27-
}
27+
}

0 commit comments

Comments
 (0)