File tree 2 files changed +23
-1
lines changed
2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.8.9 (2017-01-18)
4
+
5
+ * Feature: Support explicitly choosing TLS version to negotiate with remote side
6
+ by respecting ` crypto_method ` context parameter for all classes.
7
+ (#149 by @clue )
8
+
9
+ By default, all connector and server classes support TLSv1.0+ and exclude
10
+ support for legacy SSLv2/SSLv3. As of PHP 5.6+ you can also explicitly
11
+ choose the TLS version you want to negotiate with the remote side:
12
+
13
+ ``` php
14
+ // new: now supports 'crypto_method` context parameter for all classes
15
+ $connector = new Connector($loop, array(
16
+ 'tls' => array(
17
+ 'crypto_method' => STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT
18
+ )
19
+ ));
20
+ ```
21
+
22
+ * Minor internal clean up to unify class imports
23
+ (#148 by @clue)
24
+
3
25
## 0.8.8 (2018-01-06)
4
26
5
27
* Improve test suite by adding test group to skip integration tests relying on
Original file line number Diff line number Diff line change @@ -1343,7 +1343,7 @@ The recommended way to install this library is [through Composer](https://getcom
1343
1343
This will install the latest supported version:
1344
1344
1345
1345
``` bash
1346
- $ composer require react/socket:^0.8.8
1346
+ $ composer require react/socket:^0.8.9
1347
1347
```
1348
1348
1349
1349
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments