File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.2.0 (2019-01-07)
4
+
5
+ * Feature / Fix: Improve TLS 1.3 support.
6
+ (#186 by @clue )
7
+
8
+ TLS 1.3 is now an official standard as of August 2018! :tada :
9
+ The protocol has major improvements in the areas of security, performance, and privacy.
10
+ TLS 1.3 is supported by default as of [ OpenSSL 1.1.1] ( https://www.openssl.org/blog/blog/2018/09/11/release111/ ) .
11
+ For example, this version ships with Ubuntu 18.10 (and newer) by default, meaning that recent installations support TLS 1.3 out of the box :shipit:
12
+
13
+ * Fix: Avoid possibility of missing remote address when TLS handshake fails.
14
+ (#188 by @clue )
15
+
16
+ * Improve performance by prefixing all global functions calls with ` \ ` to skip the look up and resolve process and go straight to the global function.
17
+ (#183 by @WyriHaximus )
18
+
19
+ * Update documentation to use full class names with namespaces.
20
+ (#187 by @clue )
21
+
22
+ * Improve test suite to avoid some possible race conditions,
23
+ test against PHP 7.3 on Travis and
24
+ use dedicated ` assertInstanceOf() ` assertions.
25
+ (#185 by @clue , #178 by @WyriHaximus and #181 by @carusogabriel )
26
+
3
27
## 1.1.0 (2018-10-01)
4
28
5
29
* Feature: Improve error reporting for failed connection attempts and improve
Original file line number Diff line number Diff line change @@ -1354,7 +1354,7 @@ This project follows [SemVer](https://semver.org/).
1354
1354
This will install the latest supported version:
1355
1355
1356
1356
``` bash
1357
- $ composer require react/socket:^1.1
1357
+ $ composer require react/socket:^1.2
1358
1358
```
1359
1359
1360
1360
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments