Skip to content

Commit

Permalink
Prepare v0.8.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Dec 17, 2017
1 parent 5953103 commit 0fcd6f2
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 5 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## 0.8.7 (2017-12-17)

* Feature: Support SOCKS over TLS (`sockss://` URI scheme)
(#70 and #71 by @clue)

```php
// new: now supports SOCKS over TLS
$client = new Client('socks5s://localhost', $connector);
```

* Feature: Support communication over Unix domain sockets (UDS)
(#69 by @clue)

```php
// new: now supports SOCKS over Unix domain sockets (UDS)
$client = new Client('socks5+unix:///tmp/proxy.sock', $connector);
```

* Improve test suite by adding forward compatibility with PHPUnit 6
(#68 by @clue)

## 0.8.6 (2017-09-17)

* Feature: Forward compatibility with Evenement v3.0
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -891,8 +891,8 @@ $server = new Server($loop, $socket);

### Using a PHP SOCKS server

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

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

```bash
$ composer require clue/socks-react:^0.8.6
$ composer require clue/socks-react:^0.8.7
```

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

0 comments on commit 0fcd6f2

Please sign in to comment.