Skip to content

Commit 8111281

Browse files
committed
Prepare v1.10.0 release
1 parent 04cb936 commit 8111281

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# Changelog
22

3+
## 1.10.0 (2024-03-27)
4+
5+
* Feature: Add new PSR-7 implementation and remove dated RingCentral PSR-7 dependency.
6+
(#518, #519, #520 and #522 by @clue)
7+
8+
This changeset allows us to maintain our own PSR-7 implementation and reduce
9+
dependencies on external projects. It also improves performance slightly and
10+
does not otherwise affect our public API. If you want to explicitly install
11+
the old RingCentral PSR-7 dependency, you can still install it like this:
12+
13+
```bash
14+
composer require ringcentral/psr7
15+
```
16+
17+
* Feature: Add new `Uri` class for new PSR-7 implementation.
18+
(#521 by @clue)
19+
20+
* Feature: Validate outgoing HTTP message headers and reject invalid messages.
21+
(#523 by @clue)
22+
23+
* Feature: Full PHP 8.3 compatibility.
24+
(#508 by @clue)
25+
26+
* Fix: Fix HTTP client to omit `Transfer-Encoding: chunked` when streaming empty request body.
27+
(#516 by @clue)
28+
29+
* Fix: Ensure connection close handler is cleaned up for each request.
30+
(#515 by @WyriHaximus)
31+
32+
* Update test suite and avoid unhandled promise rejections.
33+
(#501 and #502 by @clue)
34+
335
## 1.9.0 (2023-04-26)
436

537
This is a **SECURITY** and feature release for the 1.x series of ReactPHP's HTTP component.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2986,7 +2986,7 @@ This project follows [SemVer](https://semver.org/).
29862986
This will install the latest supported version:
29872987

29882988
```bash
2989-
composer require react/http:^1.9
2989+
composer require react/http:^1.10
29902990
```
29912991

29922992
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.

0 commit comments

Comments
 (0)