From 45531ae427ac4120991d2f0ddc79b8b776a07b37 Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Sat, 13 Oct 2018 11:02:03 +0300 Subject: [PATCH] pre-release activities --- CHANGELOG.md | 1 + src/PSR7Client.php | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c5d9d20b..6171a258f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ v1.2.5 (13.10.2018) ------ - decoupled from Zend Diactoros via PSR-17 factory (by @1ma) - `Verbose` flag for cli renamed to `verbose` (by @ruudk) +- bugfix: HTTP protocol version mismatch on PHP end v1.2.4 (30.09.2018) ------ diff --git a/src/PSR7Client.php b/src/PSR7Client.php index 494342fa7..1ce5baed5 100644 --- a/src/PSR7Client.php +++ b/src/PSR7Client.php @@ -84,6 +84,7 @@ public function acceptRequest() parse_str($ctx['rawQuery'], $query); $request = $request + ->withProtocolVersion(substr($ctx['protocol'], 5)) ->withCookieParams($ctx['cookies']) ->withQueryParams($query) ->withUploadedFiles($this->wrapUploads($ctx['uploads']));