forked from shokai/websocket-client-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
History.txt
76 lines (43 loc) · 1.32 KB
/
History.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
=== 0.3.0 2016-02-20
* "connect" method runs a given block before connecting WebSocket #12
* thank you for suggestion @codekitchen
=== 0.2.5 2016-02-18
* bugfixed sending when broken pipe #15
* add :verify_mode option for SSL Context #14
* thank you for contributing @michaelvilensky
=== 0.2.4 2015-11-12
* support handshake headers #11
* thank you for contributing @mathieugagne
=== 0.2.3 2015-10-26
* kill thread at end of method
* thank you for contributing @hansy
=== 0.2.2 2014-11-18
* add :ssl_version option to specify version of SSL/TLS
* thank you for contributing @tonybyrne
=== 0.2.1 2014-10-19
* bugfix socket reading
=== 0.2.0 2014-06-07
* SSL support with wss:// and https:// scheme
* thank you for contributing @mallowlabs
=== 0.1.0 2014-05-08
* add accessor Client#handshake #5
* bugfix socket reading
=== 0.0.9 2014-04-03
* emit "error" in receive thread
* rescue only Errno::EPIPE, not all Errors
=== 0.0.8 2014-01-29
* bugfix Client#close #4
=== 0.0.7 2014-01-29
* send CLOSE frame in Client#close #4
=== 0.0.6 2014-01-17
* add function Client#open?
=== 0.0.5 2013-03-23
* kill read thread on close
=== 0.0.4 2013-03-23
* fix sample and README
=== 0.0.3 2013-03-23
* :type => :text option in send
=== 0.0.2 2013-03-22
* remove unnecessary sleep
=== 0.0.1 2013-03-22
* release