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/10/17 11:02:31 UTC

[httpcomponents-core] 02/02: Updated release notes for HttpCore 5.2-alpha2 release

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 1b9b3053e8f186dd33c1abce9229412aa4cbf5bd
Author: Oleg Kalnichevski <ol...@apache.org>
AuthorDate: Sat Oct 16 16:27:16 2021 +0200

    Updated release notes for HttpCore 5.2-alpha2 release
---
 RELEASE_NOTES.txt | 43 ++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 38 insertions(+), 5 deletions(-)

diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index 2267026..5367873 100644
--- a/RELEASE_NOTES.txt
+++ b/RELEASE_NOTES.txt
@@ -1,13 +1,16 @@
-Release 5.2 ALPHA1
+Release 5.2 ALPHA2
 ------------------
 
-This is the first ALPHA release in the 5.2 release series that upgrades minimal JRE
-level to version 1.8 (8u251 is required) and includes several protocol level and
-API improvements. It also includes all bug fixes from the 5.1 branch.
+This is the second ALPHA release in the 5.2 release series that fixes a regression
+in the TLS layer introduced by the previous ALPHA and adds a number of incremental
+improvements.
+
+Please note that 5.2 upgrades minimal JRE level to version 8 (8u251 is required).
+
 
 Notable changes and features included in the 5.2 series:
 
-* Upgrade to Java 1.8.
+* Upgrade to Java 8.
 
 * Improved support for TLS upgrade and HTTP protocol upgrade (async).
 
@@ -19,6 +22,36 @@ Notable changes and features included in the 5.2 series:
 Change Log
 -------------------
 
+* Add PathEntityProducer, an NIO entity provider (#302).
+  Contributed by Gary Gregory <garydgregory at gmail.com>
+
+* Add SSLContextBuilder NIO Path versions of IO File APIs and re-implement
+  internals with NIO (#301).
+  Contributed by Gary Gregory <garydgregory at gmail.com>
+
+* Allow setting parameters to null arrays and lists to behave like empty (#300).
+  Contributed by Gary Gregory <garydgregory at gmail.com>
+
+* Bug fix, regression: TLS handshake result callback does not get called
+  in case of a timeout.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* HTTPCLIENT-2174: URUBuilder to return a new empty list instead of unmodifiable
+  Collections#emptyList.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+
+Release 5.2 ALPHA1
+------------------
+
+This is the first ALPHA release in the 5.2 release series that upgrades minimal JRE
+level to version 1.8 (8u251 is required) and includes several protocol level and
+API improvements. It also includes all bug fixes from the 5.1 branch.
+
+
+Change Log
+-------------------
+
 * Improved Travis CI build Performance.
   Contributed by Chen Zhang <340355960 at qq.com>