You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Rémy Maucherat <re...@apache.org> on 2022/03/30 08:21:54 UTC

[VOTE] Release Apache Tomcat 9.0.61

The proposed Apache Tomcat 9.0.61 release is now available for voting.

The notable changes compared to 9.0.60 are:

- Fix a potential thread-safety issue that could cause HTTP/1.1 request
   processing to pause, and potentially timeout, waiting for additional
   data when the full request has been received.

- Fix a regression introduced with 65757 bugfix which better identified
   non request threads but which introduced a similar problem when user
   code was doing sequential operations in a single thread.

- When resolving methods in EL expressions that use beans and/or static
   fields, ensure that any custom type conversion is considered when
   identifying the method to call.

Along with lots of other bug fixes and improvements.

For full details, see the changelog:
https://nightlies.apache.org/tomcat/tomcat-9.0.x/docs/changelog.html

It can be obtained from:
https://dist.apache.org/repos/dist/dev/tomcat/tomcat-9/v9.0.61/
The Maven staging repo is:
https://repository.apache.org/content/repositories/orgapachetomcat-1366
The tag is:
https://github.com/apache/tomcat/tree/9.0.61
6c6432ac1416ed369f892b9ce76e10c7eb10b91c

The proposed 9.0.61 release is:
[ ] Broken - do not release
[ ] Stable - go ahead and release as 9.0.61 (stable)

Rémy

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


Re: [VOTE] Release Apache Tomcat 9.0.61

Posted by Mark Thomas <ma...@apache.org>.
On 30/03/2022 09:21, Rémy Maucherat wrote:

> The proposed 9.0.61 release is:
> [ ] Broken - do not release
> [X] Stable - go ahead and release as 9.0.61 (stable)

tests pass on Linux, Windows and MacOS.

Mark

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


Re: [VOTE] Release Apache Tomcat 9.0.61

Posted by Coty Sutherland <cs...@apache.org>.
On Wed, Mar 30, 2022 at 4:22 AM Rémy Maucherat <re...@apache.org> wrote:

> The proposed Apache Tomcat 9.0.61 release is now available for voting.
>
> The notable changes compared to 9.0.60 are:
>
> - Fix a potential thread-safety issue that could cause HTTP/1.1 request
>    processing to pause, and potentially timeout, waiting for additional
>    data when the full request has been received.
>
> - Fix a regression introduced with 65757 bugfix which better identified
>    non request threads but which introduced a similar problem when user
>    code was doing sequential operations in a single thread.
>
> - When resolving methods in EL expressions that use beans and/or static
>    fields, ensure that any custom type conversion is considered when
>    identifying the method to call.
>
> Along with lots of other bug fixes and improvements.
>
> For full details, see the changelog:
> https://nightlies.apache.org/tomcat/tomcat-9.0.x/docs/changelog.html
>
> It can be obtained from:
> https://dist.apache.org/repos/dist/dev/tomcat/tomcat-9/v9.0.61/
> The Maven staging repo is:
> https://repository.apache.org/content/repositories/orgapachetomcat-1366
> The tag is:
> https://github.com/apache/tomcat/tree/9.0.61
> 6c6432ac1416ed369f892b9ce76e10c7eb10b91c
>
> The proposed 9.0.61 release is:
> [ ] Broken - do not release
> [x] Stable - go ahead and release as 9.0.61 (stable)
>

+1


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

Re: [VOTE] Release Apache Tomcat 9.0.61

Posted by jean-frederic clere <jf...@gmail.com>.
On 30/03/2022 10:21, Rémy Maucherat wrote:
> [X] Stable - go ahead and release as 9.0.61 (stable)

Tested with tc-native-1.2.32 on fedora35
[jfclere@ovpn-113-163 tomcat-native-tests]$ java --version
+++
openjdk 11.0.14.1 2022-02-08
OpenJDK Runtime Environment 18.9 (build 11.0.14.1+1)
OpenJDK 64-Bit Server VM 18.9 (build 11.0.14.1+1, mixed mode, sharing)
+++
-- 
Cheers

Jean-Frederic


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


Re: [VOTE] Release Apache Tomcat 9.0.61

Posted by Rémy Maucherat <re...@apache.org>.
On Thu, Mar 31, 2022 at 4:58 PM <jo...@wellsfargo.com.invalid> wrote:
>
> Rémy,
>
> Will the Spring Framework Zero Day result in moving to release 9.0.62, surpassing 9.0.61 currently in vote?

Same as for 10.1, the most likely is that the 9.0.61 is cancelled.

Rémy

