Skip to content

Commit 83cc87d

Browse files
committed
Prepare v2.6.0 release
1 parent 02eee38 commit 83cc87d

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
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.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ $promise = $browser->get('https://user:pass@example.com/api');
241241
```
242242

243243
Note 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).
245245
This example will automatically pass the base64-encoded authentiation details
246246
using the outgoing `Authorization: Basic …` request header. If the HTTP endpoint
247247
you're talking to requires any other authentication scheme, you can also pass
@@ -521,7 +521,7 @@ change the options to use:
521521

522522
The [`Browser`](#browser) class exposes several options for the handling of
523523
HTTP 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
525525
can be controlled via the following API (and their defaults):
526526

527527
```php
@@ -701,7 +701,7 @@ This project follows [SemVer](https://semver.org/).
701701
This 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

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

0 commit comments

Comments
 (0)