We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f37c964 commit b008fb8Copy full SHA for b008fb8
CHANGELOG.md
@@ -1,5 +1,22 @@
1
# Changelog
2
3
+## 1.4.0 (2021-07-11)
4
+
5
+A major new feature release, see [**release announcement**](https://clue.engineering/2021/announcing-reactphp-default-loop).
6
7
+* Feature: Simplify usage by supporting new [default loop](https://reactphp.org/event-loop/#loop).
8
+ (#410 by @clue)
9
10
+ ```php
11
+ // old (still supported)
12
+ $browser = new React\Http\Browser($loop);
13
+ $server = new React\Http\Server($loop, $handler);
14
15
+ // new (using default loop)
16
+ $browser = new React\Http\Browser();
17
+ $server = new React\Http\Server($handler);
18
+ ```
19
20
## 1.3.0 (2021-04-11)
21
22
* Feature: Support persistent connections (`Connection: keep-alive`).
0 commit comments