File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.4.13 (2018-02-27)
4+
5+ * Add ` Config::loadSystemConfigBlocking() ` to load default system config
6+ and support parsing DNS config on all supported platforms
7+ (` /etc/resolv.conf ` on Unix/Linux/Mac and WMIC on Windows)
8+ (#92 , #93 , #94 and #95 by @clue )
9+
10+ ``` php
11+ $config = Config::loadSystemConfigBlocking();
12+ $server = $config->nameservers ? reset($config->nameservers) : '8.8.8.8';
13+ ```
14+
15+ * Remove unneeded cyclic dependency on react/socket
16+ (#96 by @clue)
17+
318## 0.4.12 (2018-01-14)
419
520* Improve test suite by adding forward compatibility with PHPUnit 6,
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ The recommended way to install this library is [through Composer](https://getcom
166166This will install the latest supported version:
167167
168168``` bash
169- $ composer require react/dns:^0.4.12
169+ $ composer require react/dns:^0.4.13
170170```
171171
172172See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments