(tomcat) branch 9.0.x updated: Try to add a smoketest workflow for 9.0
This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/9.0.x by this push: new 993400e5cd Try to add a smoketest workflow for 9.0 993400e5cd is described below commit 993400e5cdc8d47d9c5bce76af3ed72e992963ed Author: remm AuthorDate: Fri Jul 12 14:00:15 2024 +0200 Try to add a smoketest workflow for 9.0 --- .github/workflows/ci.yml | 60 1 file changed, 60 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00..9a595a2254 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,60 @@ +#Licensed under the Apache License, Version 2.0 (the "License"); +#you may not use this file except in compliance with the License. +#You may obtain a copy of the License at +# +#http://www.apache.org/licenses/LICENSE-2.0 +# +#Unless required by applicable law or agreed to in writing, software +#distributed under the License is distributed on an "AS IS" BASIS, +#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +#See the License for the specific language governing permissions and +#limitations under the License. + +name: Smoke Test + +on: + push: +branches: + - 9.0.x + pull_request: +branches: + - 9.0.x + +env: + LC_ALL: en_US.UTF-8 + +jobs: + JDKxx_Matrix: +strategy: + fail-fast: false + matrix: +isMain: + - ${{ contains(github.ref, 'main') }} +java: [ 22 ] +os: [ ubuntu-latest ] +name: JDK${{ matrix.java }} ${{ matrix.os }} +runs-on: ${{ matrix.os }} +steps: +- name: Git Checkout + uses: actions/checkout@v4 +- name: Set up Java + uses: actions/setup-java@v4 + with: +java-version: ${{ matrix.java }} +distribution: zulu +- name: Build + run: | +ant -noinput echoproperties deploy embed test-nio test-status + env: +ANT_OPTS: -Dtest.openssl.exists=false -Dtest.excludePerformance=true -Dtest.exclude=jakarta/servlet/http/TestHttpServletDoHeadValidWrite0.java,jakarta/servlet/http/TestHttpServletDoHeadValidWrite1023.java,jakarta/servlet/http/TestHttpServletDoHeadValidWrite1024.java,jakarta/servlet/http/TestHttpServletDoHeadValidWrite1025.java,jakarta/servlet/http/TestHttpServletDoHeadValidWrite1.java,jakarta/servlet/http/TestHttpServletDoHeadValidWrite511.java,jakarta/servlet/http/TestHttpServle [...] + + continue-on-error: +true +- name: Upload logs + uses: actions/upload-artifact@v4 + with: +name: JDK${{ matrix.java }}-${{ matrix.os }}-logs +path: | + hs_err_*.log + output/build/logs/TEST*.txt +retention-days: 7 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
(tomcat) branch 10.1.x updated: Add basic smoke test workflow to 10.1
This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/10.1.x by this push: new 6c745a8e31 Add basic smoke test workflow to 10.1 6c745a8e31 is described below commit 6c745a8e314eb0c342f42d52a2794d16c7b84974 Author: remm AuthorDate: Fri Jul 12 14:14:39 2024 +0200 Add basic smoke test workflow to 10.1 --- .github/workflows/ci.yml | 60 1 file changed, 60 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00..9a946a6fc8 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,60 @@ +#Licensed under the Apache License, Version 2.0 (the "License"); +#you may not use this file except in compliance with the License. +#You may obtain a copy of the License at +# +#http://www.apache.org/licenses/LICENSE-2.0 +# +#Unless required by applicable law or agreed to in writing, software +#distributed under the License is distributed on an "AS IS" BASIS, +#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +#See the License for the specific language governing permissions and +#limitations under the License. + +name: Smoke Test + +on: + push: +branches: + - 10.1.x + pull_request: +branches: + - 10.1.x + +env: + LC_ALL: en_US.UTF-8 + +jobs: + JDKxx_Matrix: +strategy: + fail-fast: false + matrix: +isMain: + - ${{ contains(github.ref, 'main') }} +java: [ 22 ] +os: [ ubuntu-latest ] +name: JDK${{ matrix.java }} ${{ matrix.os }} +runs-on: ${{ matrix.os }} +steps: +- name: Git Checkout + uses: actions/checkout@v4 +- name: Set up Java + uses: actions/setup-java@v4 + with: +java-version: ${{ matrix.java }} +distribution: zulu +- name: Build + run: | +ant -noinput echoproperties deploy embed test-nio test-status + env: +ANT_OPTS: -Dtest.openssl.exists=false -Dtest.excludePerformance=true -Dtest.exclude=jakarta/servlet/http/TestHttpServletDoHeadValidWrite0.java,jakarta/servlet/http/TestHttpServletDoHeadValidWrite1023.java,jakarta/servlet/http/TestHttpServletDoHeadValidWrite1024.java,jakarta/servlet/http/TestHttpServletDoHeadValidWrite1025.java,jakarta/servlet/http/TestHttpServletDoHeadValidWrite1.java,jakarta/servlet/http/TestHttpServletDoHeadValidWrite511.java,jakarta/servlet/http/TestHttpServle [...] + + continue-on-error: +true +- name: Upload logs + uses: actions/upload-artifact@v4 + with: +name: JDK${{ matrix.java }}-${{ matrix.os }}-logs +path: | + hs_err_*.log + output/build/logs/TEST*.txt +retention-days: 7 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 69180] Windows Tomcat service crashes in certain cases
https://bz.apache.org/bugzilla/show_bug.cgi?id=69180 --- Comment #8 from Christopher Schultz --- So that commit seems to create the problem, but only with non-debug builds? That's quite good information to report. Thanks for your responsiveness and especially your ability to actually build and try something on Windows. :) -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: [VOTE] Release Apache Tomcat 10.1.26 (need more votes)
All, I actually need to get at least one more vote on this release in order to push it out. Can anyone else give it a once-over and add their vote? Thanks, -chris On 7/7/24 18:07, Christopher Schultz wrote: The proposed Apache Tomcat 10.1.26 release is now available for voting. All committers and PMC members are kindly requested to provide a vote if possible. ANY TOMCAT USER MAY VOTE, though only PMC members votes are binding. We welcome non-committer votes or comments on release builds. The notable changes compared to 10.1.25 are: - Move OpenSSL support using FFM to a separate JAR named tomcat-coyote-ffm.jar that advertises Java 22 in its manifest. - When using include directives in a tag file packaged in a JAR file, ensure that the include directives are processed correctly. - Expand the implementation of the filter value of the Authenticator attribute allowCorsPreflight, so that it applies to all requests that match the configured URL patterns for the CORS filter, rather than only applying if the CORS filter is mapped to /* For full details, see the change log: https://nightlies.apache.org/tomcat/tomcat-10.1.x/docs/changelog.html Applications that run on Tomcat 9 and earlier will not run on Tomcat 10 without changes. Java EE applications designed for Tomcat 9 and earlier may be placed in the $CATALINA_BASE/webapps-javaee directory and Tomcat will automatically convert them to Jakarta EE and copy them to the webapps directory. It can be obtained from: https://dist.apache.org/repos/dist/dev/tomcat/tomcat-10/v10.1.26/ The Maven staging repo is: https://repository.apache.org/content/repositories/orgapachetomcat-1502 The tag is: https://github.com/apache/tomcat/tree/10.1.26 https://github.com/apache/tomcat/commit/43731ff263f74ec9949a3f535fd9254baa932603 Please reply with a +1 for release or +0/-0/-1 with an explanation. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: [VOTE] Release Apache Tomcat 10.1.26
Am 08.07.24 um 00:07 schrieb Christopher Schultz: The proposed Apache Tomcat 10.1.26 release is now available for voting. All committers and PMC members are kindly requested to provide a vote if possible. ANY TOMCAT USER MAY VOTE, though only PMC members votes are binding. We welcome non-committer votes or comments on release builds. The notable changes compared to 10.1.25 are: - Move OpenSSL support using FFM to a separate JAR named tomcat-coyote-ffm.jar that advertises Java 22 in its manifest. - When using include directives in a tag file packaged in a JAR file, ensure that the include directives are processed correctly. - Expand the implementation of the filter value of the Authenticator attribute allowCorsPreflight, so that it applies to all requests that match the configured URL patterns for the CORS filter, rather than only applying if the CORS filter is mapped to /* For full details, see the change log: https://nightlies.apache.org/tomcat/tomcat-10.1.x/docs/changelog.html Applications that run on Tomcat 9 and earlier will not run on Tomcat 10 without changes. Java EE applications designed for Tomcat 9 and earlier may be placed in the $CATALINA_BASE/webapps-javaee directory and Tomcat will automatically convert them to Jakarta EE and copy them to the webapps directory. It can be obtained from: https://dist.apache.org/repos/dist/dev/tomcat/tomcat-10/v10.1.26/ The Maven staging repo is: https://repository.apache.org/content/repositories/orgapachetomcat-1502 The tag is: https://github.com/apache/tomcat/tree/10.1.26 https://github.com/apache/tomcat/commit/43731ff263f74ec9949a3f535fd9254baa932603 Please reply with a +1 for release or +0/-0/-1 with an explanation. +1, tested with my usual zoo of JVMs and platforms. Thanks for RM! Rainer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: [VOTE] Release Apache Tomcat 10.1.26
On Sun, Jul 7, 2024 at 6:07 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > The proposed Apache Tomcat 10.1.26 release is now available for > voting. > > All committers and PMC members are kindly requested to provide a vote if > possible. ANY TOMCAT USER MAY VOTE, though only PMC members votes are > binding. We welcome non-committer votes or comments on release builds. > > The notable changes compared to 10.1.25 are: > > - Move OpenSSL support using FFM to a separate JAR named >tomcat-coyote-ffm.jar that advertises Java 22 in its manifest. > > - When using include directives in a tag file packaged in a JAR file, >ensure that the include directives are processed correctly. > > - Expand the implementation of the filter value of the Authenticator >attribute allowCorsPreflight, so that it applies to all requests that >match the configured URL patterns for the CORS filter, rather than >only applying if the CORS filter is mapped to /* > > For full details, see the change log: > https://nightlies.apache.org/tomcat/tomcat-10.1.x/docs/changelog.html > > Applications that run on Tomcat 9 and earlier will not run on Tomcat 10 > without changes. Java EE applications designed for Tomcat 9 and earlier > may be placed in the $CATALINA_BASE/webapps-javaee directory and Tomcat > will automatically convert them to Jakarta EE and copy them to the > webapps directory. > > It can be obtained from: > https://dist.apache.org/repos/dist/dev/tomcat/tomcat-10/v10.1.26/ > > The Maven staging repo is: > https://repository.apache.org/content/repositories/orgapachetomcat-1502 > > The tag is: > https://github.com/apache/tomcat/tree/10.1.26 > > https://github.com/apache/tomcat/commit/43731ff263f74ec9949a3f535fd9254baa932603 > > Please reply with a +1 for release or +0/-0/-1 with an explanation. > +1
svn commit: r70266 - /dev/tomcat/tomcat-10/v10.1.26/ /release/tomcat/tomcat-10/v10.1.26/
Author: schultz Date: Fri Jul 12 15:42:33 2024 New Revision: 70266 Log: Promote v10.1.26 to release Added: release/tomcat/tomcat-10/v10.1.26/ - copied from r70265, dev/tomcat/tomcat-10/v10.1.26/ Removed: dev/tomcat/tomcat-10/v10.1.26/ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[VOTE][RESULT] Release Apache Tomcat 10.1.26
All, The following votes were cast: +1 remm, schultz, rjung, csutherl Non-binding: +1: dsoumis There were no other votes, therefore the vote passes. Thanks to everyone who contributed toward this release. Thanks, -chris The proposed Apache Tomcat 10.1.26 release is now available for voting. All committers and PMC members are kindly requested to provide a vote if possible. ANY TOMCAT USER MAY VOTE, though only PMC members votes are binding. We welcome non-committer votes or comments on release builds. The notable changes compared to 10.1.25 are: - Move OpenSSL support using FFM to a separate JAR named tomcat-coyote-ffm.jar that advertises Java 22 in its manifest. - When using include directives in a tag file packaged in a JAR file, ensure that the include directives are processed correctly. - Expand the implementation of the filter value of the Authenticator attribute allowCorsPreflight, so that it applies to all requests that match the configured URL patterns for the CORS filter, rather than only applying if the CORS filter is mapped to /* For full details, see the change log: https://nightlies.apache.org/tomcat/tomcat-10.1.x/docs/changelog.html Applications that run on Tomcat 9 and earlier will not run on Tomcat 10 without changes. Java EE applications designed for Tomcat 9 and earlier may be placed in the $CATALINA_BASE/webapps-javaee directory and Tomcat will automatically convert them to Jakarta EE and copy them to the webapps directory. It can be obtained from: https://dist.apache.org/repos/dist/dev/tomcat/tomcat-10/v10.1.26/ The Maven staging repo is: https://repository.apache.org/content/repositories/orgapachetomcat-1502 The tag is: https://github.com/apache/tomcat/tree/10.1.26 https://github.com/apache/tomcat/commit/43731ff263f74ec9949a3f535fd9254baa932603 Please reply with a +1 for release or +0/-0/-1 with an explanation. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1919166 - in /tomcat/site/trunk: ./ docs/ docs/tomcat-10.1-doc/ docs/tomcat-10.1-doc/annotationapi/ docs/tomcat-10.1-doc/annotationapi/jakarta/annotation/ docs/tomcat-10.1-doc/annotationa
Author: schultz Date: Fri Jul 12 15:48:53 2024 New Revision: 1919166 URL: http://svn.apache.org/viewvc?rev=1919166&view=rev Log: Announce v10.1.26 [This commit notification would consist of 63 parts, which exceeds the limit of 50 ones, so it was shortened to the summary.] - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r70267 - /release/tomcat/tomcat-10/v10.1.25/
Author: schultz Date: Fri Jul 12 15:51:56 2024 New Revision: 70267 Log: Drop old release artifacts Removed: release/tomcat/tomcat-10/v10.1.25/ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
(tomcat) branch 10.1.x updated: Add release date
This is an automated email from the ASF dual-hosted git repository. schultz pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/10.1.x by this push: new 46fd8b82b0 Add release date 46fd8b82b0 is described below commit 46fd8b82b0240392c9fd584d7e157c863ed7264d Author: Christopher Schultz AuthorDate: Fri Jul 12 11:53:01 2024 -0400 Add release date --- webapps/docs/changelog.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index 5d050dabe6..a73a11c0c3 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -106,7 +106,7 @@ --> - + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Buildbot failure in on tomcat-10.1.x
Build status: BUILD FAILED: failed compile (failure) Worker used: bb_worker2_ubuntu URL: https://ci2.apache.org/#builders/44/builds/1325 Blamelist: Christopher Schultz Build Text: failed compile (failure) Status Detected: new failure Build Source Stamp: [branch 10.1.x] 46fd8b82b0240392c9fd584d7e157c863ed7264d Steps: worker_preparation: 0 git: 0 shell: 0 shell_1: 0 shell_2: 0 shell_3: 0 shell_4: 0 shell_5: 0 compile: 1 shell_6: 0 shell_7: 0 shell_8: 0 shell_9: 0 Rsync docs to nightlies.apache.org: 0 shell_10: 0 Rsync RAT to nightlies.apache.org: 0 compile_1: 2 shell_11: 0 Rsync Logs to nightlies.apache.org: 0 -- ASF Buildbot - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 69187] New: Gogoanime
https://bz.apache.org/bugzilla/show_bug.cgi?id=69187 Bug ID: 69187 Summary: Gogoanime Product: Tomcat 9 Version: unspecified Hardware: PC Status: NEW Severity: normal Priority: P2 Component: Util Assignee: dev@tomcat.apache.org Reporter: jadeg...@belgianairways.com Target Milestone: - -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 69188] New: anime
https://bz.apache.org/bugzilla/show_bug.cgi?id=69188 Bug ID: 69188 Summary: anime Product: Tomcat Connectors Version: unspecified Hardware: PC Status: NEW Severity: normal Priority: P2 Component: Common Assignee: dev@tomcat.apache.org Reporter: jadeg...@belgianairways.com Target Milestone: --- -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 69180] Windows Tomcat service crashes in certain cases
https://bz.apache.org/bugzilla/show_bug.cgi?id=69180 --- Comment #9 from qoo...@gmail.com --- (In reply to Christopher Schultz from comment #8) > So that commit seems to create the problem, but only with non-debug builds? Yes. If you look at that commit, they only apply the Control Flow Guard flag to release builds. > That's quite good information to report. Thanks for your responsiveness and > especially your ability to actually build and try something on Windows. :) Unfortunately, I still haven't been granted access to Commons-Daemon JIRA project, so I can't report it there. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 69187] SPAM SPAM SPAM SPAM
https://bz.apache.org/bugzilla/show_bug.cgi?id=69187 Chuck Caldarale changed: What|Removed |Added OS||All Summary|Gogoanime |SPAM SPAM SPAM SPAM Resolution|--- |INVALID Status|NEW |RESOLVED -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 69188] SPAM SPAM SPAM SPAM
https://bz.apache.org/bugzilla/show_bug.cgi?id=69188 Chuck Caldarale changed: What|Removed |Added Summary|anime |SPAM SPAM SPAM SPAM OS||All Status|NEW |RESOLVED Resolution|--- |INVALID -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 69189] New: https://digitalnexio.com/
https://bz.apache.org/bugzilla/show_bug.cgi?id=69189 Bug ID: 69189 Summary: https://digitalnexio.com/ Product: Tomcat Native Version: unspecified Hardware: PC OS: Windows XP Status: NEW Severity: normal Priority: P2 Component: Library Assignee: dev@tomcat.apache.org Reporter: fashent...@gmail.com Target Milestone: --- https://digitalnexio.com/ -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 69189] https://digitalnexio.com/
https://bz.apache.org/bugzilla/show_bug.cgi?id=69189 --- Comment #1 from marvel --- Created attachment 39800 --> https://bz.apache.org/bugzilla/attachment.cgi?id=39800&action=edit https://digitalnexio.com/ -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 69189] SPAM SPAM SPAM SPAM
https://bz.apache.org/bugzilla/show_bug.cgi?id=69189 Chuck Caldarale changed: What|Removed |Added Resolution|--- |INVALID Status|NEW |RESOLVED Summary|https://digitalnexio.com/ |SPAM SPAM SPAM SPAM -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 69189] SPAM SPAM SPAM SPAM
https://bz.apache.org/bugzilla/show_bug.cgi?id=69189 Chuck Caldarale changed: What|Removed |Added Attachment #39800|https://digitalnexio.com/ |SPAM SPAM SPAM SPAM description|| -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 69190] New: https://buystealthaccount.com/
https://bz.apache.org/bugzilla/show_bug.cgi?id=69190 Bug ID: 69190 Summary: https://buystealthaccount.com/ Product: Tomcat Native Version: unspecified Hardware: PC OS: Windows XP Status: NEW Severity: normal Priority: P2 Component: Documentation Assignee: dev@tomcat.apache.org Reporter: szoro...@gmail.com Target Milestone: --- -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 69190] SPAM SPAM SPAM SPAM
https://bz.apache.org/bugzilla/show_bug.cgi?id=69190 Chuck Caldarale changed: What|Removed |Added Status|NEW |RESOLVED Summary|https://buystealthaccount.c |SPAM SPAM SPAM SPAM |om/ | Resolution|--- |INVALID -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org