Skip to content

Commit

Permalink
Prepare v2.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Apr 3, 2019
1 parent 02eee38 commit 83cc87d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 2.6.0 (2019-04-03)

* Feature / Fix: Add `Content-Length: 0` request header for empty `POST` request etc.
(#120 by @clue)

* Fix: Only try to follow redirects if `Location` response header is present.
(#130 by @clue)

* Documentation and example for SSH proxy (SSH tunnel) and update SOCKS proxy example.
(#116, #119 and #121 by @clue)

* Improve test suite and also run tests on PHP 7.3.
(#122 by @samnela)

## 2.5.0 (2018-10-24)

* Feature: Add HTTP timeout option.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ $promise = $browser->get('https://user:[email protected]/api');
```

Note that special characters in the authentication details have to be
percent-encoded, see also [`rawurlencode()`](http://php.net/rawurlencode).
percent-encoded, see also [`rawurlencode()`](https://www.php.net/manual/en/function.rawurlencode.php).
This example will automatically pass the base64-encoded authentiation details
using the outgoing `Authorization: Basic …` request header. If the HTTP endpoint
you're talking to requires any other authentication scheme, you can also pass
Expand Down Expand Up @@ -521,7 +521,7 @@ change the options to use:

The [`Browser`](#browser) class exposes several options for the handling of
HTTP transactions. These options resemble some of PHP's
[HTTP context options](http://php.net/manual/en/context.http.php) and
[HTTP context options](https://www.php.net/manual/en/context.http.php) and
can be controlled via the following API (and their defaults):

```php
Expand Down Expand Up @@ -701,7 +701,7 @@ This project follows [SemVer](https://semver.org/).
This will install the latest supported version:

```bash
$ composer require clue/buzz-react:^2.5
$ composer require clue/buzz-react:^2.6
```

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

0 comments on commit 83cc87d

Please sign in to comment.