Skip to content

Commit

Permalink
Prepare v0.8.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Jul 18, 2017
1 parent a8a30a5 commit 4442bcf
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
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.3 (2017-07-18)

* Feature: Pass full remote URI as parameter to authentication callback
(#58 by @clue)

```php
// new third parameter passed to authentication callback
$server->setAuth(function ($user, $pass, $remote) {
$ip = parse_url($remote, PHP_URL_HOST);

return ($ip === '127.0.0.1');
});
```

* Fix: Fix connecting to IPv6 address via SOCKS5 server and validate target
URI so hostname can not contain excessive URI components
(#59 by @clue)

* Improve test suite by fixing HHVM build for now again and ignore future HHVM build errors
(#57 by @clue)

## 0.8.2 (2017-05-09)

* Feature: Forward compatibility with upcoming Socket v1.0 and v0.8
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ The recommended way to install this library is [through Composer](http://getcomp
This will install the latest supported version:

```bash
$ composer require clue/socks-react:^0.8.2
$ composer require clue/socks-react:^0.8.3
```

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

0 comments on commit 4442bcf

Please sign in to comment.