Return-Path: X-Original-To: apmail-hc-commits-archive@www.apache.org Delivered-To: apmail-hc-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CE14317DBA for ; Sat, 18 Oct 2014 11:39:32 +0000 (UTC) Received: (qmail 26744 invoked by uid 500); 18 Oct 2014 11:39:32 -0000 Delivered-To: apmail-hc-commits-archive@hc.apache.org Received: (qmail 26700 invoked by uid 500); 18 Oct 2014 11:39:32 -0000 Mailing-List: contact commits-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list commits@hc.apache.org Received: (qmail 26691 invoked by uid 99); 18 Oct 2014 11:39:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Oct 2014 11:39:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Oct 2014 11:39:10 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 4DCBF238888F for ; Sat, 18 Oct 2014 11:39:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1632768 - /httpcomponents/httpcore/branches/4.3.x/RELEASE_NOTES.txt Date: Sat, 18 Oct 2014 11:39:09 -0000 To: commits@hc.apache.org From: olegk@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20141018113909.4DCBF238888F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: olegk Date: Sat Oct 18 11:39:08 2014 New Revision: 1632768 URL: http://svn.apache.org/r1632768 Log: Updated release notes for HttpCore 4.3.3 release Modified: httpcomponents/httpcore/branches/4.3.x/RELEASE_NOTES.txt Modified: httpcomponents/httpcore/branches/4.3.x/RELEASE_NOTES.txt URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/branches/4.3.x/RELEASE_NOTES.txt?rev=1632768&r1=1632767&r2=1632768&view=diff ============================================================================== --- httpcomponents/httpcore/branches/4.3.x/RELEASE_NOTES.txt (original) +++ httpcomponents/httpcore/branches/4.3.x/RELEASE_NOTES.txt Sat Oct 18 11:39:08 2014 @@ -1,10 +1,24 @@ -Changes since Release 4.3.2 +Release 4.3.3 ------------------- +This maintenance release fixes several bugs found since 4.3.2, mostly in the NIO transport +components. All users of HttpCore 4.3 are advised to upgrade. + +Changelog +------------------- + +* Make a connection exception throw a ConnectException instead of a SocketTimeoutException + to allow a FutureCallback handler to correctly distinguish between the two events. + Contributed by Asankha Perera + * [HTTPASYNC-77] system resources are not correctly deallocated if I/O reactor is shut down while still inactive (not started) Contributed by Oleg Kalnichevski +* [HTTPCORE-379] shut down non-blocking server side connection in case of an i/o or runtime error + to avoid an infinite loop in the i/o reactor trying to flush buffered output + Contributed by Dmitry Potapov + * [HTTPCORE-376] AbstractNIOConnPool#requestCancelled() should not process pending requests wnen being shut down. Contributed by Dmitry Potapov