From f474156aaab4f09041144fa8b57c7d70aed32a1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Fri, 14 Jan 2022 11:14:32 +0100 Subject: [PATCH] Prepare v1.11.0 release --- CHANGELOG.md | 18 ++++++++++++++---- README.md | 2 +- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad62a33a..76ba85f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Changelog -## 1.10.0 (2021-09-13) +## 1.11.0 (2022-01-14) + +* Feature: Full support for PHP 8.1 release. + (#277 by @clue) + +* Feature: Avoid dependency on `ext-filter`. + (#279 by @clue) + +* Improve test suite to skip FD test when hitting memory limit + and skip legacy TLS 1.0 tests if disabled by system. + (#278 and #281 by @clue and #283 by @SimonFrings) + +## 1.10.0 (2021-11-29) * Feature: Support listening on existing file descriptors (FDs) with `SocketServer`. (#269 by @clue) @@ -9,9 +21,7 @@ $socket = new React\Socket\SocketSever('php://fd/3'); ``` - This is particularly useful when using - [systemd socket activation](https://www.freedesktop.org/software/systemd/man/systemd.socket.html) - like this: + This is particularly useful when using [systemd socket activation](https://www.freedesktop.org/software/systemd/man/systemd.socket.html) like this: ```bash $ systemd-socket-activate -l 8000 php examples/03-http-server.php php://fd/3 diff --git a/README.md b/README.md index 9b3131f2..1b7afc8a 100644 --- a/README.md +++ b/README.md @@ -1493,7 +1493,7 @@ This project follows [SemVer](https://semver.org/). This will install the latest supported version: ```bash -$ composer require react/socket:^1.10 +$ composer require react/socket:^1.11 ``` See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.