> Thanks,
>
> Dream * Excel * Explore * Inspire
> Jon McAlexander
> Infrastructure Engineer
> Asst Vice President
> He/His
>
> Middleware Product Engineering
> Enterprise CIO | EAS | Middleware | Infrastructure Solutions
>
> 8080 Cobblestone Rd | Urbandale, IA 50322
> MAC: F4469-010
> Tel 515-988-2508 | Cell 515-988-2508
>
> jonmcalexander@wellsfargo.com
> This message may contain confidential and/or privileged information. If you are not the addressee or authorized to receive this for the addressee, you must not use, copy, disclose, or take any action based on this message or any information herein. If you have received this message in error, please advise the sender immediately by reply e-mail and delete this message. Thank you for your cooperation.
>
>
> > -----Original Message-----
> > From: Rémy Maucherat <re...@apache.org>
> > Sent: Wednesday, March 30, 2022 3:22 AM
> > To: Tomcat Developers List <de...@tomcat.apache.org>
> > Subject: [VOTE] Release Apache Tomcat 9.0.61
> >
> > The proposed Apache Tomcat 9.0.61 release is now available for voting.
> >
> > The notable changes compared to 9.0.60 are:
> >
> > - Fix a potential thread-safety issue that could cause HTTP/1.1 request
> >    processing to pause, and potentially timeout, waiting for additional
> >    data when the full request has been received.
> >
> > - Fix a regression introduced with 65757 bugfix which better identified
> >    non request threads but which introduced a similar problem when user
> >    code was doing sequential operations in a single thread.
> >
> > - When resolving methods in EL expressions that use beans and/or static
> >    fields, ensure that any custom type conversion is considered when
> >    identifying the method to call.
> >
> > Along with lots of other bug fixes and improvements.
> >
> > For full details, see the changelog:
> > https://urldefense.com/v3/__https://nightlies.apache.org/tomcat/tomcat-
> > 9.0.x/docs/changelog.html__;!!F9svGWnIaVPGSwU!7XK-DbVirPj3r-
> > F7wfi6sKyGhYbedykficURS6hxf41RBWPgm_J3aM8LgZ-NVP4f6n0DAak$
> >
> > It can be obtained from:
> > https://urldefense.com/v3/__https://dist.apache.org/repos/dist/dev/tomc
> > at/tomcat-9/v9.0.61/__;!!F9svGWnIaVPGSwU!7XK-DbVirPj3r-
> > F7wfi6sKyGhYbedykficURS6hxf41RBWPgm_J3aM8LgZ-NVP4fLrXOhN4$
> > The Maven staging repo is:
> > https://urldefense.com/v3/__https://repository.apache.org/content/reposi
> > tories/orgapachetomcat-1366__;!!F9svGWnIaVPGSwU!7XK-DbVirPj3r-
> > F7wfi6sKyGhYbedykficURS6hxf41RBWPgm_J3aM8LgZ-NVP4fYUTTyiA$
> > The tag is:
> > https://urldefense.com/v3/__https://github.com/apache/tomcat/tree/9.0.6
> > 1__;!!F9svGWnIaVPGSwU!7XK-DbVirPj3r-
> > F7wfi6sKyGhYbedykficURS6hxf41RBWPgm_J3aM8LgZ-NVP4fVDyFgoI$
> > 6c6432ac1416ed369f892b9ce76e10c7eb10b91c
> >
> > The proposed 9.0.61 release is:
> > [ ] Broken - do not release
> > [ ] Stable - go ahead and release as 9.0.61 (stable)
> >
> > Rémy
> >
> > ---------------------------------------------------------------------
> > 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 9.0.61

Posted by jo...@wellsfargo.com.INVALID.
Rémy,

Will the Spring Framework Zero Day result in moving to release 9.0.62, surpassing 9.0.61 currently in vote?

Thanks,

Dream * Excel * Explore * Inspire
Jon McAlexander
Infrastructure Engineer
Asst Vice President
He/His

Middleware Product Engineering
Enterprise CIO | EAS | Middleware | Infrastructure Solutions

8080 Cobblestone Rd | Urbandale, IA 50322
MAC: F4469-010
Tel 515-988-2508 | Cell 515-988-2508

jonmcalexander@wellsfargo.com
This message may contain confidential and/or privileged information. If you are not the addressee or authorized to receive this for the addressee, you must not use, copy, disclose, or take any action based on this message or any information herein. If you have received this message in error, please advise the sender immediately by reply e-mail and delete this message. Thank you for your cooperation.


