Skip to content

Commit

Permalink
Prepare v1.11.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Jan 14, 2022
1 parent 7b6772a commit f474156
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
18 changes: 14 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit f474156

Please sign in to comment.