-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
56 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
# Changelog | ||
|
||
## 1.3.0 (2018-02-13) | ||
|
||
* Feature: Support communication over Unix domain sockets (UDS) | ||
(#20 by @clue) | ||
|
||
```php | ||
// new: now supports communication over Unix domain sockets (UDS) | ||
$proxy = new ProxyConnector('http+unix:///tmp/proxy.sock', $connector); | ||
``` | ||
|
||
* Reduce memory consumption by avoiding circular reference from stream reader | ||
(#18 by @valga) | ||
|
||
* Improve documentation | ||
(#19 by @clue) | ||
|
||
## 1.2.0 (2017-08-30) | ||
|
||
* Feature: Use socket error codes for connection rejections | ||
|
@@ -26,7 +42,7 @@ | |
|
||
```php | ||
// new: username/password will now be passed to HTTP proxy server | ||
$proxy = new ProxyConnector('user:[email protected]:8080'); | ||
$proxy = new ProxyConnector('user:[email protected]:8080', $connector); | ||
``` | ||
|
||
## 1.0.0 (2017-06-10) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters