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 2010/05/10 21:42:02 UTC

svn commit: r942869 - in /httpcomponents/httpclient/trunk: RELEASE_NOTES.txt src/site/apt/download.apt src/site/apt/index.apt

Author: olegk
Date: Mon May 10 19:42:01 2010
New Revision: 942869

URL: http://svn.apache.org/viewvc?rev=942869&view=rev
Log:
HttpClient 4.1-alpha2 release notes and web site updates

Modified:
    httpcomponents/httpclient/trunk/RELEASE_NOTES.txt
    httpcomponents/httpclient/trunk/src/site/apt/download.apt
    httpcomponents/httpclient/trunk/src/site/apt/index.apt

Modified: httpcomponents/httpclient/trunk/RELEASE_NOTES.txt
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/RELEASE_NOTES.txt?rev=942869&r1=942868&r2=942869&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/RELEASE_NOTES.txt (original)
+++ httpcomponents/httpclient/trunk/RELEASE_NOTES.txt Mon May 10 19:42:01 2010
@@ -1,5 +1,27 @@
 Release 4.1 ALPHA2
 -------------------
+
+HttpClient 4.1 ALPHA2 fixes a number of non-severe bugs discovered since 
+the last release and introduces support for two frequently requested features:
+
+* a mechanism to bypass the standard certificate trust verification 
+(useful when dealing with self-signed certificates)
+
+* HTTP/1.1 response caching.
+
+Compatibility notes
+-------------------
+(1) Please note the HTTP caching module is still considered experimental and 
+its API may change significantly in the future releases.
+
+(2) This release eliminates Mime4J as a dependency for the HttpMime module. 
+HttpMime is no longer binary compatible with the previous releases. 
+Full API and binary compatibility between minor versions of HttpMime will be
+maintained as of 4.1 GA release.
+
+Changelog
+-------------------
+
 * [HTTPCLIENT-427] HTTP caching support
   Contributed by Joe Campbell, David Cleaver, David Mays, Jon Moore, Brad Spenla
 

Modified: httpcomponents/httpclient/trunk/src/site/apt/download.apt
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/src/site/apt/download.apt?rev=942869&r1=942868&r2=942869&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/src/site/apt/download.apt (original)
+++ httpcomponents/httpclient/trunk/src/site/apt/download.apt Mon May 10 19:42:01 2010
@@ -64,18 +64,18 @@ HttpClient Downloads
   </dependency>
 -------------------------
 
-* {HttpComponents Client 4.1-alpha1 (development branch)}
+* {HttpComponents Client 4.1-alpha2 (development branch)}
 
 -------------------------
   <dependency>
     <groupId>org.apache.httpcomponents</groupId>
     <artifactId>httpclient</artifactId>
-    <version>4.1-alpha1</version>
+    <version>4.1-alpha2</version>
     <scope>compile</scope>
   </dependency>
 -------------------------
 
-* {HttpComponents HttpMime 4.1-alpha1 (development branch)}
+* {HttpComponents HttpMime 4.1-alpha2 (development branch)}
 
 -------------------------
   <dependency>
@@ -85,3 +85,14 @@ HttpClient Downloads
     <scope>compile</scope>
   </dependency>
 -------------------------
+
+* {HttpComponents HttpClient Cache 4.1-alpha2 (development branch)}
+
+-------------------------
+  <dependency>
+    <groupId>org.apache.httpcomponents</groupId>
+    <artifactId>httpclient-cache</artifactId>
+    <version>4.1-alpha2</version>
+    <scope>compile</scope>
+  </dependency>
+-------------------------

Modified: httpcomponents/httpclient/trunk/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/src/site/apt/index.apt?rev=942869&r1=942868&r2=942869&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/src/site/apt/index.apt (original)
+++ httpcomponents/httpclient/trunk/src/site/apt/index.apt Mon May 10 19:42:01 2010
@@ -66,6 +66,8 @@ HttpClient Overview
 
     * Basic, Digest authentication schemes. Please note NTLM is supported only partially.
 
+    * Experimental support for SPNEGO Kerberos authentication scheme.
+
     * Plug-in mechanism for custom authentication schemes.
 
     * Pluggable secure socket factories, making it easier to use third party solutions
@@ -91,6 +93,8 @@ HttpClient Overview
 
     * The ability to set connection timeouts.
 
+    * Experimental support for HTTP/1.1 response caching.
+
     * Source code is freely available under the Apache License.
 
 {Standards Compliance}