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 2019/01/15 09:16:19 UTC

[httpcomponents-core] branch 4.4.x updated (2331f51 -> 26f1cda)

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

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


    from 2331f51  [HTTPCORE-565] org.apache.http.pool.AbstractConnPool#toString() throws ConcurrentModificationException
     new d3d6e91  Updated release notes for HttpCore 4.4.11 release
     new 26f1cda  Updated NOTICE to 2019

The 2 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:
 NOTICE.txt        |  2 +-
 RELEASE_NOTES.txt | 45 +++++++++++++++++++++++++++++++++++++++++----
 2 files changed, 42 insertions(+), 5 deletions(-)


[httpcomponents-core] 02/02: Updated NOTICE to 2019

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

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

commit 26f1cdaee497727bc92875600198781190755f39
Author: Oleg Kalnichevski <ol...@apache.org>
AuthorDate: Tue Jan 15 09:58:35 2019 +0100

    Updated NOTICE to 2019
---
 NOTICE.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/NOTICE.txt b/NOTICE.txt
index 93f016e..d97045e 100644
--- a/NOTICE.txt
+++ b/NOTICE.txt
@@ -1,5 +1,5 @@
 Apache HttpComponents Core
-Copyright 2005-2018 The Apache Software Foundation
+Copyright 2005-2019 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


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

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

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

commit d3d6e91dab6fc624123729df7f1cfc0906e61193
Author: Oleg Kalnichevski <ol...@apache.org>
AuthorDate: Tue Jan 15 09:57:55 2019 +0100

    Updated release notes for HttpCore 4.4.11 release
---
 RELEASE_NOTES.txt | 45 +++++++++++++++++++++++++++++++++++++++++----
 1 file changed, 41 insertions(+), 4 deletions(-)

diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index c440b4f..0445472 100644
--- a/RELEASE_NOTES.txt
+++ b/RELEASE_NOTES.txt
@@ -1,26 +1,63 @@
 Release 4.4.11
 -------------------
 
-This is a maintenance release.
+This is a maintenance release that corrects a number of defects in non-blocking SSL session code
+that caused compatibility issues with TLSv1.3 protocol implementation shipped with Java 11.
+
 
 Changelog
 -------------------
 
-* Refactor duplicate messages into a new 0-arg constructor for org.apache.http.ConnectionClosedException.
+* HTTPCORE-564: fixed deadlock in IOSessionImpl caused by concurrent session closure and i/o reactor
+  shutdown.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Bug fix: asynchronous HTTP connections must not suspend output if there is buffered output data.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Bug fix: SSL I/O session to keep input interest if there is buffered application data.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Bug fix: keep SSL i/o session in 'CLOSING' state as long as there is buffered application data.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Bug fix: corrected abnormal termination of pipelined request sequence.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Bug fix: non-blocking SSL session incorrectly stops decrypting incoming data if unwrap operation
+  results in NOT_HANDSHAKING status (back-ported from master).
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Bug fix: corrected handling of NEED_WRAP handshake status during graceful SSL session termination
+  (back-ported from master).
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Bug fix: corrected handling of graceful SSL session termination initiated by the opposite endpoint
+  (back-ported from master).
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Refactor duplicate messages into a new 0-arg constructor for
+  org.apache.http.ConnectionClosedException.
   Contributed by Gary Gregory <ggregory at apache.org>
 
 * Fix typos in exception messages.
   Contributed by Gary Gregory <ggregory at apache.org>
   
-* HTTPCORE-550: When a ParseException is caught and rethrown as an IOException in org.apache.http.impl.nio.codecs.ChunkDecoder.processFooters(), the IOException does not chain the original ParseException.
+* HTTPCORE-550: When a ParseException is caught and rethrown as an IOException in
+  org.apache.http.impl.nio.codecs.ChunkDecoder.processFooters(), the IOException does not chain the
+  original ParseException.
   Contributed by Gary Gregory <ggregory at apache.org>
 
-* HTTPCORE-562: The reason phrase returned by org.apache.hc.core5.http.HttpResponse.getReasonPhrase() may be empty.
+* HTTPCORE-562: The reason phrase returned by org.apache.hc.core5.http.HttpResponse.getReasonPhrase()
+  may be empty.
   Contributed by Gary Gregory <ggregory at apache.org>
 
 * Keep the entries in org.apache.hc.core5.http.protocol.UriPatternMatcher#map in insertion order.
   Contributed by Gary Gregory <ggregory at apache.org>
 
+* Corrected Automatic-Module-Name entries for HttpCore NIO and HttpCore AB
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
 
 Release 4.4.10
 -------------------