Skip to content

Commit 2e86601

Browse files
committed
Prepare v0.8.6 release
1 parent ae97217 commit 2e86601

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
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
@@ -8,7 +29,7 @@
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)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1296,7 +1296,7 @@ The recommended way to install this library is [through Composer](https://getcom
12961296
This 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

13021302
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.

0 commit comments

Comments
 (0)