Skip to content

Commit

Permalink
Prepare v1.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Jul 11, 2021
1 parent f37c964 commit b008fb8
Showing 1 changed file with 17 additions and 0 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.4.0 (2021-07-11)

A major new feature release, see [**release announcement**](https://clue.engineering/2021/announcing-reactphp-default-loop).

* Feature: Simplify usage by supporting new [default loop](https://reactphp.org/event-loop/#loop).
(#410 by @clue)

```php
// old (still supported)
$browser = new React\Http\Browser($loop);
$server = new React\Http\Server($loop, $handler);

// new (using default loop)
$browser = new React\Http\Browser();
$server = new React\Http\Server($handler);
```

## 1.3.0 (2021-04-11)

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

0 comments on commit b008fb8

Please sign in to comment.