Skip to content

Commit 09366dd

Browse files
committed
Prepare v1.8.0 release
1 parent 5e4de71 commit 09366dd

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## 1.8.0 (2022-09-01)
4+
5+
* Feature: Full support for PHP 8.1 and PHP 8.2.
6+
(#47 and #48 by @SimonFrings)
7+
8+
* Feature: Mark passwords and URIs as `#[\SensitiveParameter]` (PHP 8.2+).
9+
(#49 by @SimonFrings)
10+
11+
* Feature: Forward compatibility with upcoming Promise v3.
12+
(#44 by @clue)
13+
14+
* Fix: Fix invalid references in exception stack trace.
15+
(#45 by @clue)
16+
17+
* Improve test suite and fix legacy HHVM build.
18+
(#46 by @SimonFrings)
19+
320
## 1.7.0 (2021-08-06)
421

522
* Feature: Simplify usage by supporting new default loop and making `Connector` optional.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ This project follows [SemVer](https://semver.org/).
441441
This will install the latest supported version:
442442

443443
```bash
444-
$ composer require clue/http-proxy-react:^1.7
444+
composer require clue/http-proxy-react:^1.8
445445
```
446446

447447
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
457457
dependencies [through Composer](https://getcomposer.org/):
458458

459459
```bash
460-
$ composer install
460+
composer install
461461
```
462462

463463
To run the test suite, go to the project root and run:
464464

465465
```bash
466-
$ vendor/bin/phpunit
466+
vendor/bin/phpunit
467467
```
468468

469469
The test suite contains tests that rely on a working internet connection,
470470
alternatively you can also run it like this:
471471

472472
```bash
473-
$ vendor/bin/phpunit --exclude-group internet
473+
vendor/bin/phpunit --exclude-group internet
474474
```
475475

476476
## License

0 commit comments

Comments
 (0)