File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
35
# # 1.9.0 (2023-04-26)
4
36
5
37
This is a ** SECURITY** and feature release for the 1.x series of ReactPHP' s HTTP component.
Original file line number Diff line number Diff line change @@ -2986,7 +2986,7 @@ This project follows [SemVer](https://semver.org/).
2986
2986
This will install the latest supported version:
2987
2987
2988
2988
``` bash
2989
- composer require react/http:^1.9
2989
+ composer require react/http:^1.10
2990
2990
```
2991
2991
2992
2992
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments