mbecke      2003/07/01 18:28:50

  Modified:    httpclient build.xml release_notes.txt
               httpclient/src/java/org/apache/commons/httpclient
                        HttpMethodBase.java
               httpclient/xdocs downloads.xml news.xml releases.xml
                        status.xml
  Log:
  updates for 2.0 beta 2 release
  
  Revision  Changes    Path
  1.29      +2 -2      jakarta-commons/httpclient/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/build.xml,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- build.xml 26 May 2003 18:36:53 -0000      1.28
  +++ build.xml 2 Jul 2003 01:28:49 -0000       1.29
  @@ -37,7 +37,7 @@
     <property name="component.title"         value="HttpClient Library"/>
   
     <!-- The current version number of this component -->
  -  <property name="component.version"       value="2.0-beta1"/>
  +  <property name="component.version"       value="2.0-beta2"/>
   
   <!-- ========== Properties: Source Directories ============================ -->
   
  
  
  
  1.9       +33 -5     jakarta-commons/httpclient/release_notes.txt
  
  Index: release_notes.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/release_notes.txt,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- release_notes.txt 20 Jun 2003 01:11:23 -0000      1.8
  +++ release_notes.txt 2 Jul 2003 01:28:49 -0000       1.9
  @@ -1,14 +1,42 @@
  +Release 2.0 Beta 2
  +-------------------
   Changes since Release 2.0 Beta 1:
   
  - * Changed URI to correctly handle path resolution according to 
  + * 20240 - Cookies with null path are no longer rejected in the
  +   browser compatibility mode.
  +
  + * 20481 - Query parameters set via HttpMethodBase.setQueryString(NameValuePair[])
  +   now correctly use 'application/x-www-form-urlencoded' encoding.
  +
  + * 20481 - POST method correctly applies 'application/x-www-form-urlencoded'
  +   encoding.
  +
  + * 20569 - Duplicate connection headers are now handled.
  +
  + * 20646 - Fixed NTLM proxy authentication via SSL. 
  +
  + * 20665 - Changed URI to correctly handle path resolution according to 
      http://www.apache.org/~fielding/uri/rev-2002/issues.html.  In 
      particular dot-segments are removed when not necessary.
   
  - * POST method correctly applies 'application/x-www-form-urlencoded'
  -   encoding
  + * 20938 - Connections are now closed when the request is missing a content 
  +   length and is not chunked.
   
  - * Cookies with null path attribute are no longer rejected in the
  -   browser compatibility mode.
  + * 20942 - Requests with DIGEST authentication are now correctly handled 
  +   when redirected.
  +
  + * 21130 - DEFAULT_MAX_HOST_CONNECTIONS and DEFAULT_MAX_TOTAL_CONNECTIONS are
  +   now public in MultiThreadedHttpConnectionManager.
  +
  + * 21201 - URIs are now correctly rebuilt following a call to URI.normalize().
  +
  + * 21202 - WireLogInputStream.read(byte[]) now logs the correct number of bytes.
  +
  + * Fixed path parsing in RFC2109 cookie spec.
  +
  + * Fixed possible NPE when reading an empty response body.
  +
  + * The various to*Charset() methods of URIUtil have been deprecated.
   
   Release 2.0 Beta 1
   -------------------
  
  
  
  1.159     +5 -5      
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodBase.java
  
  Index: HttpMethodBase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodBase.java,v
  retrieving revision 1.158
  retrieving revision 1.159
  diff -u -r1.158 -r1.159
  --- HttpMethodBase.java       28 Jun 2003 01:38:43 -0000      1.158
  +++ HttpMethodBase.java       2 Jul 2003 01:28:49 -0000       1.159
  @@ -155,7 +155,7 @@
       static {
           String agent = System.getProperties()
                                .getProperty("httpclient.useragent",
  -                                          "Jakarta Commons-HttpClient/2.0beta1");
  +                                          "Jakarta Commons-HttpClient/2.0beta2");
           USER_AGENT = new Header("User-Agent", agent);
       }
   
  
  
  
  1.19      +3 -3      jakarta-commons/httpclient/xdocs/downloads.xml
  
  Index: downloads.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/xdocs/downloads.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- downloads.xml     1 Jun 2003 19:00:22 -0000       1.18
  +++ downloads.xml     2 Jul 2003 01:28:50 -0000       1.19
  @@ -17,7 +17,7 @@
          </p>
          <ul>
            <li><a 
