File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
25
## 1.6.0 (2020-10-23)
4
26
5
27
* Enhanced documentation for ReactPHP's new HTTP client.
Original file line number Diff line number Diff line change @@ -441,7 +441,7 @@ This project follows [SemVer](https://semver.org/).
441
441
This will install the latest supported version:
442
442
443
443
``` bash
444
- $ composer require clue/http-proxy-react:^1.6
444
+ $ composer require clue/http-proxy-react:^1.7
445
445
```
446
446
447
447
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments