Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 03aebd19fb | |||
| 90c8eb4626 |
+6
-1
@@ -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
@@ -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": "*",
|
||||
|
||||
Reference in New Issue
Block a user