diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b1f252..19d534d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 1.8.0 (2022-09-01) + +* Feature: Full support for PHP 8.1 and PHP 8.2. + (#47 and #48 by @SimonFrings) + +* Feature: Mark passwords and URIs as `#[\SensitiveParameter]` (PHP 8.2+). + (#49 by @SimonFrings) + +* Feature: Forward compatibility with upcoming Promise v3. + (#44 by @clue) + +* Fix: Fix invalid references in exception stack trace. + (#45 by @clue) + +* Improve test suite and fix legacy HHVM build. + (#46 by @SimonFrings) + ## 1.7.0 (2021-08-06) * Feature: Simplify usage by supporting new default loop and making `Connector` optional. diff --git a/README.md b/README.md index cdbc048..b5337c1 100644 --- a/README.md +++ b/README.md @@ -441,7 +441,7 @@ This project follows [SemVer](https://semver.org/). This will install the latest supported version: ```bash -$ composer require clue/http-proxy-react:^1.7 +composer require clue/http-proxy-react:^1.8 ``` See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades. @@ -457,20 +457,20 @@ To run the test suite, you first need to clone this repo and then install all dependencies [through Composer](https://getcomposer.org/): ```bash -$ composer install +composer install ``` To run the test suite, go to the project root and run: ```bash -$ vendor/bin/phpunit +vendor/bin/phpunit ``` The test suite contains tests that rely on a working internet connection, alternatively you can also run it like this: ```bash -$ vendor/bin/phpunit --exclude-group internet +vendor/bin/phpunit --exclude-group internet ``` ## License