Skip to content

Commit

Permalink
Prepare v1.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Jun 25, 2021
1 parent dff5fbe commit 5d39e3f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## 1.7.0 (2021-06-25)

* Feature: Support falling back to multiple DNS servers from DNS config.
(#257 by @clue)

If you're using the default `Connector`, it will now use all DNS servers
configured on your system. If you have multiple DNS servers configured and
connectivity to the primary DNS server is broken, it will now fall back to
your other DNS servers, thus providing improved connectivity and redundancy
for broken DNS configurations.

* Feature: Use round robin for happy eyeballs DNS responses (load balancing).
(#247 by @clue)

If you're using the default `Connector`, it will now randomize the order of
the IP addresses resolved via DNS when connecting. This allows the load to
be distributed more evenly across all returned IP addresses. This can be
used as a very basic DNS load balancing mechanism.

* Internal improvement to avoid unhandled rejection for future Promise API.
(#258 by @clue)

* Improve test suite, use GitHub actions for continuous integration (CI).
(#254 by @SimonFrings)

## 1.6.0 (2020-08-28)

* Feature: Support upcoming PHP 8 release.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1427,7 +1427,7 @@ This project follows [SemVer](https://semver.org/).
This will install the latest supported version:

```bash
$ composer require react/socket:^1.6
$ composer require react/socket:^1.7
```

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

0 comments on commit 5d39e3f

Please sign in to comment.