From c72aa0812e48efc9be6b3ed31507a574cdb9b530 Mon Sep 17 00:00:00 2001 From: Niklas Keller Date: Tue, 17 Oct 2017 09:55:02 +0200 Subject: [PATCH] Prepare v3.0.11 --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa5246b9..1c6736fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 3.0.11 + + - Fixed issues with responses without `content-length` and without `transfer-encoding: chunked`. + - Revert fix for v3.0.10, as this has been properly fixed in `amphp/byte-stream`. + - Catch `ConnectException` from `amphp/socket` and throw `SocketException` instead. The exception was previously leaked, but undocumented and unexpected. + +## 3.0.10 + + - Fixed issue with unknown socket on shutdown due to unpredictable `__destruct()` call order. + ## 3.0.9 - Lazily parse captured TLS certificates. This improves performance and memory usage. Additionally, `openssl_x509_parse` currently leaks memory. This fix ensures it leaks only if explicitly requested (until the PHP bug is fixed). See https://bugs.php.net/bug.php?id=75363.