Skip to content

Commit d395731

Browse files
committed
Prepare v0.8.10 release
1 parent 0c8d9a6 commit d395731

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
# Changelog
22

3-
## 0.8.9 (2017-01-18)
3+
## 0.8.10 (2018-02-28)
4+
5+
* Feature: Update DNS dependency to support loading system default DNS
6+
nameserver config on all supported platforms
7+
(`/etc/resolv.conf` on Unix/Linux/Mac/Docker/WSL and WMIC on Windows)
8+
(#152 by @clue)
9+
10+
This means that connecting to hosts that are managed by a local DNS server,
11+
such as a corporate DNS server or when using Docker containers, will now
12+
work as expected across all platforms with no changes required:
13+
14+
```php
15+
$connector = new Connector($loop);
16+
$connector->connect('intranet.example:80')->then(function ($connection) {
17+
// …
18+
});
19+
```
20+
21+
## 0.8.9 (2018-01-18)
422

523
* Feature: Support explicitly choosing TLS version to negotiate with remote side
624
by respecting `crypto_method` context parameter for all classes.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1345,7 +1345,7 @@ The recommended way to install this library is [through Composer](https://getcom
13451345
This will install the latest supported version:
13461346

13471347
```bash
1348-
$ composer require react/socket:^0.8.9
1348+
$ composer require react/socket:^0.8.10
13491349
```
13501350

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

0 commit comments

Comments
 (0)