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 2015/01/11 17:00:28 UTC

svn commit: r1650909 - in /httpcomponents/httpclient-android/branches/4.3.5-android: BUILDING.txt README.txt RELEASE_NOTES.txt

Author: olegk
Date: Sun Jan 11 16:00:28 2015
New Revision: 1650909

URL: http://svn.apache.org/r1650909
Log:
Updated README, BUILDING and release notes for HttpClient Android port 4.3.5.1 release

Modified:
    httpcomponents/httpclient-android/branches/4.3.5-android/BUILDING.txt
    httpcomponents/httpclient-android/branches/4.3.5-android/README.txt
    httpcomponents/httpclient-android/branches/4.3.5-android/RELEASE_NOTES.txt

Modified: httpcomponents/httpclient-android/branches/4.3.5-android/BUILDING.txt
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient-android/branches/4.3.5-android/BUILDING.txt?rev=1650909&r1=1650908&r2=1650909&view=diff
==============================================================================
--- httpcomponents/httpclient-android/branches/4.3.5-android/BUILDING.txt (original)
+++ httpcomponents/httpclient-android/branches/4.3.5-android/BUILDING.txt Sun Jan 11 16:00:28 2015
@@ -8,7 +8,7 @@ to compile HttpClient for Android. Andro
 or bundled with Android Studio.   
 
 HttpClient for Android utilizes Gradle as a building and packaging tool.
-Version 1.10 or later is recommended.
+Version 2.2.1 or later is recommended.
 
 Gradle installation and configuration instructions can be found here:
 
@@ -37,7 +37,3 @@ build/libs/httpclient-android-<VERSION>.
 build/libs/httpclient-android-<VERSION>-javadoc.jar
 build/libs/httpclient-android-<VERSION>-sources.jar
 
-(3) Troubleshooting
-
-Building version 4.3.3 with Gradle 1.11 fails. Please use Gradle 1.10.
-

Modified: httpcomponents/httpclient-android/branches/4.3.5-android/README.txt
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient-android/branches/4.3.5-android/README.txt?rev=1650909&r1=1650908&r2=1650909&view=diff
==============================================================================
--- httpcomponents/httpclient-android/branches/4.3.5-android/README.txt (original)
+++ httpcomponents/httpclient-android/branches/4.3.5-android/README.txt Sun Jan 11 16:00:28 2015
@@ -29,7 +29,7 @@ Differences with the stock version of Ap
 
 (3) Base64 implementation from Commons Codec replaced with Android Base64.
 
-(4) Android SSLCertificateSocketFactory used by default for SSL/TLS connections.
+(4) Android default SSLSocketFactory used by for SSL/TLS connections.
 
 
 Compatibility notes 

Modified: httpcomponents/httpclient-android/branches/4.3.5-android/RELEASE_NOTES.txt
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient-android/branches/4.3.5-android/RELEASE_NOTES.txt?rev=1650909&r1=1650908&r2=1650909&view=diff
==============================================================================
--- httpcomponents/httpclient-android/branches/4.3.5-android/RELEASE_NOTES.txt (original)
+++ httpcomponents/httpclient-android/branches/4.3.5-android/RELEASE_NOTES.txt Sun Jan 11 16:00:28 2015
@@ -1,6 +1,22 @@
-Changes since 4.3.5
+Release 4.3.5.1
 -------------------
 
+This release fixes a number of issues related to Android specific modifications made to
+the original HttpClient 4.3.5 code used as a base for the Android port.
+
+Please note that as of this release HttpClient disables all versions of SSL (including SSLv3)
+in favor of the TLS protocol by default. Those users who wish to continue using SSLv3 need
+to explicitly enable support for it.
+
+Users of all versions of Apache HttpClient 4.3 port for Android are advised to upgrade.
+
+
+Changelog
+-------------------
+
+* SSLv3 protocol is disabled by default
+  Contributed by Oleg Kalnichevski <olegk at apache.org>
+
 * [HTTPCLIENT-1597] Hostname verifiers incorrectly reject certificates with empty attributes
   in the certificate subject
   Contributed by Oleg Kalnichevski <olegk at apache.org>