File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.8.3 (2017-07-18)
4+
5+ * Feature: Pass full remote URI as parameter to authentication callback
6+ (#58 by @clue )
7+
8+ ``` php
9+ // new third parameter passed to authentication callback
10+ $server->setAuth(function ($user, $pass, $remote) {
11+ $ip = parse_url($remote, PHP_URL_HOST);
12+
13+ return ($ip === '127.0.0.1');
14+ });
15+ ```
16+
17+ * Fix: Fix connecting to IPv6 address via SOCKS5 server and validate target
18+ URI so hostname can not contain excessive URI components
19+ (#59 by @clue)
20+
21+ * Improve test suite by fixing HHVM build for now again and ignore future HHVM build errors
22+ (#57 by @clue)
23+
324## 0.8.2 (2017-05-09)
425
526* Feature: Forward compatibility with upcoming Socket v1.0 and v0.8
Original file line number Diff line number Diff line change @@ -753,7 +753,7 @@ The recommended way to install this library is [through Composer](http://getcomp
753753This will install the latest supported version:
754754
755755``` bash
756- $ composer require clue/socks-react:^0.8.2
756+ $ composer require clue/socks-react:^0.8.3
757757```
758758
759759See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments