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/07 07:58:36 UTC

[httpcomponents-core] branch master updated (46aaf9255 -> 1a9c8e180)

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 46aaf9255 Typo
 discard d9a10fc2d Updated release notes for HttpCore 5.2.1 release
     new 1a9c8e180 Updated release notes for HttpCore 5.2.1 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   (46aaf9255)
            \
             N -- N -- N   refs/heads/master (1a9c8e180)

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.2.1 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 1a9c8e180f4e5f4384f034af48522c8acee85615
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..8560411b8 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>