> -----Original Message-----
> From: Rémy Maucherat <re...@apache.org>
> Sent: Wednesday, March 30, 2022 3:22 AM
> To: Tomcat Developers List <de...@tomcat.apache.org>
> Subject: [VOTE] Release Apache Tomcat 9.0.61
> 
> The proposed Apache Tomcat 9.0.61 release is now available for voting.
> 
> The notable changes compared to 9.0.60 are:
> 
> - Fix a potential thread-safety issue that could cause HTTP/1.1 request
>    processing to pause, and potentially timeout, waiting for additional
>    data when the full request has been received.
> 
> - Fix a regression introduced with 65757 bugfix which better identified
>    non request threads but which introduced a similar problem when user
>    code was doing sequential operations in a single thread.
> 
> - When resolving methods in EL expressions that use beans and/or static
>    fields, ensure that any custom type conversion is considered when
>    identifying the method to call.
> 
> Along with lots of other bug fixes and improvements.
> 
> For full details, see the changelog:
> https://urldefense.com/v3/__https://nightlies.apache.org/tomcat/tomcat-
> 9.0.x/docs/changelog.html__;!!F9svGWnIaVPGSwU!7XK-DbVirPj3r-
> F7wfi6sKyGhYbedykficURS6hxf41RBWPgm_J3aM8LgZ-NVP4f6n0DAak$
> 
> It can be obtained from:
> https://urldefense.com/v3/__https://dist.apache.org/repos/dist/dev/tomc
> at/tomcat-9/v9.0.61/__;!!F9svGWnIaVPGSwU!7XK-DbVirPj3r-
> F7wfi6sKyGhYbedykficURS6hxf41RBWPgm_J3aM8LgZ-NVP4fLrXOhN4$
> The Maven staging repo is:
> https://urldefense.com/v3/__https://repository.apache.org/content/reposi
> tories/orgapachetomcat-1366__;!!F9svGWnIaVPGSwU!7XK-DbVirPj3r-
> F7wfi6sKyGhYbedykficURS6hxf41RBWPgm_J3aM8LgZ-NVP4fYUTTyiA$
> The tag is:
> https://urldefense.com/v3/__https://github.com/apache/tomcat/tree/9.0.6
> 1__;!!F9svGWnIaVPGSwU!7XK-DbVirPj3r-
> F7wfi6sKyGhYbedykficURS6hxf41RBWPgm_J3aM8LgZ-NVP4fVDyFgoI$
> 6c6432ac1416ed369f892b9ce76e10c7eb10b91c
> 
> The proposed 9.0.61 release is:
> [ ] Broken - do not release
> [ ] Stable - go ahead and release as 9.0.61 (stable)
> 
> Rémy
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional
> commands, e-mail: dev-help@tomcat.apache.org


Re: [VOTE] Release Apache Tomcat 9.0.61

Posted by Raymond Augé <ra...@liferay.com.INVALID>.
[ X ] Stable - go ahead and release as 9.0.61 (stable)

Unzip and run worked fine on Linux.

On Wed, Mar 30, 2022 at 4:22 AM Rémy Maucherat <re...@apache.org> wrote:

> The proposed Apache Tomcat 9.0.61 release is now available for voting.
>
> The notable changes compared to 9.0.60 are:
>
> - Fix a potential thread-safety issue that could cause HTTP/1.1 request
>    processing to pause, and potentially timeout, waiting for additional
>    data when the full request has been received.
>
> - Fix a regression introduced with 65757 bugfix which better identified
>    non request threads but which introduced a similar problem when user
>    code was doing sequential operations in a single thread.
>
> - When resolving methods in EL expressions that use beans and/or static
>    fields, ensure that any custom type conversion is considered when
>    identifying the method to call.
>
> Along with lots of other bug fixes and improvements.
>
> For full details, see the changelog:
> https://nightlies.apache.org/tomcat/tomcat-9.0.x/docs/changelog.html
>
> It can be obtained from:
> https://dist.apache.org/repos/dist/dev/tomcat/tomcat-9/v9.0.61/
> The Maven staging repo is:
> https://repository.apache.org/content/repositories/orgapachetomcat-1366
> The tag is:
> https://github.com/apache/tomcat/tree/9.0.61
> 6c6432ac1416ed369f892b9ce76e10c7eb10b91c
>
> The proposed 9.0.61 release is:
> [ ] Broken - do not release
> [ ] Stable - go ahead and release as 9.0.61 (stable)
>
> Rémy
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: dev-help@tomcat.apache.org
>
>

-- 
*Raymond Augé* (@rotty3000)
Senior Software Architect *Liferay, Inc.* (@Liferay)
OSGi Fellow, Java Champion

Re: [VOTE][CANCELLED] Release Apache Tomcat 9.0.61

Posted by Rémy Maucherat <re...@apache.org>.
On Wed, Mar 30, 2022 at 10:21 AM Rémy Maucherat <re...@apache.org> wrote:
>
> The proposed Apache Tomcat 9.0.61 release is now available for voting.
>
> The notable changes compared to 9.0.60 are:
>
> - Fix a potential thread-safety issue that could cause HTTP/1.1 request
>    processing to pause, and potentially timeout, waiting for additional
>    data when the full request has been received.
>
> - Fix a regression introduced with 65757 bugfix which better identified
>    non request threads but which introduced a similar problem when user
>    code was doing sequential operations in a single thread.
>
> - When resolving methods in EL expressions that use beans and/or static
>    fields, ensure that any custom type conversion is considered when
>    identifying the method to call.
>
> Along with lots of other bug fixes and improvements.
>
> For full details, see the changelog:
> https://nightlies.apache.org/tomcat/tomcat-9.0.x/docs/changelog.html
>
> It can be obtained from:
> https://dist.apache.org/repos/dist/dev/tomcat/tomcat-9/v9.0.61/
> The Maven staging repo is:
> https://repository.apache.org/content/repositories/orgapachetomcat-1366
> The tag is:
> https://github.com/apache/tomcat/tree/9.0.61
> 6c6432ac1416ed369f892b9ce76e10c7eb10b91c
>
> The proposed 9.0.61 release is:
> [ ] Broken - do not release
> [ ] Stable - go ahead and release as 9.0.61 (stable)

The vote in cancelled in favor of the 9.0.62 release.

Rémy

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