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 1
1
# Changelog
2
2
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
+
3
18
## 1.2.0 (2017-08-09)
4
19
5
20
* 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
34
34
35
35
## Install
36
36
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)
39
39
40
40
``` bash
41
- $ composer require react/datagram:^1.2
41
+ $ composer require react/datagram:^1.3
42
42
```
43
43
44
44
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
45
45
46
46
## Tests
47
47
48
48
To 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) :
50
50
51
51
``` bash
52
52
$ composer install
You can’t perform that action at this time.
0 commit comments