Author: issac
Date: Thu Jan 8 14:57:08 2009
New Revision: 732862
URL: http://svn.apache.org/viewvc?rev=732862&view=rev
Log:
Started libapreq-1.35 dev cycle
Modified:
httpd/apreq/branches/1.x/Changes
httpd/apreq/branches/1.x/RELEASE
httpd/apreq/branches/1.x/Request/Request.pm
httpd/apreq/branches/1.x/STATUS
Modified: httpd/apreq/branches/1.x/Changes
URL:
http://svn.apache.org/viewvc/httpd/apreq/branches/1.x/Changes?rev=732862&r1=732861&r2=732862&view=diff
==============================================================================
--- httpd/apreq/branches/1.x/Changes (original)
+++ httpd/apreq/branches/1.x/Changes Thu Jan 8 14:57:08 2009
@@ -2,7 +2,12 @@
=over 4
-=item 1.34
+=item 1.35-dev
+
+=item 1.34 - January 7, 2009
+
+Remove quadratic memory allocation during multipart_buffer reads
+[joes]
have fill_buffer() completely fill the multipart_buffer. This
bug is tickled by the FireFox 2.0 when doing ssl uploads:
Modified: httpd/apreq/branches/1.x/RELEASE
URL:
http://svn.apache.org/viewvc/httpd/apreq/branches/1.x/RELEASE?rev=732862&r1=732861&r2=732862&view=diff
==============================================================================
--- httpd/apreq/branches/1.x/RELEASE (original)
+++ httpd/apreq/branches/1.x/RELEASE Thu Jan 8 14:57:08 2009
@@ -33,50 +33,50 @@
5. The candidate is ok. Now return to the original source tree
and edit ./Changes:
- =item 1.34 - <Today's Date>
+ =item 1.35 - <Today's Date>
- libapreq-1.34 released.
+ libapreq-1.35 released.
6. Tag the tree, s/./_/g in the version number, and roll the release.
- % svn copy . https://svn.apache.org/repos/asf/httpd/apreq/tags/v1_34
+ % svn copy . https://svn.apache.org/repos/asf/httpd/apreq/tags/v1_35
% make dist
7. Test the release package, repeating step 2. If all tests pass,
sign it via gpg:
- % gpg --detach-sign --armor libapreq-1.34.tar.gz
+ % gpg --detach-sign --armor libapreq-1.35.tar.gz
or pgp:
- unix50i1b: % pgps -b --armor libapreq-1.34.tar.gz
- other: % pgp -sba libapreq-1.34.tar.gz
+ unix50i1b: % pgps -b --armor libapreq-1.35.tar.gz
+ other: % pgp -sba libapreq-1.35.tar.gz
8. Upload (scp) the package and signature to www.apache.org
for distribution:
- % scp libapreq-1.34.tar.gz* \
+ % scp libapreq-1.35.tar.gz* \
<username>@www.apache.org:/www/www.apache.org/dist/httpd/libapreq/
Ask another developer to confirm the uploaded signature is ok
---------------------------------------------------
- Subject: please verify sig of libapreq-1.34.tar.gz
+ Subject: please verify sig of libapreq-1.35.tar.gz
[Name], could you please verify the sig:
- http://www.apache.org/dist/httpd/libapreq/libapreq-1.34.tar.gz
- http://www.apache.org/dist/httpd/libapreq/libapreq-1.34.tar.gz.asc
+ http://www.apache.org/dist/httpd/libapreq/libapreq-1.35.tar.gz
+ http://www.apache.org/dist/httpd/libapreq/libapreq-1.35.tar.gz.asc
Thanks.
via gpg:
- % gpg --verify libapreq-1.34.tar.gz.asc
+ % gpg --verify libapreq-1.35.tar.gz.asc
or pgp:
- unix50i1b: % pgpv libapreq-1.34.tar.gz.asc
- other: % pgp libapreq-1.34.tar.gz.asc
+ unix50i1b: % pgpv libapreq-1.35.tar.gz.asc
+ other: % pgp libapreq-1.35.tar.gz.asc
Check that your public key is among those listed in the
/www/www.apache.org/dist/httpd/KEYS file.
@@ -91,7 +91,7 @@
11. Post a final announcement to the modperl@ and apreq-dev@ lists:
- Subject: [ANNOUNCE] libapreq 1.34 release
+ Subject: [ANNOUNCE] libapreq 1.35 release
Include the md5 signature in the announcement, as well as
a list of the latest Changes (since the previous release).
@@ -103,20 +103,20 @@
b. edit ./Changes:
- start a new item with incremented version + '-dev'
- =item 1.35-dev
+ =item 1.36-dev
c. add a release entry in STATUS
d. update this file versions to make it easy to copy-n-paste things
on the next release:
- perl -pi -e 's/\.35/\.35/g' RELEASE
- perl -pi -e 's/_34/_35/g' RELEASE
- perl -pi -e 's/\.34/\.35/g' RELEASE
+ perl -pi -e 's/\.36/\.37/g' RELEASE
+ perl -pi -e 's/_35/_36/g' RELEASE
+ perl -pi -e 's/\.35/\.36/g' RELEASE
now reload this file and bump up the last number of the first
two commands.
e. commit the changed files
- % svn ci Changes Request/Request.pm STATUS RELEASE
\ No newline at end of file
+ % svn ci Changes Request/Request.pm STATUS RELEASE
Modified: httpd/apreq/branches/1.x/Request/Request.pm
URL:
http://svn.apache.org/viewvc/httpd/apreq/branches/1.x/Request/Request.pm?rev=732862&r1=732861&r2=732862&view=diff
==============================================================================
--- httpd/apreq/branches/1.x/Request/Request.pm (original)
+++ httpd/apreq/branches/1.x/Request/Request.pm Thu Jan 8 14:57:08 2009
@@ -22,7 +22,7 @@
{
no strict;
- $VERSION = '1.34';
+ $VERSION = '1.35';
@ISA = qw(Apache);
__PACKAGE__->mod_perl::boot($VERSION);
}
Modified: httpd/apreq/branches/1.x/STATUS
URL:
http://svn.apache.org/viewvc/httpd/apreq/branches/1.x/STATUS?rev=732862&r1=732861&r2=732862&view=diff
==============================================================================
--- httpd/apreq/branches/1.x/STATUS (original)
+++ httpd/apreq/branches/1.x/STATUS Thu Jan 8 14:57:08 2009
@@ -3,7 +3,8 @@
Release:
--------
-
+
+ 1.34 : Released January 7, 2009
1.33 : Released December 15, 2004
1.32 : Not released
1.31 : Not released