You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2021/09/26 13:40:44 UTC

[httpcomponents-core] branch 5.1.x updated (b525466 -> 9c116d7)

This is an automated email from the ASF dual-hosted git repository.

olegk pushed a change to branch 5.1.x
in repository https://gitbox.apache.org/repos/asf/httpcomponents-core.git.


 discard b525466  Updated release notes for HttpCore 5.1.2 release
     new 9c116d7  Updated release notes for HttpCore 5.1.2 release

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b525466)
            \
             N -- N -- N   refs/heads/5.1.x (9c116d7)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASE_NOTES.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

[httpcomponents-core] 01/01: Updated release notes for HttpCore 5.1.2 release

Posted by ol...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

olegk pushed a commit to branch 5.1.x
in repository https://gitbox.apache.org/repos/asf/httpcomponents-core.git

commit 9c116d7713b19ed07aa5af3fc7b75f0e5b5e9699
Author: Oleg Kalnichevski <ol...@apache.org>
AuthorDate: Sun Sep 26 13:02:10 2021 +0200

    Updated release notes for HttpCore 5.1.2 release
---
 RELEASE_NOTES.txt | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index b90c9e0..bf8851b 100644
--- a/RELEASE_NOTES.txt
+++ b/RELEASE_NOTES.txt
@@ -1,3 +1,34 @@
+Release 5.1.2
+------------------
+
+This is a maintenance release that corrects a number of defects discovered since release 5.1.1
+including defects in handling of identity transfer encoded HTTP/1.1 response messages.
+
+Change Log
+-------------------
+
+* HTTPCLIENT-2174: URIBuilder to return a new empty list instead of unmodifiable
+  Collections#emptyList.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* HTTPCORE-684: async SSL i/o session fails to propagate end-of-stream events to the protocol
+  handler. This can cause a failure in handling of identity transfer encoded HTTP/1.1 response
+  messages.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Bug fix: async HTTP/1.1 server side protocol handler fails to correctly terminate message
+  exchanges with identity transfer encoded responses.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* HTTPCORE-683: fixed incorrect recovery from hostname resolution failures by the I/O session
+  pool.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Don't change conn flow control window based on remote SETTINGS.
+  Contributed by Ryan Schmitt <ryansch at amazon.com>
+
+
+
 Release 5.1.1
 ------------------
 
@@ -7,6 +38,7 @@ including a major defect that can cause a connection pool resource leak.
 
 Change Log
 -------------------
+
 * HTTPCORE-676: Fixed incorrect handling of TLS renegotiation by non-blocking i/o sessions.
   Contributed by Oleg Kalnichevski <olegk at apache.org>