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/02/01 11:19:57 UTC

[httpcomponents-core] branch master updated (43eaa22 -> af58166)

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 43eaa22  Update RELEASE_NOTES.txt
 discard 93e1361  Updated release notes for HttpCore 5.1-beta3 release
     new af58166  Updated release notes for HttpCore 5.1-beta3 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   (43eaa22)
            \
             N -- N -- N   refs/heads/master (af58166)

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-beta3 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 af58166c34958ae34798ca47c11b640867216c74
Author: Oleg Kalnichevski <ol...@apache.org>
AuthorDate: Sun Jan 31 16:58:09 2021 +0100

    Updated release notes for HttpCore 5.1-beta3 release
---
 RELEASE_NOTES.txt | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)

diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index 91558f2..b95ed76 100644
--- a/RELEASE_NOTES.txt
+++ b/RELEASE_NOTES.txt
@@ -1,3 +1,63 @@
+Release 5.1 BETA3
+------------------
+
+This is likely the last BETA release in the 5.1 release series. The next release is
+expected to be 5.1 GA. This beta includes a number of new features as well as
+bug fixes from the stable 5.0.x branch.
+
+Notable changes and features included in the 5.1 series:
+
+* Conditional conformance with RFC 3986 (Uniform Resource Identifier (URI): Generic Syntax).
+
+* Improved support for out of sequence response message handing by the the classic (blocking)
+  HTTP transport.
+
+
+Change Log
+-------------------
+
+* RFC 3986 conformance: Added `#normalizeSyntax` method to URIBuilder.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* HTTPCORE-663: Added http status code 425.
+  Contributed by Arturo Bernal <arturobernalg at gmail.com>
+
+* HTTPCORE-661: Added http status code 426.
+  Contributed by Arturo Bernal <arturobernalg at gmail.com>
+
+* HTTPCORE-659: Fixed race condition in IOSessionImpl when setting event.
+  Contributed by Nicolas Capponi <nicolas.capponi at forgerock.com>
+
+* HTTPCORE-658: Removed explicit inbound / outbound socket shutdown from
+  the `#close` method of classic HTTP connections.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* HTTPCORE-657: Added TrafficClass to IOReactorConfig (#243).
+  Contributed by Desmond Yeung <dyeung at datto.com>
+
+* Add filters before MAIN_HANDLER so they won't be ignored (#236).
+  Contributed by Rob Spoor <robtimus at users.noreply.github.com>
+
+* Bug fix: Fixed broken result callback in ProtocolNegotiatorBase.
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Fixed NPE and improve code centralization in URIBuilder (#235).
+  Contributed by Lars Helge Ă˜verland <lars at dhis2.org>
+
+* Added `#appendPath` and `#appendPathSegments` methods to URIBuilder (#234).
+  Contributed by Lars Helge Ă˜verland <lars at dhis2.org>
+
+* Removed connection acceptor API changes (moved to 5.2).
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Removed protocol upgrade API changes (moved to 5.2).
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
+* Bug fix: Do not attempt to shut down non-blocking TLS session gracefully
+  in case the TLS handshake has not been fully completed.
+  Contributed by Oleg Kalnichevski <ol...@apache.org>
+
+
 Release 5.1 BETA2
 ------------------