Fix syntax of dependency versions and bump version to 0.7.3

This commit is contained in:
James Coglan
2019-06-13 16:41:26 +01:00
parent 90c8eb4626
commit 03aebd19fb
2 changed files with 9 additions and 5 deletions
+5 -1
View File
@@ -1,9 +1,13 @@
### 0.7.2 / 2019-06-13
### 0.7.3 / 2019-06-13
- Cap version of http-parser-js below 0.4.11, which introduced a bug that
prevents us from handling messages that are part of the same input buffer as
the handshake response if chunked encoding is specified
### 0.7.2 / 2019-06-13
(This version was pulled due to an error when publishing)
### 0.7.1 / 2019-06-10
- Catch any exceptions produced while generating a handshake response and send a
+4 -4
View File
@@ -7,7 +7,7 @@
"websocket"
],
"license": "Apache-2.0",
"version": "0.7.2",
"version": "0.7.3",
"engines": {
"node": ">=0.8.0"
},
@@ -16,9 +16,9 @@
],
"main": "./lib/websocket/driver",
"dependencies": {
"http-parser-js": ">= 0.4.0, < 0.4.11",
"safe-buffer": ">= 5.1.0",
"websocket-extensions": ">= 0.1.1"
"http-parser-js": ">=0.4.0 <0.4.11",
"safe-buffer": ">=5.1.0",
"websocket-extensions": ">=0.1.1"
},
"devDependencies": {
"jstest": "*",