Skip to content

Commit 0ef48cf

Browse files
authored
Merge pull request #24 from ruby-jp/mdhistroy
Migrate History.txt to markdown
2 parents 29b2653 + 9d9b6c1 commit 0ef48cf

File tree

3 files changed

+82
-108
lines changed

3 files changed

+82
-108
lines changed

CHANGELOG.md

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Changelog
2+
3+
## Not yet released
4+
5+
## 0.6.1 - 2023-03-10
6+
* Make `#open?` safe to use when `@handshake` is `nil` #20 by @cyberarm
7+
8+
## 0.6.0 - 2022-09-22
9+
* Add option `cert_store` for passing cert store to SSLSocket context #12 by @DerekStride
10+
* Set `OpenSSL::SSL::SSLSocket#sync_close` to `true` #12 by @DerekStride
11+
12+
## 0.5.1 - 2022-01-01
13+
* Add `closed?` method to `WebSocket::Client::Simple` #8 by @fuyuton
14+
* rescue when `OpenSSL::SSL::SSLError` raised #10 by @fuyuton
15+
16+
## 0.5.0 - 2021-12-31
17+
* Change TLS context defaults to system's default. The previous defaults were `ssl_version=SSLv23` and `verify_mode=VERIFY_NONE`, which are insecure nowadays. #5
18+
* thank you for contributing @eagletmt
19+
* Made the necessary changes to use SNI. #6
20+
* thank you for contributing @fuyuton
21+
22+
## 0.4.0 - 2021-12-30
23+
* Drop support of ruby 2.5 or older versions as explicit.
24+
25+
## 0.3.1 - 2021-12-30
26+
* The development of this repository has moved to https://github.com/ruby-jp/websocket-client-simple
27+
28+
## 0.3.0 - 2016-12-30
29+
* `connect` method runs a given block before connecting WebSocket [#12](https://github.com/shokai/websocket-client-simple/issues/12)
30+
* thank you for suggestion @codekitchen
31+
32+
## 0.2.5 - 2016-02-18
33+
* bugfixed sending when broken pipe [#15](https://github.com/shokai/websocket-client-simple/pull/15)
34+
* add `:verify_mode` option for SSL Context [#14](https://github.com/shokai/websocket-client-simple/pull/14)
35+
* thank you for contributing @michaelvilensky
36+
37+
## 0.2.4 - 2015-11-12
38+
* support handshake headers [#11](https://github.com/shokai/websocket-client-simple/pull/11)
39+
* thank you for contributing @mathieugagne
40+
41+
## 0.2.3 - 2015-10-26
42+
* kill thread at end of method [#10](https://github.com/shokai/websocket-client-simple/pull/10)
43+
* thank you for contributing @hansy
44+
45+
## 0.2.2 - 2014-11-18
46+
* bugfix socket reading
47+
48+
## 0.2.0 - 2014-06-07
49+
* SSL support with `wss://` and `https://` scheme [#6](https://github.com/shokai/websocket-client-simple/pull/6)
50+
* thank you for contributing @mallowlabs
51+
52+
## 0.1.0 - 2014-05-08
53+
* add accessor `Client#handshake` [#5](https://github.com/shokai/websocket-client-simple/issues/5)
54+
* bugfix socket reading
55+
56+
## 0.0.9 - 2014-04-03
57+
* emit `error` in receive thread
58+
* rescue only `Errno::EPIPE`, not all Errors
59+
60+
## 0.0.8 - 2014-01-29
61+
* bugfix `Client#close` #4
62+
63+
## 0.0.7 - 2014-01-29
64+
* send CLOSE frame in `Client#close` [#4](https://github.com/shokai/websocket-client-simple/issues/4)
65+
## 0.0.6 - 2014-01-17
66+
* add function `Client#open?`
67+
68+
## 0.0.5 - 2013-03-23
69+
* kill read thread on close
70+
71+
## 0.0.4 - 2013-03-23
72+
* fix sample and README
73+
74+
## 0.0.3 - 2013-03-23
75+
* `:type => :text` option in send
76+
77+
## 0.0.2 - 2013-03-22
78+
* remove unnecessary sleep
79+
80+
## 0.0.1 - 2013-03-22
81+
* release

History.txt

Lines changed: 0 additions & 107 deletions
This file was deleted.

websocket-client-simple.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
1616
if spec.respond_to?(:metadata)
1717
spec.metadata["homepage_uri"] = spec.homepage
1818
spec.metadata["source_code_uri"] = spec.homepage
19-
spec.metadata["changelog_uri"] = "https://github.com/ruby-jp/websocket-client-simple/blob/master/History.txt"
19+
spec.metadata["changelog_uri"] = "https://github.com/ruby-jp/websocket-client-simple/blob/master/CHANGELOG.md"
2020
end
2121

2222
spec.post_install_message = "The development of this gem has moved to #{spec.homepage}."

0 commit comments

Comments
 (0)