File tree 2 files changed +23
-2
lines changed
2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.8.6 (2017-11-18)
4
+
5
+ * Feature: Add Unix domain socket (UDS) support to ` Server ` with ` unix:// ` URI scheme
6
+ and add advanced ` UnixServer ` class.
7
+ (#120 by @andig )
8
+
9
+ ``` php
10
+ // new: Server now supports "unix://" scheme
11
+ $server = new Server('unix:///tmp/server.sock', $loop);
12
+
13
+ // new: advanced usage
14
+ $server = new UnixServer('/tmp/server.sock', $loop);
15
+ ```
16
+
17
+ * Restructure examples to ease getting started
18
+ (#136 by @clue)
19
+
20
+ * Improve test suite by adding forward compatibility with PHPUnit 6 and
21
+ ignore Mac OS X test failures for now until Travis tests work again
22
+ (#133 by @gabriel-caruso and #134 by @clue)
23
+
3
24
## 0.8.5 (2017-10-23)
4
25
5
26
* Fix: Work around PHP bug with Unix domain socket (UDS) paths for Mac OS X
8
29
* Fix: Fix `SecureServer` to return `null` URI if server socket is already closed
9
30
(#129 by @clue)
10
31
11
- * Improve test sutie by adding forward compatibility with PHPUnit v5 and
32
+ * Improve test suite by adding forward compatibility with PHPUnit v5 and
12
33
forward compatibility with upcoming EventLoop releases in tests and
13
34
test Mac OS X on Travis
14
35
(#122 by @andig and #125, #127 and #130 by @clue)
Original file line number Diff line number Diff line change @@ -1296,7 +1296,7 @@ The recommended way to install this library is [through Composer](https://getcom
1296
1296
This will install the latest supported version:
1297
1297
1298
1298
``` bash
1299
- $ composer require react/socket:^0.8.5
1299
+ $ composer require react/socket:^0.8.6
1300
1300
```
1301
1301
1302
1302
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments