File tree Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.4.0 (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
+ (#23 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
+ $factory = new Factory($loop);
16
+ $factory->createClient('intranet.example:5353');
17
+ ```
18
+
19
+ * Improve README
20
+ (#22 by @jsor)
21
+
3
22
## 1.3.0 (2017-09-25)
4
23
5
24
* Feature: Always use `Resolver` with default DNS to match Socket component
Original file line number Diff line number Diff line change 1
1
# Datagram
2
2
3
- [ ![ Build Status] ( https://travis-ci.org/reactphp/datagram.svg?branch=master )] ( https://travis-ci.org/reactphp/datagram ) [ ![ Code Climate ] ( https://codeclimate.com/github/reactphp/datagram/badges/gpa.svg )] ( https://codeclimate.com/github/reactphp/datagram )
3
+ [ ![ Build Status] ( https://travis-ci.org/reactphp/datagram.svg?branch=master )] ( https://travis-ci.org/reactphp/datagram )
4
4
5
5
Event-driven UDP datagram socket client and server for [ ReactPHP] ( https://reactphp.org ) .
6
6
@@ -36,12 +36,20 @@ This library's API is modelled after node.js's API for
36
36
The recommended way to install this library is [ through Composer] ( https://getcomposer.org ) .
37
37
[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
38
38
39
+ This project follows [ SemVer] ( http://semver.org/ ) .
40
+ This will install the latest supported version:
41
+
39
42
``` bash
40
- $ composer require react/datagram:^1.3
43
+ $ composer require react/datagram:^1.4
41
44
```
42
45
43
46
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
44
47
48
+ This project aims to run on any platform and thus does not require any PHP
49
+ extensions and supports running on legacy PHP 5.3 through current PHP 7+ and
50
+ HHVM.
51
+ It's * highly recommended to use PHP 7+* for this project.
52
+
45
53
## Tests
46
54
47
55
To run the test suite, you first need to clone this repo and then install all
You can’t perform that action at this time.
0 commit comments