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 2020/11/28 14:45:09 UTC

[httpcomponents-core] branch master updated (2901233 -> f8c5fb6)

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

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


 discard 2901233  Update RELEASE_NOTES.txt
 discard 7c1549b  Updated release notes for HttpCore 5.1-beta2 release
     new f8c5fb6  Updated release notes for HttpCore 5.1-beta2 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   (2901233)
            \
             N -- N -- N   refs/heads/master (f8c5fb6)

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:


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

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

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

commit f8c5fb651dc05177616f3a3138a08187411ac4a7
Author: Oleg Kalnichevski <ol...@apache.org>
AuthorDate: Fri Nov 27 19:40:25 2020 +0100

    Updated release notes for HttpCore 5.1-beta2 release
---
 RELEASE_NOTES.txt | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++----
 1 file changed, 55 insertions(+), 4 deletions(-)

diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index e29a4b9..91558f2 100644
--- a/RELEASE_NOTES.txt
+++ b/RELEASE_NOTES.txt
@@ -1,12 +1,12 @@
-Release 5.2 BETA1
+Release 5.1 BETA2
 ------------------
 
 This is the second BETA release in the 5.1 release series that includes a number of
-new features as well performance optimizations in the classic HTTP transport.
+new features as well as bug fixes from the stable 5.0.x branch.
 
 Notable changes and features included in the 5.1 series:
 
-* ...
+* Application protocol upgrade support for non-blocking HTTP/1.1 connections.
 
 Change Log
 -------------------
@@ -16,11 +16,62 @@ Change Log
   - Use diamonds.
   - Add missing @Override.
   - Make better use of Map APIs.
-  - Remove redundant modifiers. …
+  - Remove redundant modifiers.
   - Use Collections.addAll() API instead of loops.
   - Remote extra semicolons (;).
   Contributed by Gary Gregory <garydgregory at gmail.com>
 
+* Bug fix: Fixed ignoring maxResultLength in toString method of EntityUtils.
+  Contributed by Klaw <Klawrar at gmail.com>
+
+* Bug fix: corrected handling of pushed stream refusal by the HTTP/2 protocol handler.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Improved connection re-use (keep-alive) tracking by the benchmark; disabled H2 push
+  when running the benchmark with HTTP/2.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Improved detection of disconnected endpoints by HttpAsyncRequester.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* HTTPCORE-626: in case of an unsuccessful `expect-continue` handshake do not make any
+  attempts to keep the client connection in a consistent state if the server intends
+  to close it on its end.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Move decision if the i/o session is to be terminated immediately to the protocol
+  handler by default attempt to terminate the i/o session gracefully.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Optimized request termination by the non-blocking HTTP/1.1 protocol handler in case of
+  a premature response or `expect-continue` handshake failure.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* `AbstractAsyncResponseConsumer` to handle gracefully an inconsistent state caused by
+  the caller signalling a response with no entity but subsequently calling methods
+  to consume data.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Revised HTTP protocol negotiation for non-blocking I/O sessions
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Revised TLS session initialization in I/O reactor code
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* HTTPCORE-653: CancelledKeyException triggers I/O reactor shutdown.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Make `ReactiveDataConsumer#failed` a no-op if it has already been marked as complete
+  (#227).
+  Contributed by Colin Weld <c_weld at backblaze.com>
+
+* HTTPCORE-644: non-blocking TLSv1.3 connections can end up in an infinite event spin
+  when closed concurrently by the local and the remote endpoints.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Calculate pendingOutputRequests before calling produceOutput to avoid race condition.
+  Contributed by Colin Weld <c_weld at backblaze.com>
+
 
 Release 5.1 BETA1
 ------------------