VUE_GabenParadise/node_modules/websocket-driver/CHANGELOG.md

111 lines
2.9 KiB
Markdown
Raw Permalink Normal View History

2020-08-10 12:35:19 +00:00
### 0.6.5 / 2016-05-20
2020-08-13 08:31:15 +00:00
* Don't mutate buffers passed in by the application when masking
2020-08-10 12:35:19 +00:00
### 0.6.4 / 2016-01-07
2020-08-13 08:31:15 +00:00
* If a number is given as input for a frame payload, send it as a string
2020-08-10 12:35:19 +00:00
### 0.6.3 / 2015-11-06
2020-08-13 08:31:15 +00:00
* Reject draft-76 handshakes if their Sec-WebSocket-Key headers are invalid
* Throw a more helpful error if a client is created with an invalid URL
2020-08-10 12:35:19 +00:00
### 0.6.2 / 2015-07-18
2020-08-13 08:31:15 +00:00
* When the peer sends a close frame with no error code, emit 1000
2020-08-10 12:35:19 +00:00
### 0.6.1 / 2015-07-13
2020-08-13 08:31:15 +00:00
* Use the `buffer.{read,write}UInt{16,32}BE` methods for reading/writing numbers
2020-08-10 12:35:19 +00:00
to buffers rather than including duplicate logic for this
### 0.6.0 / 2015-07-08
2020-08-13 08:31:15 +00:00
* Allow the parser to recover cleanly if event listeners raise an error
* Add a `pong` method for sending unsolicited pong frames
2020-08-10 12:35:19 +00:00
### 0.5.4 / 2015-03-29
2020-08-13 08:31:15 +00:00
* Don't emit extra close frames if we receive a close frame after we already
2020-08-10 12:35:19 +00:00
sent one
2020-08-13 08:31:15 +00:00
* Fail the connection when the driver receives an invalid
2020-08-10 12:35:19 +00:00
`Sec-WebSocket-Extensions` header
### 0.5.3 / 2015-02-22
2020-08-13 08:31:15 +00:00
* Don't treat incoming data as WebSocket frames if a client driver is closed
2020-08-10 12:35:19 +00:00
before receiving the server handshake
### 0.5.2 / 2015-02-19
2020-08-13 08:31:15 +00:00
* Fix compatibility with the HTTP parser on io.js
* Use `websocket-extensions` to make sure messages and close frames are kept in
2020-08-10 12:35:19 +00:00
order
2020-08-13 08:31:15 +00:00
* Don't emit multiple `error` events
2020-08-10 12:35:19 +00:00
### 0.5.1 / 2014-12-18
2020-08-13 08:31:15 +00:00
* Don't allow drivers to be created with unrecognized options
2020-08-10 12:35:19 +00:00
### 0.5.0 / 2014-12-13
2020-08-13 08:31:15 +00:00
* Support protocol extensions via the websocket-extensions module
2020-08-10 12:35:19 +00:00
### 0.4.0 / 2014-11-08
2020-08-13 08:31:15 +00:00
* Support connection via HTTP proxies using `CONNECT`
2020-08-10 12:35:19 +00:00
### 0.3.6 / 2014-10-04
2020-08-13 08:31:15 +00:00
* It is now possible to call `close()` before `start()` and close the driver
2020-08-10 12:35:19 +00:00
### 0.3.5 / 2014-07-06
2020-08-13 08:31:15 +00:00
* Don't hold references to frame buffers after a message has been emitted
* Make sure that `protocol` and `version` are exposed properly by the TCP driver
2020-08-10 12:35:19 +00:00
### 0.3.4 / 2014-05-08
2020-08-13 08:31:15 +00:00
* Don't hold memory-leaking references to I/O buffers after they have been
2020-08-10 12:35:19 +00:00
parsed
### 0.3.3 / 2014-04-24
2020-08-13 08:31:15 +00:00
* Correct the draft-76 status line reason phrase
2020-08-10 12:35:19 +00:00
### 0.3.2 / 2013-12-29
2020-08-13 08:31:15 +00:00
* Expand `maxLength` to cover sequences of continuation frames and
2020-08-10 12:35:19 +00:00
`draft-{75,76}`
2020-08-13 08:31:15 +00:00
* Decrease default maximum frame buffer size to 64MB
* Stop parsing when the protocol enters a failure mode, to save CPU cycles
2020-08-10 12:35:19 +00:00
### 0.3.1 / 2013-12-03
2020-08-13 08:31:15 +00:00
* Add a `maxLength` option to limit allowed frame size
* Don't pre-allocate a message buffer until the whole frame has arrived
* Fix compatibility with Node v0.11 `HTTPParser`
2020-08-10 12:35:19 +00:00
### 0.3.0 / 2013-09-09
2020-08-13 08:31:15 +00:00
* Support client URLs with Basic Auth credentials
2020-08-10 12:35:19 +00:00
### 0.2.2 / 2013-07-05
2020-08-13 08:31:15 +00:00
* No functional changes, just updates to package.json
2020-08-10 12:35:19 +00:00
### 0.2.1 / 2013-05-17
2020-08-13 08:31:15 +00:00
* Export the isSecureRequest() method since faye-websocket relies on it
* Queue sent messages in the client's initial state
2020-08-10 12:35:19 +00:00
### 0.2.0 / 2013-05-12
2020-08-13 08:31:15 +00:00
* Add API for setting and reading headers
* Add Driver.server() method for getting a driver for TCP servers
2020-08-10 12:35:19 +00:00
### 0.1.0 / 2013-05-04
2020-08-13 08:31:15 +00:00
* First stable release