File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed
Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.3.0 (2017-09-25)
4+
5+ * Feature: Always use ` Resolver ` with default DNS to match Socket component
6+ and update DNS dependency to support hosts file on all platforms
7+ (#19 and #20 by @clue )
8+
9+ This means that connecting to hosts such as ` localhost ` (and for example
10+ those used for Docker containers) will now work as expected across all
11+ platforms with no changes required:
12+
13+ ``` php
14+ $factory = new Factory($loop);
15+ $factory->createClient('localhost:5353');
16+ ```
17+
318## 1.2.0 (2017-08-09)
419
520* Feature: Target evenement 3.0 a long side 2.0 and 1.0
Original file line number Diff line number Diff line change @@ -34,19 +34,19 @@ This library's API is modelled after node.js's API for
3434
3535## Install
3636
37- The recommended way to install this library is [ through Composer] ( http ://getcomposer.org) .
38- [ New to Composer?] ( http ://getcomposer.org/doc/00-intro.md)
37+ The recommended way to install this library is [ through Composer] ( https ://getcomposer.org) .
38+ [ New to Composer?] ( https ://getcomposer.org/doc/00-intro.md)
3939
4040``` bash
41- $ composer require react/datagram:^1.2
41+ $ composer require react/datagram:^1.3
4242```
4343
4444See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
4545
4646## Tests
4747
4848To run the test suite, you first need to clone this repo and then install all
49- dependencies [ through Composer] ( http ://getcomposer.org) :
49+ dependencies [ through Composer] ( https ://getcomposer.org) :
5050
5151``` bash
5252$ composer install
You can’t perform that action at this time.
0 commit comments