File tree 2 files changed +26
-1
lines changed 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
28
## 1.6.0 (2020-08-28)
4
29
5
30
* 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/).
1427
1427
This will install the latest supported version:
1428
1428
1429
1429
``` bash
1430
- $ composer require react/socket:^1.6
1430
+ $ composer require react/socket:^1.7
1431
1431
```
1432
1432
1433
1433
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments