Skip to content

Commit 4442bcf

Browse files
committed
Prepare v0.8.3 release
1 parent a8a30a5 commit 4442bcf

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

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.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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ The recommended way to install this library is [through Composer](http://getcomp
753753
This 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

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

0 commit comments

Comments
 (0)