Nav apraksta

CHANGELOG.txt 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. === 0.4.4 / 2013-02-14
  2. * Emit the 'close' event if TCP is closed before CLOSE frame is acked
  3. === 0.4.3 / 2012-07-09
  4. * Add 'Connection: close' to EventSource response
  5. * Handle situations where request.socket is undefined
  6. === 0.4.2 / 2012-04-06
  7. * Add WebSocket error code 1011.
  8. * Handle URLs with no path correctly by sending 'GET /'
  9. === 0.4.1 / 2012-02-26
  10. * Treat anything other than a Buffer as a string when calling send()
  11. === 0.4.0 / 2012-02-13
  12. * Add ping() method to server-side WebSocket and EventSource
  13. * Buffer send() calls until the draft-76 handshake is complete
  14. * Fix HTTPS problems on Node 0.7
  15. === 0.3.1 / 2012-01-16
  16. * Call setNoDelay(true) on net.Socket objects to reduce latency
  17. === 0.3.0 / 2012-01-13
  18. * Add support for EventSource connections
  19. === 0.2.0 / 2011-12-21
  20. * Add support for Sec-WebSocket-Protocol negotiation
  21. * Support hixie-76 close frames and 75/76 ignored segments
  22. * Improve performance of HyBi parsing/framing functions
  23. * Decouple parsers from TCP and reduce write volume
  24. === 0.1.2 / 2011-12-05
  25. * Detect closed sockets on the server side when TCP connection breaks
  26. * Make hixie-76 sockets work through HAProxy
  27. === 0.1.1 / 2011-11-30
  28. * Fix addEventListener() interface methods
  29. === 0.1.0 / 2011-11-27
  30. * Initial release, based on WebSocket components from Faye