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 2023/01/06 12:30:20 UTC

[httpcomponents-core] branch master updated: Updated release notes for HttpCore 5.2.1 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


The following commit(s) were added to refs/heads/master by this push:
     new d9a10fc2d Updated release notes for HttpCore 5.2.1 release
d9a10fc2d is described below

commit d9a10fc2d81f74eab0b2a46f00e0494be350532c
Author: Oleg Kalnichevski <Ol...@abraxas.ch>
AuthorDate: Fri Jan 6 13:27:29 2023 +0100

    Updated release notes for HttpCore 5.2.1 release
---
 RELEASE_NOTES.txt | 23 +++++++++++++++++++----
 1 file changed, 19 insertions(+), 4 deletions(-)

diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index 17ffbf01f..3059faa4b 100644
--- a/RELEASE_NOTES.txt
+++ b/RELEASE_NOTES.txt
@@ -1,20 +1,35 @@
 Release 5.2.1
 ------------------
 
-This is the second GA release in the 5.2 release series.
+This is a maintenance release that corrects several minor defects discovered since release 5.2
+and fixes SOCKS proxy protocol support in the async transport.
 
-Please note that 5.2 upgrades the minimal JRE level to version 8 (8u251 is required).
 
 Change Log
 -------------------
 
-* Add org.apache.hc.core5.http.protocol.HttpCoreContext.toString().
+* HTTPCLIENT-2248: Fixed broken TLS over SOCKS.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* I/O reactor connect process redesign.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* SOCKS protocol handling: delegate resolution of unknown hostnames to the SOCKS proxy.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* I/O reactor to validate remote endpoint address at the last moment immediately before connect.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Bug fix: I/O reactor must handle all runtime exceptions when connecting to remote endpoints.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Added org.apache.hc.core5.http.protocol.HttpCoreContext#toString().
   Contributed by Gary Gregory <ggregory at apache.org>
 
 * Examples should log exceptions instead of swallowing them.
   Contributed by Gary Gregory <ggregory at apache.org>
 
-* Fix HTTPCORE-729: NullPointerException at org.apache.hc.core5.http.impl.nio.ServerHttp1IOEventHandlerFactory.createHandler()
+* HTTPCORE-729: NPE in ServerHttp1IOEventHandlerFactory due to a missing null check
   Contributed by Oleg Kalnichevski <olegk at apache.org>