Skip to content

Commit 8b2f18c

Browse files
committed
Prepare v1.7.0 release
1 parent e9a5803 commit 8b2f18c

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

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

3+
## 1.7.0 (2021-08-06)
4+
5+
* Feature: Simplify usage by supporting new default loop and making `Connector` optional.
6+
(#41 and #42 by @clue)
7+
8+
```php
9+
// old (still supported)
10+
$proxy = new Clue\React\HttpProxy\ProxyConnector(
11+
'127.0.0.1:8080',
12+
new React\Socket\Connector($loop)
13+
);
14+
15+
// new (using default loop)
16+
$proxy = new Clue\React\HttpProxy\ProxyConnector('127.0.0.1:8080');
17+
```
18+
19+
* Documentation improvements and updated examples.
20+
(#39 and #43 by @clue and #40 by @PaulRotmann)
21+
22+
* Improve test suite and use GitHub actions for continuous integration (CI).
23+
(#38 by @SimonFrings)
24+
325
## 1.6.0 (2020-10-23)
426

527
* Enhanced documentation for ReactPHP's new HTTP client.

README.md

Lines changed: 1 addition & 1 deletion
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.6
444+
$ composer require clue/http-proxy-react:^1.7
445445
```
446446

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

0 commit comments

Comments
 (0)