Compare commits

..

2 Commits

Author SHA1 Message Date
James Coglan 03aebd19fb Fix syntax of dependency versions and bump version to 0.7.3 2019-06-13 16:41:26 +01:00
James Coglan 90c8eb4626 Mention license change in the changelog 2019-06-13 11:38:57 +01:00
2 changed files with 10 additions and 5 deletions
+6 -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
@@ -13,6 +17,7 @@
- Use the `Buffer.alloc()` and `Buffer.from()` functions instead of the unsafe
`Buffer()` constructor
- Handle errors encountered while handling malformed draft-76 requests
- Change license from MIT to Apache 2.0
### 0.7.0 / 2017-09-11
+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": "*",