File tree Expand file tree Collapse file tree 2 files changed +23
-2
lines changed
Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
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+
324## 0.8.5 (2017-10-23)
425
526* Fix: Work around PHP bug with Unix domain socket (UDS) paths for Mac OS X
829* Fix: Fix `SecureServer` to return `null` URI if server socket is already closed
930 (#129 by @clue)
1031
11- * Improve test sutie by adding forward compatibility with PHPUnit v5 and
32+ * Improve test suite by adding forward compatibility with PHPUnit v5 and
1233 forward compatibility with upcoming EventLoop releases in tests and
1334 test Mac OS X on Travis
1435 (#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
12961296This will install the latest supported version:
12971297
12981298``` bash
1299- $ composer require react/socket:^0.8.5
1299+ $ composer require react/socket:^0.8.6
13001300```
13011301
13021302See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments