From e4e9455fa8ce7dc2819fc7bc144c1c26005ad401 Mon Sep 17 00:00:00 2001 From: Jacob Hoffman-Andrews Date: Sun, 27 Sep 2020 11:33:11 -0700 Subject: [PATCH 1/2] Add changelog for 1.5.0. --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4963e7..e3a061b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 1.5.0 + * Add pluggable name resolution. Users can now override the IP addresses for + hostnames of their choice. + * bugfix: Don't re-pool streams on drop. This would occur if the user called + `response.into_reader()` and dropped the resulting `Read` before reading all + the way to EOF. The result would be a BadStatus error on the next request to + the same hostname. This only affected users using an explicit Agent. + * Automatically set Transfer-Encoding when using `send`. + * `into_reader()` now returns `impl Read + Send` instead of `impl Read`. + # 1.4.1 * Use buffer to avoid byte-by-byte parsing result in multiple syscalls. From 264abdf45276a0753729e4ff67ad03886f865626 Mon Sep 17 00:00:00 2001 From: Jacob Hoffman-Andrews Date: Sun, 27 Sep 2020 11:36:55 -0700 Subject: [PATCH 2/2] Add PRs to changelog. --- CHANGELOG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3a061b..c71949a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ # 1.5.0 * Add pluggable name resolution. Users can now override the IP addresses for - hostnames of their choice. + hostnames of their choice (#148). * bugfix: Don't re-pool streams on drop. This would occur if the user called `response.into_reader()` and dropped the resulting `Read` before reading all the way to EOF. The result would be a BadStatus error on the next request to - the same hostname. This only affected users using an explicit Agent. - * Automatically set Transfer-Encoding when using `send`. - * `into_reader()` now returns `impl Read + Send` instead of `impl Read`. + the same hostname. This only affected users using an explicit Agent (#160). + * Automatically set Transfer-Encoding: chunked when using `send` (#86). + * `into_reader()` now returns `impl Read + Send` instead of `impl Read` (#156). # 1.4.1