You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Mladen Turk <mt...@apache.org> on 2010/02/10 11:19:21 UTC

[VOTE] Release Apache Tomcat Native 1.1.20

Hi,

Native 1.1.20 is available for testing.
Compared with 1.1.19 and earlier versions it has a bug fix that
prevents crashing JVM on shutdown.

If you want to take a look, the final source distribution can be
downloaded from:
http://tomcat.apache.org/dev/dist/tomcat-connectors/native/source/1.1.20
(Will be visible after the server sync is done)

Win32/Win64 binaries are available at:
http://tomcat.apache.org/dev/dist/tomcat-connectors/native/binaries/

So here's the vote.
It will be closed in about 72 hours
(or sooner if enough votes are encountered)


Apache Tomcat Native 1.1.20 is:

[ ] Stable - no major issues, no regressions
[ ] Beta   - at least one significant issue -- tell us what it is
[ ] Alpha  - multiple significant issues -- tell us what they are



Regards
-- 
^TM

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE] Release Apache Tomcat Native 1.1.20

Posted by Mladen Turk <mt...@apache.org>.
On 02/26/2010 06:39 PM, William A. Rowe Jr. wrote:
> On 2/10/2010 4:19 AM, Mladen Turk wrote:
>>
>> Apache Tomcat Native 1.1.20 is:
>>
>> [ ] Stable - no major issues, no regressions
>> [ ] Beta   - at least one significant issue -- tell us what it is
>> [ ] Alpha  - multiple significant issues -- tell us what they are
>
> How well is it interacting with OpenSSL 0.9.8m?  It would seem like the
> time to catch up with those API changes, before announcing a new version
> of the native connector.
>

Didn't try, but the plan is to backport Joe's patches
and add SSLInsecureRenegotiation config directive.

During that I'll check the 0.9.8m.
Should be done and tested in about two weeks, so
we can consider cutting 1.1.21 afterwards.


Regards
-- 
^TM

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE] Release Apache Tomcat Native 1.1.20

Posted by "William A. Rowe Jr." <wr...@rowe-clan.net>.
On 2/10/2010 4:19 AM, Mladen Turk wrote:
> 
> Apache Tomcat Native 1.1.20 is:
> 
> [ ] Stable - no major issues, no regressions
> [ ] Beta   - at least one significant issue -- tell us what it is
> [ ] Alpha  - multiple significant issues -- tell us what they are

How well is it interacting with OpenSSL 0.9.8m?  It would seem like the
time to catch up with those API changes, before announcing a new version
of the native connector.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE] Release Apache Tomcat Native 1.1.20

Posted by sebb <se...@gmail.com>.
On 17/02/2010, Mladen Turk <mt...@apache.org> wrote:
> On 02/17/2010 05:12 AM, Konstantin Kolinko wrote:
>
> > 2010/2/10 Mladen Turk<mt...@apache.org>:
> >
> > > Apache Tomcat Native 1.1.20 is:
> > >
> > > [x] Stable - no major issues, no regressions
> > >
> >
> > Tested win32 binaries only.
> >
> >
> > Minor: *.md5 and *.sha1 files should have " *" between checksum and
> > filename, because those files are binary.  md5sum/sha1sum that I am
> > using were saying that the checksums are wrong without that change.
> >
> >
>
>  OK. I'll use the `md5sum --binary ...` in the future
>  You can do the same however when checking

BTW, it's pretty easy to use Ant to create the hashes.
For example:

    <target name="_hash" unless="hash.skip">
        <echo message="Creating MD5 for ${path}"/>
        <basename property="_base" file="${path}"/>
        <checksum algorithm="MD5" file="${path}" property="md5"/>
        <echo message="${md5} *${_base}" file="${path}.md5"/>
        <echo message="Creating SHA for ${path}"/>
        <checksum algorithm="SHA" file="${path}" property="sha"/>
        <echo message="${sha} *${_base}" file="${path}.sha"/>
    </target>


>  Regards
>  --
>  ^TM
>
>
> ---------------------------------------------------------------------
>  To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
>  For additional commands, e-mail: dev-help@tomcat.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE] Release Apache Tomcat Native 1.1.20

Posted by Mladen Turk <mt...@apache.org>.
On 02/17/2010 05:12 AM, Konstantin Kolinko wrote:
> 2010/2/10 Mladen Turk<mt...@apache.org>:
>> Apache Tomcat Native 1.1.20 is:
>>
>> [x] Stable - no major issues, no regressions
>
> Tested win32 binaries only.
>
>
> Minor: *.md5 and *.sha1 files should have " *" between checksum and
> filename, because those files are binary.  md5sum/sha1sum that I am
> using were saying that the checksums are wrong without that change.
>

OK. I'll use the `md5sum --binary ...` in the future
You can do the same however when checking

Regards
-- 
^TM

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE] Release Apache Tomcat Native 1.1.20

Posted by Konstantin Kolinko <kn...@gmail.com>.
2010/2/10 Mladen Turk <mt...@apache.org>:
> Apache Tomcat Native 1.1.20 is:
>
> [x] Stable - no major issues, no regressions

Tested win32 binaries only.


Minor: *.md5 and *.sha1 files should have " *" between checksum and
filename, because those files are binary.  md5sum/sha1sum that I am
using were saying that the checksums are wrong without that change.

Best regards,
Konstantin Kolinko

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE] Release Apache Tomcat Native 1.1.20

Posted by jean-frederic clere <jf...@gmail.com>.
On 02/10/2010 11:19 AM, Mladen Turk wrote:
> Hi,
> 
> Native 1.1.20 is available for testing.
> Compared with 1.1.19 and earlier versions it has a bug fix that
> prevents crashing JVM on shutdown.
> 
> If you want to take a look, the final source distribution can be
> downloaded from:
> http://tomcat.apache.org/dev/dist/tomcat-connectors/native/source/1.1.20
> (Will be visible after the server sync is done)
> 
> Win32/Win64 binaries are available at:
> http://tomcat.apache.org/dev/dist/tomcat-connectors/native/binaries/
> 
> So here's the vote.
> It will be closed in about 72 hours
> (or sooner if enough votes are encountered)
> 
> 
> Apache Tomcat Native 1.1.20 is:
> 
> [X] Stable - no major issues, no regressions

Builds/Tests on all plaforms I am able to test.

Cheers

Jean-Frederic

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org