Skip to content

Commit

Permalink
Prepare v1.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonFrings committed Sep 1, 2022
1 parent 5e4de71 commit 09366dd
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down

0 comments on commit 09366dd

Please sign in to comment.