UNPKG

10.9 kBMarkdownView Raw
1
20.6.12 / 2011-02-18
3===================
4
5 * Fixed noDelay missing file descriptor problem
6
70.6.11 / 2011-02-15
8===================
9
10 * Fixed; Make sure to not execute any other connection operations after WebSocket
11 write error.
12 * Added more error logging
13
140.6.10 / 2011-02-09
15===================
16
17 * Added SSL chat example (`make example-ssl`)
18 * Fixed; possible write errors when a connection error event fires
19
200.6.9 / 2011-02-06
21==================
22
23 * 0.3 compatibility
24 * Updated socket.io client to 0.6.2
25 * Fixed Flash inline policy serving for Firefox 4
26 * Updated expresso
27 * Added comments and version number to socket.io/index
28
290.6.8 / 2011-01-10
30==================
31
32 * Fixed issue with terminating connection twice
33
340.6.7 / 2011-01-09
35==================
36
37 * Fixed situation where the connection drops but the client can still autoreconnect
38 through a different socket. In this case we still want to clear the FD but not
39 call onDisconnect immediately.
40
410.6.6 / 2011-01-09
42==================
43
44 * Note for Flash socket and inline policy on Firefox
45 * Destroy the fds on disconnect
46 * Restored 20 secs of polling so that node doesn't timeout the connections
47
480.6.5 / 2011-01-09
49==================
50
51 * Make sure not to trigger multiple timeouts when closing
52 * Important fix for polling transports.
53
540.6.4 / 2011-01-05
55==================
56
57 * Don't destroy the connection in _onClose. Destroying it will prevent the buffers from being flushed and will result in corrupted responses for the xhr-polling transport.
58 * Added try/catch block around JSON.parse and return an empty object literal if JSON parsing fails.
59 * Added missing .connect() to example
60
610.6.3 / 2010-12-23
62==================
63
64 * Changed polling default duration to 50 seconds
65 * might > will Adjusted to 85 column limit
66 * Support for resources that include slashes. Thanks @schamane
67 * Lazy loading of transports. Thanks @technoweenie Fixed README transports list
68 * OpenSSL clarifications (thanks @bmnds)
69 * Support for HAProxy load balancing (thanks Brian McKelvey) Backported Parser from 0.7
70 * Fixed HTTP API in example (was outdated). Thanks deedubs
71 * 0.3 compatibility (thanks Arnout)
72 * `client.broadcast` now 300% faster Cleaned up chat example
73 * fixed bad pluralization.
74 * cleaned up grammar, missing punctuation, etc.
75 * Restored global `netserver` for flashsocket Now supporting `flashPolicyServer` option (thanks Arnout) Tests passing with and without sudo/root user Fixed noDelay/timeout/utf-8 for draft 76 (accidental typo)
76 * Close the netServer when the main http server closes, this way the event loop does not keep running. NOTE: this is patch for node 0.2.X, this is not required for node 0.3.X
77 * Fallback to try{}catch handling for node < 0.2.4 , node 0.3.X seems to capture the errors correctly using the error event.
78 * Added the flash policy server, it's enabled by default but can be turned off if needed. Socket.io will automatically fallback to serving the policy file inline if server is disabled or unable to start up.
79 * Make sure to only write to open transports (thanks JohnDav)
80 * _open is still false, so destroy the connection immediately upon websocket error
81 * Make sure .connection is not null on 'end'
82 * Proper fix for invalid websocket key
83
840.6.1 / 2010-11-08
85
86 * Restored flash policy server, but with these changes:
87 - It's contingent on the listener flashPolicyServer option
88 - It's started by default if socket.io is started with root access
89 - It correctly closes the netserver upon all the dependent http servers being closed
90 - The handler for the inline request is still there regardless. This is important in the following circumstances, and has no performance hit
91 - The port 843 is filtered
92 - Flash at some point enables us to skip 843 checking altogether
93 - Tests compatibility
94 * Fixed connection timeout, noDelay and socket encoding for draft 76 (had been accidentally moved into the `else` block)
95 * Some stylistic fixes
96
970.6.0 / 2010-11-01
98==================
99
100 * Make sure to only write to open transports (thanks JohnDav)
101 * _open is still false, so destroy the connection immediately upon websocket error
102 * Make sure to disconnect directly onClose if the client is not handshaked and he can't possibly reconnect
103 * Make sure to end and destroy connection onDisconnect (for timeouts)
104 * Added missing .listen() call to example. Fixes #80. Thanks @machee
105 * Invalid transport test completed
106 * Initial stab at trying to detect invalid transport responses
107 * Make sure to provide a default for `log` if no log key was provided (internal)
108 * Removed unnecessary file extension verification when serving the client
109 * Removed unnecessary Client check upon connection
110 * Added support for /socket.io/WebSocketMain.swf
111 * Added test for /socket.io/WebSocketMain.swf
112 * Client serving ETag testing
113 * Added htmlfile transport tests
114 * Added extra byte to IE iframe bytes padding
115 * Invalid session id test
116 * end() before destroy()ing the socket for non-WebSocket or non-valid Upgrade requests
117 * Added test for non-socket.io requests
118 * Simplified index.js tests
119 * Moved listener tests into listener.js
120 * Make sure to call .end() when listening on connection 'end' event
121 * Make sure the file descriptor is destroyed on disconnection
122 * Fix for websocket client tracking test
123 * Inline (same port) flash socket policy request.
124 * If the server is not run with root privileges, then the flashsocket
125 transport will instead listen to all new connections on the main port
126 for policy requests. Flash policy requests happen to both port 843 and
127 the destination port:
128 http://www.lightsphere.com/dev/articles/flash_socket_policy.html
129
130 * [websocket test] Fix sending message to client upon connecting
131 * [websocket test] Fix for connection and handshake test
132 * [client files serving] Leverage end() write() call
133 * [client serving] Make sure to not do a useless file lookup when file is cached
134 * Finished json encoding test
135 * Look for the heartbeat in the decoded message
136 * Refactored websocket transports tests to match polling/multipart helpers
137 * Added coverage testing to Makefile
138 * Added heartbeat test to multipart
139 * Added buffered messages test for multipart
140 * Added assertions for `connected` property for all the tests
141 * Multipart clients tracking test
142 * Multipart client>server message sending test
143 * Make sure to only close the client stream when the roundtrip is complete
144 * Multipart connection and handshake tests:
145 - Implemented HTTP client on top of net.Stream with multipart boundary parsing for testing
146 - Test for connection / server>client message sending
147 * Removed unnecessary check for this.connection (since we now access the socket through req.connection for all transports)
148 * Test for `duration` parameter
149 * Added `make example` to Makefile
150 * Added clients tracking test for long polling
151 * Added message buffering test for long polling
152 * Improve this.request/this.response/this.connection
153 * Add 'end' listener onConnect, applies to all transports
154 * Improved error handling onConnect
155 * Remove legacy `flush` calls
156 * Removed unnecessary closeTimeout clearing in jsonp polling
157 * Make sure to close on disconnect if _open = true
158 * Clear disconnection timeout on disconnection (double check)
159 * Make sure to clear closeTimeout for polling transports on close.
160 * Replaced empty with null in log option
161 * Comma first style for client serving tests
162 * Long polling integration tests
163 * Test for heartbeat message
164 * Added heartbeat timeout test
165 * Support for listener#log false
166 * Corrected onConnect signature to support a request and a socket, or a request and a response.
167 * Removed error checking for non-upgradeable sockets, since they'll be destroyed, and error handling is done onConnect
168 * Added tests for websocket client tracking
169 * Added tests for websocket message buffering
170 * Make sure disconnect timeout is cleared on websocket re-connect
171 * Updated the flash socket with error detection, and readystate detection.
172 * This is needed because when a error occures we close down the connection,
173 * and the stream will become unwriteable.
174 * Also changed to a single write instead of multiple writes.
175 * Moved error handling to onConnect to avoid messing with the http.Server global error handlers
176 * Do special error handling for websocket
177 * Clearing heartbeat interval upon closing the connection
178 * Added error listeners, if theses errors are not correcly caught, they will leak memory.
179 * This caused http://speedo.no.de/ to go up from 1mb per connection after a ECONNECTRESET message
180 * Added encode=UTF-8 in jsonp-polling.js and xhr-polling.js since UTF-8 is the default encoding for http.ServerResponse.write
181 * Replaced string.length with Buffer.byteLength in jsonp-polling.js, listener.js and xhr-polling.js because content-length header requires number of bytes and not the number of symbols in string
182 * Fix COR headers/requests for different ports on Safari.
183 * Clearing the references to request, response and connection upon disconnect.
184 * Every require is blocking and requiring the sys module over and over and over again just makes no sense + it hurt performance.. Not to mention.. that it's already included.
185 * Socket.IO-node now serves the client out of the box for easier implementation
186 * Memory caching and ETag support for static files
187 * Tests
188 * Simplified demo even further thanks to new static file serving
189 * Failing to pass an origin header would throw an exception and crash the server. Added some handling.
190 * .connected renamed to ._open, and adopted proper `connected` (fixes #41)
191 * example/client updated to latest socket.io client
192 * Better checking of WebSocket connections
193 * Better handling of SSL location (thanks @jdub)
194 * Fix for cross-domain websocket (fixes #42)
195 * Removed clients/clientsIndex and only using the index (fixes #28)
196 * Fixed WebSocket location header for ws/wss (Thanks @jdub, Fixes #40)
197 * Cross domain issues with xhr-polling addressed. Thanks Niko Kaiser (@nicokaiser)
198 * Added origin verification for incoming data.
199 * Make sure pathname is set (thanks steadicat & swarmation team)
200 * Fix for accessing routes that being with the namespace but are not a connection attempt. Thanks @steadicat from swarmation
201 * JSONP-polling support
202 * Graceful closing of connection for invalid websocket clients
203 * Make it possible to just require 'socket.io'
204 * Make sure to abort the connect() method upon bad upgrade / origin verification
205 * Support for automatic JSON encoding/decoding
206 * Simplified chat example to take advantage of JSON encoding/decoding
207 * Removed fs sync call from example
208 * Better `how to use`
209 * Make sure to send content-type text/plain to `ok` POST responses
210