Skip to content

Commit 0fcd6f2

Browse files
committed
Prepare v0.8.7 release
1 parent 5953103 commit 0fcd6f2

2 files changed

Lines changed: 26 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## 0.8.7 (2017-12-17)
4+
5+
* Feature: Support SOCKS over TLS (`sockss://` URI scheme)
6+
(#70 and #71 by @clue)
7+
8+
```php
9+
// new: now supports SOCKS over TLS
10+
$client = new Client('socks5s://localhost', $connector);
11+
```
12+
13+
* Feature: Support communication over Unix domain sockets (UDS)
14+
(#69 by @clue)
15+
16+
```php
17+
// new: now supports SOCKS over Unix domain sockets (UDS)
18+
$client = new Client('socks5+unix:///tmp/proxy.sock', $connector);
19+
```
20+
21+
* Improve test suite by adding forward compatibility with PHPUnit 6
22+
(#68 by @clue)
23+
324
## 0.8.6 (2017-09-17)
425

526
* Feature: Forward compatibility with Evenement v3.0

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -891,8 +891,8 @@ $server = new Server($loop, $socket);
891891

892892
### Using a PHP SOCKS server
893893

894-
* If you're looking for an end-user SOCKS server daemon, you may want to
895-
use [clue/psocksd](https://github.com/clue/psocksd).
894+
* If you're looking for an end-user SOCKS server daemon, you may want to use
895+
[LeProxy](https://leproxy.org/) or [clue/psocksd](https://github.com/clue/psocksd).
896896
* If you're looking for a SOCKS server implementation, consider using
897897
the above [`Server`](#server) class.
898898

@@ -962,7 +962,7 @@ The recommended way to install this library is [through Composer](https://getcom
962962
This will install the latest supported version:
963963

964964
```bash
965-
$ composer require clue/socks-react:^0.8.6
965+
$ composer require clue/socks-react:^0.8.7
966966
```
967967

968968
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
@@ -1013,5 +1013,5 @@ MIT, see LICENSE
10131013
[clue/connection-manager-extra](https://github.com/clue/php-connection-manager-extra)
10141014
which allows retrying unreliable ones, implying connection timeouts,
10151015
concurrently working with multiple connectors and more.
1016-
* If you're looking for an end-user SOCKS server daemon, you may want to
1017-
use [clue/psocksd](https://github.com/clue/psocksd).
1016+
* If you're looking for an end-user SOCKS server daemon, you may want to use
1017+
[LeProxy](https://leproxy.org/) or [clue/psocksd](https://github.com/clue/psocksd).

0 commit comments

Comments
 (0)