mirror of
https://github.com/faye/faye-websocket-ruby.git
synced 2025-11-01 13:59:13 +00:00
5.0 KiB
5.0 KiB
0.12.0 / 2025-05-25
- Represent binary messages as strings with
Encoding::BINARYrather than as arrays
0.11.3 / 2023-07-25
- Handle 'cert already in hash table' error message on Ruby 3.1+
0.11.2 / 2023-04-04
- Handle SSL certificate chains where not all the intermediate certificates are recognised by the client
0.11.1 / 2021-05-24
- Prevent the client hanging if
close()is called when already closing
0.11.0 / 2020-07-31
- Implement TLS certificate verification and enable it by default on client connections
- Add a
:tlsoption to the client with sub-fields:root_cert_fileand:verify_peerfor configuring TLS verification
0.10.9 / 2019-06-13
- Use the EventMachine API rather than
IO#writeto write data; this uses the event loop and avoids getting blocked by slow clients
0.10.8 / 2019-06-10
- In the case of a close timeout, don't block on waiting for writing to the socket to complete
- Fix a race condition that caused a timeout not to be cancelled immediately when the WebSocket is closed
- Change license from MIT to Apache 2.0
0.10.7 / 2017-02-22
- Emit an error if
EventMachine::Connection#unbindis called with an error
0.10.6 / 2017-01-22
- Forcibly close the I/O stream after a timeout if the peer does not respond
after calling
close()
0.10.5 / 2016-11-12
- Set the SNI hostname when making secure requests
0.10.4 / 2016-05-20
- Amend warnings issued when running with -W2
0.10.3 / 2016-02-24
- Use
PATH_INFOandQUERY_STRINGrather than the non-standardREQUEST_URIfrom the Rack env
0.10.2 / 2015-11-26
- Fix the
headersandstatusmethods onClient, which were broken in the last release
0.10.1 / 2015-11-06
- Make sure errors can be safely emitted if creating the driver fails
- Prevent a race condition when binding
EM.attachto the socket
0.10.0 / 2015-07-08
- Add the standard
codeandreasonparameters to theclosemethod
0.9.2 / 2014-12-21
- Only emit
erroronce, and don't emit it afterclose
0.9.1 / 2014-12-18
- Check that all options to the WebSocket constructor are recognized
0.9.0 / 2014-12-13
- Allow protocol extensions to be passed into websocket-extensions
0.8.0 / 2014-11-08
- Support connections via HTTP proxies
0.7.5 / 2014-10-04
- Allow sockets to be closed when they are in any state other than
CLOSED
0.7.4 / 2014-07-06
- Stop using
define_methodto implementEventproperties, since it blows the method cache - Stop setup errors masking URI errors in
Client#initialize - Make the Goliath adapter compatible with goliath-1.0.4.
0.7.3 / 2014-04-24
- Remove an unneeded method override in the
WebSocketclass
0.7.2 / 2013-12-29
- Fix WebSocket detection in cases where the web server does not produce an
env
0.7.1 / 2013-12-03
- Support the
max_lengthwebsocket-driver option - Expose a
messageproperty onerrorevents
0.7.0 / 2013-09-09
- Allow the server to send custom headers with EventSource responses
0.6.3 / 2013-08-04
- Stop implicitly depending on Rack 1.4
0.6.2 / 2013-07-05
- Catch errors thrown by EventMachine and emit
errorandcloseevents
0.6.1 / 2013-05-12
- Release a gem without log and pid files in it
0.6.0 / 2013-05-12
- Add support for custom headers
0.5.0 / 2013-05-05
- Extract the protocol handlers into the
websocket-driverlibrary - Support the
rack.hijackAPI - Add support for Rainbows 4.5 and Puma
- Officially support JRuby and Rubinius
0.4.7 / 2013-02-14
- Emit the
closeevent if TCP is closed before CLOSE frame is acked - Treat the
Upgrade: websocketheader case-insensitively because of IE10 - Do not suppress headers in the Thin and Rainbows adapters unless the status is
101
0.4.6 / 2012-07-09
- Add
Connection: closeto EventSource response
0.4.5 / 2012-04-06
- Add WebSocket error code
1011. - Handle URLs with no path correctly by sending
GET /
0.4.4 / 2012-03-16
- Fix installation on JRuby with a platform-specific gem
0.4.3 / 2012-03-12
- Make
extconf.rba no-op on JRuby
0.4.2 / 2012-03-09
- Port masking-function C extension to Java for JRuby
0.4.1 / 2012-02-26
- Treat anything other than an
Arrayas a string when callingsend() - Fix error loading UTF-8 validation code on Ruby 1.9 with
-Kuflag
0.4.0 / 2012-02-13
- Add
ping()method to server-sideWebSocketandEventSource - Buffer
send()calls until the draft-76 handshake is complete
0.3.0 / 2012-01-13
- Add support for
EventSourceconnections - Support the Thin, Rainbows and Goliath web servers
0.2.0 / 2011-12-21
- Add support for
Sec-WebSocket-Protocolnegotiation - Support
hixie-76close frames and 75/76 ignored segments - Improve performance of HyBi parsing/framing functions
- Write masking function in C
0.1.2 / 2011-12-05
- Make
hixie-76sockets work through HAProxy
0.1.1 / 2011-11-30
- Fix
add_event_listener()interface methods
0.1.0 / 2011-11-27
- Initial release, based on WebSocket components from Faye