Skip to content

Commit b008fb8

Browse files
committed
Prepare v1.4.0 release
1 parent f37c964 commit b008fb8

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
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.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+
320
## 1.3.0 (2021-04-11)
421

522
* Feature: Support persistent connections (`Connection: keep-alive`).

0 commit comments

Comments
 (0)