Releases: reactphp/http-client
v0.5.11
v0.5.10
-
Fix: Avoid unneeded warning when decoding invalid data on PHP 7.4.
(#150 by @clue) -
Add
.gitattributes
to exclude dev files from exports.
(#149 by @reedy) -
Link to clue/reactphp-buzz for higher-level HTTP client.
(#139 by @clue) -
Improve test suite by simplifying test matrix and test setup.
(#151 by @clue)
v0.5.9
v0.5.8
v0.5.7
-
Fix: Ignore excessive whitespace in chunk header for
Transfer-Encoding: chunked
(#123 by @DangerLifter and @clue) -
Fix: Ignore invalid incoming
Transfer-Encoding
response header
(#122 by @clue) -
Improve documentation for
Client
(and advancedConnector
)
(#111 by @jsor and #121 by @clue) -
Improve test suite by adding support for PHPUnit 6
(#112 by @carusogabriel)
v0.5.6
v0.5.5
v0.5.4
-
Feature: Update Socket dependency to support hosts file on all platforms
(#108 by @clue)This means that HTTP requests to hosts such as
localhost
will now work as
expected across all platforms with no changes required:$client = new Client($loop); $request = $client->request('GET', 'http://localhost/'); $request->on('response', function (Response $response) { // … }); $request->end();
v0.5.3
-
Feature: Target evenement 3.0 a long side 2.0
(#106 by @WyriHaximus) -
Improve test suite by locking Travis distro so new defaults will not break the build
(#105 by @clue)