From ca9537cb5ab7b5aaebe93429980a17cf4ead32b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Wed, 26 Feb 2020 13:05:32 +0100 Subject: [PATCH] Prepare v2.7.0 release --- CHANGELOG.md | 17 +++++++++++++++++ README.md | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba7e768..f1f92e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 2.7.0 (2020-02-26) + +* Feature: Add backpressure support and support throttling for streaming outgoing chunked request body. + (#148 by @clue) + +* Feature: Start sending outgoing request even when streaming body doesn't emit any data yet. + (#150 by @clue) + +* Feature: Only start request timeout timer after streaming request body has been sent (exclude upload time). + (#151 and #152 by @clue) + +* Feature: Reject request when streaming request body emits error or closes unexpectedly. + (#153 by @clue) + +* Improve download benchmarking script and add new upload benchmark. + (#149 by @clue) + ## 2.6.1 (2020-01-14) * Improve test suite by testing against PHP 7.4 and simplify test setup and test matrix diff --git a/README.md b/README.md index 0559ce2..f0d795e 100644 --- a/README.md +++ b/README.md @@ -721,7 +721,7 @@ This project follows [SemVer](https://semver.org/). This will install the latest supported version: ```bash -$ composer require clue/buzz-react:^2.6.1 +$ composer require clue/buzz-react:^2.7 ``` See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.