File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed
Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.7.0 (2021-06-25)
4+
5+ * Feature: Support falling back to multiple DNS servers from DNS config.
6+ (#257 by @clue )
7+
8+ If you're using the default ` Connector ` , it will now use all DNS servers
9+ configured on your system. If you have multiple DNS servers configured and
10+ connectivity to the primary DNS server is broken, it will now fall back to
11+ your other DNS servers, thus providing improved connectivity and redundancy
12+ for broken DNS configurations.
13+
14+ * Feature: Use round robin for happy eyeballs DNS responses (load balancing).
15+ (#247 by @clue )
16+
17+ If you're using the default ` Connector ` , it will now randomize the order of
18+ the IP addresses resolved via DNS when connecting. This allows the load to
19+ be distributed more evenly across all returned IP addresses. This can be
20+ used as a very basic DNS load balancing mechanism.
21+
22+ * Internal improvement to avoid unhandled rejection for future Promise API.
23+ (#258 by @clue )
24+
25+ * Improve test suite, use GitHub actions for continuous integration (CI).
26+ (#254 by @SimonFrings )
27+
328## 1.6.0 (2020-08-28)
429
530* Feature: Support upcoming PHP 8 release.
Original file line number Diff line number Diff line change @@ -1427,7 +1427,7 @@ This project follows [SemVer](https://semver.org/).
14271427This will install the latest supported version:
14281428
14291429``` bash
1430- $ composer require react/socket:^1.6
1430+ $ composer require react/socket:^1.7
14311431```
14321432
14331433See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments