Skip to content

Commit

Permalink
Prepare v1.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Sep 29, 2022
1 parent 14e9c6b commit aa7512e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 1.8.0 (2022-09-29)

* Feature: Support for default request headers.
(#461 by @51imyy)

```php
$browser = new React\Http\Browser();
$browser = $browser->withHeader('User-Agent', 'ACME');

$browser->get($url)->then(…);
```

* Feature: Forward compatibility with upcoming Promise v3.
(#460 by @clue)

## 1.7.0 (2022-08-23)

This is a **SECURITY** and feature release for the 1.x series of ReactPHP's HTTP component.
Expand All @@ -19,7 +34,7 @@ This is a **SECURITY** and feature release for the 1.x series of ReactPHP's HTTP
(#444 by @mrsimonbennett)

* Minor documentation improvements.
(#452 by @clue, #458 by @nhedger, #448 by @jorrit and #446 by @SimonFrings
(#452 by @clue, #458 by @nhedger, #448 by @jorrit and #446 by @SimonFrings)

* Improve test suite, update to use new reactphp/async package instead of clue/reactphp-block,
skip memory tests when lowering memory limit fails and fix legacy HHVM build.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2956,7 +2956,7 @@ This project follows [SemVer](https://semver.org/).
This will install the latest supported version:

```bash
composer require react/http:^1.7
composer require react/http:^1.8
```

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

0 comments on commit aa7512e

Please sign in to comment.