Skip to content

Commit 5d39e3f

Browse files
committed
Prepare v1.7.0 release
1 parent dff5fbe commit 5d39e3f

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
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.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1427,7 +1427,7 @@ This project follows [SemVer](https://semver.org/).
14271427
This 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

14331433
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.

0 commit comments

Comments
 (0)