href="http://jakarta.apache.org/builds/jakarta-commons/release/commons-httpclient/v2.0/";>
  -             Release 2.0 Beta 1</a> - 25 May 2003</li>
  +             Release 2.0 Beta 2</a> - 2 June 2003</li>
          </ul>
          <p>
            Nightly source drops can be obtained 
  @@ -41,7 +41,7 @@
            <pre>
   &lt;dependency&gt;
       &lt;id&gt;commons-httpclient&lt;/id&gt;
  -    &lt;version&gt;2.0-beta1&lt;/version&gt;
  +    &lt;version&gt;2.0-beta2&lt;/version&gt;
       &lt;url&gt;http://jakarta.apache.org/commons/httpclient/&lt;/url&gt;
   &lt;/dependency&gt;
            </pre>
  
  
  
  1.20      +9 -1      jakarta-commons/httpclient/xdocs/news.xml
  
  Index: news.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/xdocs/news.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- news.xml  3 Jun 2003 04:21:13 -0000       1.19
  +++ news.xml  2 Jul 2003 01:28:50 -0000       1.20
  @@ -11,6 +11,14 @@
   
     <body>
   
  +    <section name="02 July 2003 - HttpClient 2.0 Beta 2 released">
  +      <p>This release contains some minor bug fixes and documentation enhancements.
  +     Most likely this will be the final beta release before 2.0 Release Candidate 
1.  As 
  +     always thank you to the HttpClient users and developers for their efforts.
  +     Please <a href="downloads.html">download</a> HttpClient 2.0 Beta 2 and
  +     enjoy.</p>
  +    </section>
  +
       <section name="25 May 2003 - HttpClient 2.0 Beta 1 released">
         <p>This is the first feature-complete release of HttpClient 2.0.  A lot of
        effort has been put into making this release functional, stable and 
  
  
  
  1.12      +5 -5      jakarta-commons/httpclient/xdocs/releases.xml
  
  Index: releases.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/xdocs/releases.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- releases.xml      4 Jun 2003 02:52:23 -0000       1.11
  +++ releases.xml      2 Jul 2003 01:28:50 -0000       1.12
  @@ -44,10 +44,10 @@
             release.<br/><br/></li>
   
           <li>Update the project version number in the <code>build.xml</code>, 
  -          <code>project.xml</code>, <code>status.xml</code>, and the HttpMethodBase 
  -          useragent string. There is an Ant property named 
<code>component.version</code> 
  -          that would be updated to <code>2.0</code>.  Check in any files you have
  -          modified.<br/><br/></li>
  +          <code>project.xml</code>, <code>status.xml</code>, 
<code>downloads.xml</code>, 
  +          and the HttpMethodBase useragent string. There is an Ant property named 
  +          <code>component.version</code> that would be updated to <code>2.0</code>. 
 
  +          Check in any files you have modified.<br/><br/></li>
   
           <li>In your local repository (or on cvs.apache.org) tag 
<strong>only</strong> the 
             files in the subdirectory for this package with the package name (in 
caps) 
  
  
  
  1.20      +10 -17    jakarta-commons/httpclient/xdocs/status.xml
  
  Index: status.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/xdocs/status.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- status.xml        23 May 2003 19:54:05 -0000      1.19
  +++ status.xml        2 Jul 2003 01:28:50 -0000       1.20
  @@ -14,28 +14,21 @@
     <body>
   
       <section name="Current Status">          
  -        <p>For all current contributors and anyone wishing to contribute to or use 
  -             <em>HttpClient</em>, we are now in the Beta 2 development stage.</p>
  +        <p>For all current committers and anyone wishing to contribute to or use 
  +        <em>HttpClient</em>, we are now in the final stages of 2.0 development.</p>
   
  -             <p>The focus of Beta 2 development is documentation and minor, 
interface preserving
  -                     bug fixes. Test cases, examples and user contributed code are 
always welcome.</p>
  +     <p>Only bug fixes and documentation enhancements will be made to the 2.0 
  +        code base in the next few weeks.  We hope to have a final 2.0 release 
shortly.</p>
   
  -             <p>Along with development related to Beta 2, much time will be spent 
in the near
  -                     future planning for post 2.0 releases.  Any suggestions, 
requests and/or contributions
  -                     toward 2.1 and 3.0 will be gladly taken via the 
  -                     <a href="mailto:[EMAIL PROTECTED]">developer mailing list</a> 
  -                     or <a 
href="http://nagoya.apache.org/bugzilla/";>bugzilla</a>.</p>
  -
  -        <p>If you are interested in working on any existing bugzilla task, please 
reassign the 
  -             bug to yourself and add the list address to the cc field 
  -             ([EMAIL PROTECTED]). When you have a patch, it can be 
  -             attached directly to the bug.  Any discussion can take place on the 
mailing list.</p>
  +     <p>Now that 2.0 beta 2 has been released initial development for post 2.0 
releases 
  +        can begin.  A CVS branch of the 2.0 code will be made shortly so that 2.1 
development
  +        can begin on the HEAD.</p>
       </section>
   
       <section name="Release Info">
         <p>Current Release: <a 
href="http://jakarta.apache.org/builds/jakarta-commons/release/commons-httpclient/v2.0/";>
  -          Release 2.0 Beta 1</a></p>
  -      <p>Planned Next Release: 2.0 Beta 2</p>
  +          Release 2.0 Beta 2</a></p>
  +      <p>Planned Next Release: 2.0 Release Candidate 1</p>
       </section>
   
     </body>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to