File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed
Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 2.6.0 (2019-04-03)
4+
5+ * Feature / Fix: Add ` Content-Length: 0 ` request header for empty ` POST ` request etc.
6+ (#120 by @clue )
7+
8+ * Fix: Only try to follow redirects if ` Location ` response header is present.
9+ (#130 by @clue )
10+
11+ * Documentation and example for SSH proxy (SSH tunnel) and update SOCKS proxy example.
12+ (#116 , #119 and #121 by @clue )
13+
14+ * Improve test suite and also run tests on PHP 7.3.
15+ (#122 by @samnela )
16+
317## 2.5.0 (2018-10-24)
418
519* Feature: Add HTTP timeout option.
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ $promise = $browser->get('https://user:pass@example.com/api');
241241```
242242
243243Note that special characters in the authentication details have to be
244- percent-encoded, see also [ ` rawurlencode() ` ] ( http ://php.net/rawurlencode) .
244+ percent-encoded, see also [ ` rawurlencode() ` ] ( https ://www. php.net/manual/en/function. rawurlencode.php ) .
245245This example will automatically pass the base64-encoded authentiation details
246246using the outgoing ` Authorization: Basic … ` request header. If the HTTP endpoint
247247you're talking to requires any other authentication scheme, you can also pass
@@ -521,7 +521,7 @@ change the options to use:
521521
522522The [ ` Browser ` ] ( #browser ) class exposes several options for the handling of
523523HTTP transactions. These options resemble some of PHP's
524- [ HTTP context options] ( http ://php.net/manual/en/context.http.php) and
524+ [ HTTP context options] ( https ://www. php.net/manual/en/context.http.php) and
525525can be controlled via the following API (and their defaults):
526526
527527``` php
@@ -701,7 +701,7 @@ This project follows [SemVer](https://semver.org/).
701701This will install the latest supported version:
702702
703703``` bash
704- $ composer require clue/buzz-react:^2.5
704+ $ composer require clue/buzz-react:^2.6
705705```
706706
707707See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments