File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.5.5 (2017-09-10)
4+
5+ * Fix: Update Socket component to work around sending secure HTTPS requests with PHP < 7.1.4
6+ (#109 by @clue )
7+
38## 0.5.4 (2017-08-25)
49
510* Feature: Update Socket dependency to support hosts file on all platforms
813 This means that HTTP requests to hosts such as ` localhost ` will now work as
914 expected across all platforms with no changes required:
1015
11- ```
16+ ``` php
1217 $client = new Client($loop);
1318 $request = $client->request('GET', 'http://localhost/');
1419 $request->on('response', function (Response $response) {
2328 (#106 by @WyriHaximus)
2429
2530* Improve test suite by locking Travis distro so new defaults will not break the build
26- (#211 by @clue)
31+ (#105 by @clue)
2732
2833## 0.5.2 (2017-06-27)
2934
Original file line number Diff line number Diff line change @@ -100,13 +100,13 @@ See also the [examples](examples).
100100
101101## Install
102102
103- The recommended way to install this library is [ through Composer] ( http ://getcomposer.org) .
104- [ New to Composer?] ( http ://getcomposer.org/doc/00-intro.md)
103+ The recommended way to install this library is [ through Composer] ( https ://getcomposer.org) .
104+ [ New to Composer?] ( https ://getcomposer.org/doc/00-intro.md)
105105
106106This will install the latest supported version:
107107
108108``` bash
109- $ composer require react/http-client:^0.5.4
109+ $ composer require react/http-client:^0.5.5
110110```
111111
112112See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments