Pathologic was missing because of a .git folder inside.
[yaffs-website] / node_modules / websocket-driver / CHANGELOG.md
1 ### 0.6.5 / 2016-05-20
2
3 * Don't mutate buffers passed in by the application when masking
4
5 ### 0.6.4 / 2016-01-07
6
7 * If a number is given as input for a frame payload, send it as a string
8
9 ### 0.6.3 / 2015-11-06
10
11 * Reject draft-76 handshakes if their Sec-WebSocket-Key headers are invalid
12 * Throw a more helpful error if a client is created with an invalid URL
13
14 ### 0.6.2 / 2015-07-18
15
16 * When the peer sends a close frame with no error code, emit 1000
17
18 ### 0.6.1 / 2015-07-13
19
20 * Use the `buffer.{read,write}UInt{16,32}BE` methods for reading/writing numbers
21   to buffers rather than including duplicate logic for this
22
23 ### 0.6.0 / 2015-07-08
24
25 * Allow the parser to recover cleanly if event listeners raise an error
26 * Add a `pong` method for sending unsolicited pong frames
27
28 ### 0.5.4 / 2015-03-29
29
30 * Don't emit extra close frames if we receive a close frame after we already
31   sent one
32 * Fail the connection when the driver receives an invalid
33   `Sec-WebSocket-Extensions` header
34
35 ### 0.5.3 / 2015-02-22
36
37 * Don't treat incoming data as WebSocket frames if a client driver is closed
38   before receiving the server handshake
39
40 ### 0.5.2 / 2015-02-19
41
42 * Fix compatibility with the HTTP parser on io.js
43 * Use `websocket-extensions` to make sure messages and close frames are kept in
44   order
45 * Don't emit multiple `error` events
46
47 ### 0.5.1 / 2014-12-18
48
49 * Don't allow drivers to be created with unrecognized options
50
51 ### 0.5.0 / 2014-12-13
52
53 * Support protocol extensions via the websocket-extensions module
54
55 ### 0.4.0 / 2014-11-08
56
57 * Support connection via HTTP proxies using `CONNECT`
58
59 ### 0.3.6 / 2014-10-04
60
61 * It is now possible to call `close()` before `start()` and close the driver
62
63 ### 0.3.5 / 2014-07-06
64
65 * Don't hold references to frame buffers after a message has been emitted
66 * Make sure that `protocol` and `version` are exposed properly by the TCP driver
67
68 ### 0.3.4 / 2014-05-08
69
70 * Don't hold memory-leaking references to I/O buffers after they have been
71   parsed
72
73 ### 0.3.3 / 2014-04-24
74
75 * Correct the draft-76 status line reason phrase
76
77 ### 0.3.2 / 2013-12-29
78
79 * Expand `maxLength` to cover sequences of continuation frames and
80   `draft-{75,76}`
81 * Decrease default maximum frame buffer size to 64MB
82 * Stop parsing when the protocol enters a failure mode, to save CPU cycles
83
84 ### 0.3.1 / 2013-12-03
85
86 * Add a `maxLength` option to limit allowed frame size
87 * Don't pre-allocate a message buffer until the whole frame has arrived
88 * Fix compatibility with Node v0.11 `HTTPParser`
89
90 ### 0.3.0 / 2013-09-09
91
92 * Support client URLs with Basic Auth credentials
93
94 ### 0.2.2 / 2013-07-05
95
96 * No functional changes, just updates to package.json
97
98 ### 0.2.1 / 2013-05-17
99
100 * Export the isSecureRequest() method since faye-websocket relies on it
101 * Queue sent messages in the client's initial state
102
103 ### 0.2.0 / 2013-05-12
104
105 * Add API for setting and reading headers
106 * Add Driver.server() method for getting a driver for TCP servers
107
108 ### 0.1.0 / 2013-05-04
109
110 * First stable release