[Bug 65389] this is a test bug,don't aa

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65389

zengli <2378555...@qq.com> changed:

   What|Removed |Added

 OS||Mac OS X 10.12

-- 
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 65389] this is a test bug,don't aa

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65389

zengli <2378555...@qq.com> changed:

   What|Removed |Added

 OS|All |Windows 8
   Hardware|PC  |SGI

-- 
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 65389] this is a test bug,don't aa

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65389

zengli <2378555...@qq.com> changed:

   What|Removed |Added

Version|10.0.2  |10.0.5

-- 
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 65389] this is a test bug,don't aa

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65389

zengli <2378555...@qq.com> changed:

   What|Removed |Added

Version|unspecified |10.0.2
Product|Tomcat 7|Tomcat 10
  Component|Connectors  |Packaging
   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 65389] this is a test bug,don't aa

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65389

zengli <2378555...@qq.com> changed:

   What|Removed |Added

  Alias||bbaa, add()

-- 
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 65389] this is a test bug,don't aa

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65389

zengli <2378555...@qq.com> changed:

   What|Removed |Added

 Resolution|--- |FIXED
 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 65389] this is a test bug,don't aa

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65389

zengli <2378555...@qq.com> changed:

   What|Removed |Added

 OS||All
Summary|this is a test bug,don't|this is a test bug,don't aa

-- 
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 65389] New: this is a test bug,don't

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65389

Bug ID: 65389
   Summary: this is a test bug,don't
   Product: Tomcat 7
   Version: unspecified
  Hardware: PC
Status: NEW
  Severity: minor
  Priority: P2
 Component: Connectors
  Assignee: dev@tomcat.apache.org
  Reporter: 2378555...@qq.com
  Target Milestone: ---

this is a private test bug ,and will be deleted later,thanks

-- 
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



[tomcat] branch 8.5.x updated: Fix potential hang with concurrent reads or concurrent writes

2021-06-17 Thread markt
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/8.5.x by this push:
 new 0e868eb  Fix potential hang with concurrent reads or concurrent writes
0e868eb is described below

commit 0e868ebbb39d7286fa7db2e0baa04d79cb80b4ea
Author: Mark Thomas 
AuthorDate: Thu Jun 17 22:25:54 2021 +0100

Fix potential hang with concurrent reads or concurrent writes

Fot two threads, T1 and T2, both writing to the same connection, the
sequence of events for a failure is as follows (line numbers all pre
this commit):

- T1 obtains the write semaphore (L1366)
- T1 creates an OperationState and sets writeOperation (L1390)
- the async write for T1 completes and the completion handler is called
- T1's completion handler releases the semaphore (L1046)
- T2 obtains the write semaphore (L1366)
- T2 creates an OperationState and sets writeOperation (L1390)
- T1's completion handler clears writeOperation (L1050)
- the async write for T2 does not complete and the socket is added to
  the Poller
- The Poller signals the socket is ready for write
- The Poller finds writeOperation is null so performs a normal dispatch
  for write
- The async write times out as it never receives the notification from
  the Poller

The fix is to swap the order of clearing writeOperation and releasing
the semaphore.
---
 java/org/apache/tomcat/util/net/SocketWrapperBase.java | 12 ++--
 webapps/docs/changelog.xml |  5 +
 2 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/java/org/apache/tomcat/util/net/SocketWrapperBase.java 
b/java/org/apache/tomcat/util/net/SocketWrapperBase.java
index 17a0b4c..00a4104 100644
--- a/java/org/apache/tomcat/util/net/SocketWrapperBase.java
+++ b/java/org/apache/tomcat/util/net/SocketWrapperBase.java
@@ -1025,12 +1025,16 @@ public abstract class SocketWrapperBase {
 }
 if (complete) {
 boolean notify = false;
-state.semaphore.release();
 if (state.read) {
 readOperation = null;
 } else {
 writeOperation = null;
 }
+// Semaphore must be released after [read|write]Operation 
is cleared
+// to ensure that the next thread to hold the semaphore 
hasn't
+// written a new value to [read|write]Operation by the 
time it is
+// cleared.
+state.semaphore.release();
 if (state.block == BlockingMode.BLOCK && currentState != 
CompletionState.INLINE) {
 notify = true;
 } else {
@@ -1066,12 +1070,16 @@ public abstract class SocketWrapperBase {
 }
 setError(ioe);
 boolean notify = false;
-state.semaphore.release();
 if (state.read) {
 readOperation = null;
 } else {
 writeOperation = null;
 }
+// Semaphore must be released after [read|write]Operation is 
cleared
+// to ensure that the next thread to hold the semaphore hasn't
+// written a new value to [read|write]Operation by the time it is
+// cleared.
+state.semaphore.release();
 if (state.block == BlockingMode.BLOCK) {
 notify = true;
 } else {
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 1dafa91..7314cfe 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -170,6 +170,11 @@
 buffer is now flushed (and the response committed if required) if the
 buffer is full and there is more data to write. (markt)
   
+  
+Fix an issue where concurrent HTTP/2 writes (or concurrent reads) to 
the
+same connection could hang and eventually timeout when async IO was
+enabled (it is enabled by default). (markt)
+  
 
   
   

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



[tomcat] branch 9.0.x updated: Fix potential hang with concurrent reads or concurrent writes

2021-06-17 Thread markt
This is an automated email from the ASF dual-hosted git repository.

markt 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 953ff9c  Fix potential hang with concurrent reads or concurrent writes
953ff9c is described below

commit 953ff9c9d1d83dc7e4608c7608560ab5f72e5fa5
Author: Mark Thomas 
AuthorDate: Thu Jun 17 22:25:54 2021 +0100

Fix potential hang with concurrent reads or concurrent writes

Fot two threads, T1 and T2, both writing to the same connection, the
sequence of events for a failure is as follows (line numbers all pre
this commit):

- T1 obtains the write semaphore (L1366)
- T1 creates an OperationState and sets writeOperation (L1390)
- the async write for T1 completes and the completion handler is called
- T1's completion handler releases the semaphore (L1046)
- T2 obtains the write semaphore (L1366)
- T2 creates an OperationState and sets writeOperation (L1390)
- T1's completion handler clears writeOperation (L1050)
- the async write for T2 does not complete and the socket is added to
  the Poller
- The Poller signals the socket is ready for write
- The Poller finds writeOperation is null so performs a normal dispatch
  for write
- The async write times out as it never receives the notification from
  the Poller

The fix is to swap the order of clearing writeOperation and releasing
the semaphore.
---
 java/org/apache/tomcat/util/net/SocketWrapperBase.java | 12 ++--
 webapps/docs/changelog.xml |  5 +
 2 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/java/org/apache/tomcat/util/net/SocketWrapperBase.java 
b/java/org/apache/tomcat/util/net/SocketWrapperBase.java
index 07580f9..008715e 100644
--- a/java/org/apache/tomcat/util/net/SocketWrapperBase.java
+++ b/java/org/apache/tomcat/util/net/SocketWrapperBase.java
@@ -1073,12 +1073,16 @@ public abstract class SocketWrapperBase {
 }
 if (complete) {
 boolean notify = false;
-state.semaphore.release();
 if (state.read) {
 readOperation = null;
 } else {
 writeOperation = null;
 }
+// Semaphore must be released after [read|write]Operation 
is cleared
+// to ensure that the next thread to hold the semaphore 
hasn't
+// written a new value to [read|write]Operation by the 
time it is
+// cleared.
+state.semaphore.release();
 if (state.block == BlockingMode.BLOCK && currentState != 
CompletionState.INLINE) {
 notify = true;
 } else {
@@ -1114,12 +1118,16 @@ public abstract class SocketWrapperBase {
 }
 setError(ioe);
 boolean notify = false;
-state.semaphore.release();
 if (state.read) {
 readOperation = null;
 } else {
 writeOperation = null;
 }
+// Semaphore must be released after [read|write]Operation is 
cleared
+// to ensure that the next thread to hold the semaphore hasn't
+// written a new value to [read|write]Operation by the time it is
+// cleared.
+state.semaphore.release();
 if (state.block == BlockingMode.BLOCK) {
 notify = true;
 } else {
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index e9eeecd..8fc330a 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -170,6 +170,11 @@
 buffer is now flushed (and the response committed if required) if the
 buffer is full and there is more data to write. (markt)
   
+  
+Fix an issue where concurrent HTTP/2 writes (or concurrent reads) to 
the
+same connection could hang and eventually timeout when async IO was
+enabled (it is enabled by default). (markt)
+  
 
   
   

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



[tomcat] branch 10.0.x updated: Fix potential hang with concurrent reads or concurrent writes

2021-06-17 Thread markt
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 10.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/10.0.x by this push:
 new e3e3993  Fix potential hang with concurrent reads or concurrent writes
e3e3993 is described below

commit e3e3993f70540b631509e66e2eca7091289e4388
Author: Mark Thomas 
AuthorDate: Thu Jun 17 22:25:54 2021 +0100

Fix potential hang with concurrent reads or concurrent writes

Fot two threads, T1 and T2, both writing to the same connection, the
sequence of events for a failure is as follows (line numbers all pre
this commit):

- T1 obtains the write semaphore (L1366)
- T1 creates an OperationState and sets writeOperation (L1390)
- the async write for T1 completes and the completion handler is called
- T1's completion handler releases the semaphore (L1046)
- T2 obtains the write semaphore (L1366)
- T2 creates an OperationState and sets writeOperation (L1390)
- T1's completion handler clears writeOperation (L1050)
- the async write for T2 does not complete and the socket is added to
  the Poller
- The Poller signals the socket is ready for write
- The Poller finds writeOperation is null so performs a normal dispatch
  for write
- The async write times out as it never receives the notification from
  the Poller

The fix is to swap the order of clearing writeOperation and releasing
the semaphore.
---
 java/org/apache/tomcat/util/net/SocketWrapperBase.java | 12 ++--
 webapps/docs/changelog.xml |  5 +
 2 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/java/org/apache/tomcat/util/net/SocketWrapperBase.java 
b/java/org/apache/tomcat/util/net/SocketWrapperBase.java
index 0a988aa..117bce8 100644
--- a/java/org/apache/tomcat/util/net/SocketWrapperBase.java
+++ b/java/org/apache/tomcat/util/net/SocketWrapperBase.java
@@ -1043,12 +1043,16 @@ public abstract class SocketWrapperBase {
 }
 if (complete) {
 boolean notify = false;
-state.semaphore.release();
 if (state.read) {
 readOperation = null;
 } else {
 writeOperation = null;
 }
+// Semaphore must be released after [read|write]Operation 
is cleared
+// to ensure that the next thread to hold the semaphore 
hasn't
+// written a new value to [read|write]Operation by the 
time it is
+// cleared.
+state.semaphore.release();
 if (state.block == BlockingMode.BLOCK && currentState != 
CompletionState.INLINE) {
 notify = true;
 } else {
@@ -1084,12 +1088,16 @@ public abstract class SocketWrapperBase {
 }
 setError(ioe);
 boolean notify = false;
-state.semaphore.release();
 if (state.read) {
 readOperation = null;
 } else {
 writeOperation = null;
 }
+// Semaphore must be released after [read|write]Operation is 
cleared
+// to ensure that the next thread to hold the semaphore hasn't
+// written a new value to [read|write]Operation by the time it is
+// cleared.
+state.semaphore.release();
 if (state.block == BlockingMode.BLOCK) {
 notify = true;
 } else {
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 06c3315..b1c87fe 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -170,6 +170,11 @@
 buffer is now flushed (and the response committed if required) if the
 buffer is full and there is more data to write. (markt)
   
+  
+Fix an issue where concurrent HTTP/2 writes (or concurrent reads) to 
the
+same connection could hang and eventually timeout when async IO was
+enabled (it is enabled by default). (markt)
+  
 
   
   

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



[tomcat] branch main updated: Fix potential hang with concurrent reads or concurrent writes

2021-06-17 Thread markt
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/main by this push:
 new 92b9185  Fix potential hang with concurrent reads or concurrent writes
92b9185 is described below

commit 92b918574bebc7d5814b6ea8381d365b695a96a3
Author: Mark Thomas 
AuthorDate: Thu Jun 17 22:25:54 2021 +0100

Fix potential hang with concurrent reads or concurrent writes

Fot two threads, T1 and T2, both writing to the same connection, the
sequence of events for a failure is as follows (line numbers all pre
this commit):

- T1 obtains the write semaphore (L1366)
- T1 creates an OperationState and sets writeOperation (L1390)
- the async write for T1 completes and the completion handler is called
- T1's completion handler releases the semaphore (L1046)
- T2 obtains the write semaphore (L1366)
- T2 creates an OperationState and sets writeOperation (L1390)
- T1's completion handler clears writeOperation (L1050)
- the async write for T2 does not complete and the socket is added to
  the Poller
- The Poller signals the socket is ready for write
- The Poller finds writeOperation is null so performs a normal dispatch
  for write
- The async write times out as it never receives the notification from
  the Poller

The fix is to swap the order of clearing writeOperation and releasing
the semaphore.
---
 java/org/apache/tomcat/util/net/SocketWrapperBase.java | 12 ++--
 webapps/docs/changelog.xml |  5 +
 2 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/java/org/apache/tomcat/util/net/SocketWrapperBase.java 
b/java/org/apache/tomcat/util/net/SocketWrapperBase.java
index 0a988aa..117bce8 100644
--- a/java/org/apache/tomcat/util/net/SocketWrapperBase.java
+++ b/java/org/apache/tomcat/util/net/SocketWrapperBase.java
@@ -1043,12 +1043,16 @@ public abstract class SocketWrapperBase {
 }
 if (complete) {
 boolean notify = false;
-state.semaphore.release();
 if (state.read) {
 readOperation = null;
 } else {
 writeOperation = null;
 }
+// Semaphore must be released after [read|write]Operation 
is cleared
+// to ensure that the next thread to hold the semaphore 
hasn't
+// written a new value to [read|write]Operation by the 
time it is
+// cleared.
+state.semaphore.release();
 if (state.block == BlockingMode.BLOCK && currentState != 
CompletionState.INLINE) {
 notify = true;
 } else {
@@ -1084,12 +1088,16 @@ public abstract class SocketWrapperBase {
 }
 setError(ioe);
 boolean notify = false;
-state.semaphore.release();
 if (state.read) {
 readOperation = null;
 } else {
 writeOperation = null;
 }
+// Semaphore must be released after [read|write]Operation is 
cleared
+// to ensure that the next thread to hold the semaphore hasn't
+// written a new value to [read|write]Operation by the time it is
+// cleared.
+state.semaphore.release();
 if (state.block == BlockingMode.BLOCK) {
 notify = true;
 } else {
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 0b82644..2d2708f 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -170,6 +170,11 @@
 buffer is now flushed (and the response committed if required) if the
 buffer is full and there is more data to write. (markt)
   
+  
+Fix an issue where concurrent HTTP/2 writes (or concurrent reads) to 
the
+same connection could hang and eventually timeout when async IO was
+enabled (it is enabled by default). (markt)
+  
 
   
   

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



[Bug 65385] Link to Maven Central is not valid

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65385

Konstantin Kolinko  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

--- Comment #3 from Konstantin Kolinko  ---
IIRC, the recommended URL to the Maven Central is
https://repo.maven.apache.org/maven2/

Using an apache.org address instead of a 3rd party one.

https://markmail.org/message/6q2yfkqvic7bcpib
https://markmail.org/thread/kgq6lm64u7ab73m2

-- 
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 65387] JSP compile error after upgrade 10.0.6 -> 10.0.7

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65387

--- Comment #9 from Konstantin Kolinko  ---
Can you provide the generated java file (LoginForm_jsp.java) ?

/usr/local/tomcat/work/Catalina/localhost/qeepmaster-new/org/apache/jsp/WEB_002dINF/jsp/LoginForm_jsp.java

-- 
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 65387] JSP compile error after upgrade 10.0.6 -> 10.0.7

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65387

--- Comment #8 from qeepcologne  ---
i don't create that include hell and web developer is on holiday at the moment.
I try to add all the missing includes. Hope that helps.

-- 
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 65387] JSP compile error after upgrade 10.0.6 -> 10.0.7

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65387

--- Comment #7 from qeepcologne  ---
Created attachment 37905
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=37905=edit
nested include HTML_Header.jsp

-- 
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 65387] JSP compile error after upgrade 10.0.6 -> 10.0.7

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65387

--- Comment #6 from qeepcologne  ---
Created attachment 37904
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=37904=edit
include Main_Start.jsp

-- 
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 65387] JSP compile error after upgrade 10.0.6 -> 10.0.7

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65387

--- Comment #5 from qeepcologne  ---
Created attachment 37903
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=37903=edit
include header.jsp

-- 
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



[ANN] Apache Tomcat 9.0.48 available

2021-06-17 Thread Rémy Maucherat
The Apache Tomcat team announces the immediate availability of Apache
Tomcat 9.0.48.

Apache Tomcat 9 is an open source software implementation of the Java
Servlet, JavaServer Pages, Java Unified Expression Language, Java
WebSocket and JASPIC technologies.

Apache Tomcat 9.0.48 is a bugfix and feature release. The notable
changes compared to 9.0.46 include:

- Improve robustness of HTTP/2 HPACK decoding

- Improvements to the handling of the Transfer-Encoding header

- Review code used to generate Java source from JSPs and tags and remove
   code found to be unnecessary.

- Backport the updated blocking NIO code and optimizations from Tomcat 10.0.

Along with lots of other bug fixes and improvements.

Please refer to the change log for the complete list of changes:
http://tomcat.apache.org/tomcat-9.0-doc/changelog.html


Downloads:
http://tomcat.apache.org/download-90.cgi

Migration guides from Apache Tomcat 7.x and 8.x:
http://tomcat.apache.org/migration.html

Enjoy!

- The Apache Tomcat team

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



[ANN] Apache Tomcat 9.0.48 available

2021-06-17 Thread Rémy Maucherat
The Apache Tomcat team announces the immediate availability of Apache
Tomcat 9.0.48.

Apache Tomcat 9 is an open source software implementation of the Java
Servlet, JavaServer Pages, Java Unified Expression Language, Java
WebSocket and JASPIC technologies.

Apache Tomcat 9.0.48 is a bugfix and feature release. The notable
changes compared to 9.0.46 include:

- Improve robustness of HTTP/2 HPACK decoding

- Improvements to the handling of the Transfer-Encoding header

- Review code used to generate Java source from JSPs and tags and remove
   code found to be unnecessary.

- Backport the updated blocking NIO code and optimizations from Tomcat 10.0.

Along with lots of other bug fixes and improvements.

Please refer to the change log for the complete list of changes:
http://tomcat.apache.org/tomcat-9.0-doc/changelog.html


Downloads:
http://tomcat.apache.org/download-90.cgi

Migration guides from Apache Tomcat 7.x and 8.x:
http://tomcat.apache.org/migration.html

Enjoy!

- The Apache Tomcat team


[Bug 63244] CATALINA_PID never get written

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63244

--- Comment #5 from Ruslan Sibgatullin  ---
(In reply to Ruslan Sibgatullin from comment #4)
> Hey, we are on version 9.0.46 but the problem is still there.
> is there any workaround apart from patching catalina.sh file?

forget it...
it turned out we are on version 9.0.16

-- 
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 63244] CATALINA_PID never get written

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63244

--- Comment #4 from Ruslan Sibgatullin  ---
Hey, we are on version 9.0.46 but the problem is still there.
is there any workaround apart from patching catalina.sh file?

-- 
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: [tomcat] branch main updated: Extend the time allowed for tests to complete

2021-06-17 Thread Martin Grigorov
Hi Mark,

On Wed, Jun 16, 2021 at 11:55 AM  wrote:

> This is an automated email from the ASF dual-hosted git repository.
>
> markt pushed a commit to branch main
> in repository https://gitbox.apache.org/repos/asf/tomcat.git
>
>
> The following commit(s) were added to refs/heads/main by this push:
>  new 56e439a  Extend the time allowed for tests to complete
> 56e439a is described below
>
> commit 56e439ada85c7c99cf3fa2d1b44bfdeb9a9d43eb
> Author: Mark Thomas 
> AuthorDate: Wed Jun 16 09:54:15 2021 +0100
>
> Extend the time allowed for tests to complete
> ---
>  .travis.yml | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/.travis.yml b/.travis.yml
> index 8556c36..75b0b24 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -80,7 +80,7 @@ install:
>
>  script:
>  - ant -q clean
> -- travis_wait 60 "./.travis/antTest.sh"
> +- travis_wait 120 "./.travis/antTest.sh"
>

I don't think this helps.
The maximum time for a job at TravisCI is 50 mins for public repositories,
and 120 mins for private ones.
In our case it is 50 mins.


>
>  after_failure:
>  - tail -n 5000 ant-test.log
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: dev-h...@tomcat.apache.org
>
>


[Bug 65387] JSP compile error after upgrade 10.0.6 -> 10.0.7

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65387

--- Comment #4 from Remy Maucherat  ---
(In reply to Mark Thomas from comment #3)
> The JSP provided to reproduce the issue has a number of included that have
> not been provided. We can try and work-around this but we can't know if the
> content that triggers this issue is in the included files or not.
> 
> Please provide a self-contained JSP (it can depend on JSTL if necessary)
> that demonstrates the issue.

I have tried the if.jsp from the examples, and the empty if tag doesn't have
the out (this is ok I believe) while the two that are not empty do have it. In
the provided example, the if tags are not empty so they should have the out as
well.

-- 
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



svn commit: r1890876 [6/7] - in /tomcat/site/trunk: ./ docs/ xdocs/

2021-06-17 Thread remm
Modified: tomcat/site/trunk/docs/security-7.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-7.html?rev=1890876=1890875=1890876=diff
==
--- tomcat/site/trunk/docs/security-7.html (original)
+++ tomcat/site/trunk/docs/security-7.html Thu Jun 17 13:32:17 2021
@@ -1,7 +1,7 @@
 
 Apache Tomcat - Apache Tomcat 7 
vulnerabilitieshttp://tomcat.apache.org/;>Apache 
Tomcathttps://www.apache.org/foundation/contributing.html; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png; class="support-asf" 
alt="Support Apache">http://www.apache.org/; target="_blank" class="pull-left">https://www.google.com/search; method="get">GOhttps://www.apache.org/events/current-event.html;>https://www.apache.org/events/current-event-234x60.png; alt="Next ASF 
event">
   Save the date!
-Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi;>Tomcat 
Connectorshttps://tomcat.apache.org/download-native.cgi;>Tomcat 
Nativehttps://tomcat.apache.org/download-taglibs.cgi;>Taglibshttps://archive.apache.org/dist/tomcat/;>A
 rchivesDocumentationTomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat 7.0Tomcat ConnectorsTomcat Nativehttps://cwiki.apache.org/confluence/display/TOMCAT;>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg;>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ;>FAQMailing ListsBug 
Databas
 eIRCGet 
InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ;>TranslationsToolsMediahttps://twitter.com/theapachetomcat;>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial;>YouTubehttps://blogs.apache.org/tomcat/;>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat;>SwagHeritagehttp://www.apache.org;>Apache HomeResourcesContactLegal<
 /li>https://www.apache.org/foundation/contributing.html;>Support 
Apachehttps://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thankshttp://www.apache.org/licenses/;>LicenseContentTable of Contents
+Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi;>Tomcat 
Connectorshttps://tomcat.apache.org/download-native.cgi;>Tomcat 
Nativehttps://tomcat.apache.org/download-taglibs.cgi;>Taglibshttps://archive.apache.org/dist/tomcat/;>A
 rchivesDocumentationTomcat 10.1 (alpha)Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat 7.0Tomcat ConnectorsTomcat Nativehttps://cwiki.apache.org/confluence/display/TOMCAT;>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg;>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ;>FAQMailing ListsBug 
DatabaseIRCGet 
InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ;>TranslationsToolsMediahttps://twitter.com/theapachetomcat;>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial;>YouTubehttps://blogs.apache.org/tomcat/;>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat;>SwagHeritagehttp://www.apache.org;>Apache HomeResourcesContactLegalhttps://www.apache.org/foundation/contributing.html;>Support 
Apachehttps://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thankshttp://www.apache.org/licenses/;>LicenseContentTable of Contents
 Apache Tomcat 7.x 
vulnerabilitiesFixed in 
Apache Tomcat 7.0.108Fixed in Apache Tomcat 
7.0.107Fixed in Apache 
Tomcat 7.0.105Fixed in 
Apache Tomcat 7.0.104Fixed in Apache Tomcat 
7.0.100Fixed in Apache 
Tomcat 7.0.99Fixed in 
Apache Tomcat 7.0.94Fixed 
in Apache Tomcat 7.0.91Fixed in Apache Tomcat 
7.0.90Fixed in Apache 
Tomcat 7.0.89Fixed in 
Apache T
 omcat 7.0.88Fixed in 
Apache Tomcat 7.0.85Fixed 
in Apache Tomcat 7.0.84Fixed in Apache Tomcat 
7.0.82Fixed in Apache 
Tomcat 7.0.81Fixed in 
Apache Tomcat 7.0.79Fixed 
in Apache Tomcat 7.0.78Fixed in Apache Tomcat 
7.0.77Fixed in Apache 
Tomcat 7.0.76Fixed in 
Apache Tomcat 7.0.75Fixed 
in Apache Tomcat 7.0.73Fixed in Apache Tomcat 
7.0.72Fixed in Apache To
 mcat 7.0.70Fixed in 
Apache Tomcat 7.0.68Fixed 
in Apache Tomcat 7.0.67Fixed in Apache Tomcat 
7.0.65Fixed in Apache 
Tomcat 7.0.59Fixed in 
Apache 

svn commit: r1890876 [7/7] - in /tomcat/site/trunk: ./ docs/ xdocs/

2021-06-17 Thread remm
Modified: tomcat/site/trunk/docs/source.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/source.html?rev=1890876=1890875=1890876=diff
==
--- tomcat/site/trunk/docs/source.html (original)
+++ tomcat/site/trunk/docs/source.html Thu Jun 17 13:32:17 2021
@@ -1,7 +1,7 @@
 
 Apache Tomcat - Repository 
Accesshttp://tomcat.apache.org/;>Apache 
Tomcathttps://www.apache.org/foundation/contributing.html; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png; class="support-asf" 
alt="Support Apache">http://www.apache.org/; target="_blank" 
class="pull-left">https://www.google.com/search; method="get">GOhttps://www.apache.org/events/current-event.html;>https://www.apache.org/events/current-event-234x60.png; alt="Next ASF 
event">
   Save the date!
-Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi;>Tomcat 
Connectorshttps://tomcat.apache.org/download-native.cgi;>Tomcat 
Nativehttps://tomcat.apache.org/download-taglibs.cgi;>Taglibshttps://archive.apache.org/dist/tomcat/;>A
 rchivesDocumentationTomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat 7.0Tomcat ConnectorsTomcat Nativehttps://cwiki.apache.org/confluence/display/TOMCAT;>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg;>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ;>FAQMailing ListsBug 
Databas
 eIRCGet 
InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ;>TranslationsToolsMediahttps://twitter.com/theapachetomcat;>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial;>YouTubehttps://blogs.apache.org/tomcat/;>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat;>SwagHeritagehttp://www.apache.org;>Apache HomeResourcesContactLegal<
 /li>https://www.apache.org/foundation/contributing.html;>Support 
Apachehttps://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thankshttp://www.apache.org/licenses/;>LicenseContentTable of Contents
+Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi;>Tomcat 
Connectorshttps://tomcat.apache.org/download-native.cgi;>Tomcat 
Nativehttps://tomcat.apache.org/download-taglibs.cgi;>Taglibshttps://archive.apache.org/dist/tomcat/;>A
 rchivesDocumentationTomcat 10.1 (alpha)Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat 7.0Tomcat ConnectorsTomcat Nativehttps://cwiki.apache.org/confluence/display/TOMCAT;>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg;>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ;>FAQMailing ListsBug 
DatabaseIRCGet 
InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ;>TranslationsToolsMediahttps://twitter.com/theapachetomcat;>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial;>YouTubehttps://blogs.apache.org/tomcat/;>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat;>SwagHeritagehttp://www.apache.org;>Apache HomeResourcesContactLegalhttps://www.apache.org/foundation/contributing.html;>Support 
Apachehttps://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thankshttp://www.apache.org/licenses/;>LicenseContentTable of Contents
 Version ControlGittomcat.gittomcat-connectors.gittomcat-native.gittomcat-training.gittomcat-taglibs-parent.gittomcat-taglibs-standard.gittomcat-taglibs-rdc.gittomcat-taglibs-site.gittomcat-maven-plugin.gitSubversion RepositoryLine endings
 Version Control
 

Modified: tomcat/site/trunk/docs/taglibs.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/taglibs.html?rev=1890876=1890875=1890876=diff
==
--- tomcat/site/trunk/docs/taglibs.html (original)
+++ tomcat/site/trunk/docs/taglibs.html Thu Jun 17 13:32:17 2021
@@ -1,7 +1,7 @@
 
 Apache Tomcat - Apache Taglibshttp://tomcat.apache.org/;>Apache 
Tomcathttps://www.apache.org/foundation/contributing.html; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png; class="support-asf" 
alt="Support Apache">http://www.a
 

svn commit: r1890876 [5/7] - in /tomcat/site/trunk: ./ docs/ xdocs/

2021-06-17 Thread remm
Modified: tomcat/site/trunk/docs/oldnews-2020.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2020.html?rev=1890876=1890875=1890876=diff
==
--- tomcat/site/trunk/docs/oldnews-2020.html (original)
+++ tomcat/site/trunk/docs/oldnews-2020.html Thu Jun 17 13:32:17 2021
@@ -1,7 +1,7 @@
 
 Apache Tomcat - Old news!http://tomcat.apache.org/;>Apache 
Tomcathttps://www.apache.org/foundation/contributing.html; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png; class="support-asf" 
alt="Support Apache">http://www.apache
 .org/" target="_blank" class="pull-left">https://www.google.com/search; method="get">GOhttps://www.apache.org/events/current-event.html;>https://www.apache.org/events/current-event-234x60.png; alt="Next ASF 
event">
   Save the date!
-Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi;>Tomcat 
Connectorshttps://tomcat.apache.org/download-native.cgi;>Tomcat 
Nativehttps://tomcat.apache.org/download-taglibs.cgi;>Taglibshttps://archive.apache.org/dist/tomcat/;>A
 rchivesDocumentationTomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat 7.0Tomcat ConnectorsTomcat Nativehttps://cwiki.apache.org/confluence/display/TOMCAT;>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg;>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ;>FAQMailing ListsBug 
Databas
 eIRCGet 
InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ;>TranslationsToolsMediahttps://twitter.com/theapachetomcat;>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial;>YouTubehttps://blogs.apache.org/tomcat/;>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat;>SwagHeritagehttp://www.apache.org;>Apache HomeResourcesContactLegal<
 /li>https://www.apache.org/foundation/contributing.html;>Support 
Apachehttps://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thankshttp://www.apache.org/licenses/;>LicenseContentOlder news
+Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi;>Tomcat 
Connectorshttps://tomcat.apache.org/download-native.cgi;>Tomcat 
Nativehttps://tomcat.apache.org/download-taglibs.cgi;>Taglibshttps://archive.apache.org/dist/tomcat/;>A
 rchivesDocumentationTomcat 10.1 (alpha)Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat 7.0Tomcat ConnectorsTomcat Nativehttps://cwiki.apache.org/confluence/display/TOMCAT;>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg;>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ;>FAQMailing ListsBug 
DatabaseIRCGet 
InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ;>TranslationsToolsMediahttps://twitter.com/theapachetomcat;>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial;>YouTubehttps://blogs.apache.org/tomcat/;>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat;>SwagHeritagehttp://www.apache.org;>Apache HomeResourcesContactLegalhttps://www.apache.org/foundation/contributing.html;>Support 
Apachehttps://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thankshttp://www.apache.org/licenses/;>LicenseContentOlder news
 Announcements from previous years can be found here:
 
   year 2020

Modified: tomcat/site/trunk/docs/oldnews.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews.html?rev=1890876=1890875=1890876=diff
==
--- tomcat/site/trunk/docs/oldnews.html (original)
+++ tomcat/site/trunk/docs/oldnews.html Thu Jun 17 13:32:17 2021
@@ -17,6 +17,29 @@
   year 2011
   year 2010
 
+2021-05-12 Tomcat 9.0.46 Released
+
+The Apache Tomcat Project is proud to announce the release of version 9.0.46
+of Apache Tomcat. This release implements specifications that are part of the
+Java EE 8 platform. The notable changes compared to 9.0.45 include:
+
+Ensure the correct escaping of attribute values and search filters in
+the JNDIRealm.
+HandlesTypes should include classes that use the specified annotation
+

svn commit: r1890876 [4/7] - in /tomcat/site/trunk: ./ docs/ xdocs/

2021-06-17 Thread remm
Modified: tomcat/site/trunk/docs/oldnews-2011.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2011.html?rev=1890876=1890875=1890876=diff
==
--- tomcat/site/trunk/docs/oldnews-2011.html (original)
+++ tomcat/site/trunk/docs/oldnews-2011.html Thu Jun 17 13:32:17 2021
@@ -1,7 +1,7 @@
 
 Apache Tomcat - Old news! - 2011http://tomcat.apache.org/;>Apache 
Tomcathttps://www.apache.org/foundation/contributing.html; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png; class="support-asf" 
alt="Support Apache">http://www
 .apache.org/" target="_blank" class="pull-left">https://www.google.com/search; method="get">GOhttps://www.apache.org/events/current-event.html;>https://www.apache.org/events/current-event-234x60.png; alt="Next ASF 
event">
   Save the date!
-Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi;>Tomcat 
Connectorshttps://tomcat.apache.org/download-native.cgi;>Tomcat 
Nativehttps://tomcat.apache.org/download-taglibs.cgi;>Taglibshttps://archive.apache.org/dist/tomcat/;>A
 rchivesDocumentationTomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat 7.0Tomcat ConnectorsTomcat Nativehttps://cwiki.apache.org/confluence/display/TOMCAT;>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg;>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ;>FAQMailing ListsBug 
Databas
 eIRCGet 
InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ;>TranslationsToolsMediahttps://twitter.com/theapachetomcat;>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial;>YouTubehttps://blogs.apache.org/tomcat/;>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat;>SwagHeritagehttp://www.apache.org;>Apache HomeResourcesContactLegal<
 /li>https://www.apache.org/foundation/contributing.html;>Support 
Apachehttps://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thankshttp://www.apache.org/licenses/;>LicenseContentOther news
+Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi;>Tomcat 
Connectorshttps://tomcat.apache.org/download-native.cgi;>Tomcat 
Nativehttps://tomcat.apache.org/download-taglibs.cgi;>Taglibshttps://archive.apache.org/dist/tomcat/;>A
 rchivesDocumentationTomcat 10.1 (alpha)Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat 7.0Tomcat ConnectorsTomcat Nativehttps://cwiki.apache.org/confluence/display/TOMCAT;>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg;>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ;>FAQMailing ListsBug 
DatabaseIRCGet 
InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ;>TranslationsToolsMediahttps://twitter.com/theapachetomcat;>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial;>YouTubehttps://blogs.apache.org/tomcat/;>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat;>SwagHeritagehttp://www.apache.org;>Apache HomeResourcesContactLegalhttps://www.apache.org/foundation/contributing.html;>Support 
Apachehttps://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thankshttp://www.apache.org/licenses/;>LicenseContentOther news
 Announcements from other years can be found here:
 
   year 2021

Modified: tomcat/site/trunk/docs/oldnews-2012.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2012.html?rev=1890876=1890875=1890876=diff
==
--- tomcat/site/trunk/docs/oldnews-2012.html (original)
+++ tomcat/site/trunk/docs/oldnews-2012.html Thu Jun 17 13:32:17 2021
@@ -1,7 +1,7 @@
 
 Apache Tomcat - Old news! - 2012http://tomcat.apache.org/;>Apache 
Tomcathttps://www.apache.org/foundation/contributing.html; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png; class="support-asf" 
alt="Support Apache">http://www
 .apache.org/" target="_blank" class="pull-left">https://www.google.com/search; 

svn commit: r1890876 [2/7] - in /tomcat/site/trunk: ./ docs/ xdocs/

2021-06-17 Thread remm
Modified: tomcat/site/trunk/docs/download-migration.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-migration.html?rev=1890876=1890875=1890876=diff
==
--- tomcat/site/trunk/docs/download-migration.html (original)
+++ tomcat/site/trunk/docs/download-migration.html Thu Jun 17 13:32:17 2021
@@ -1,7 +1,7 @@
 
 Apache Tomcat - Apache Tomcat Migration Tool for 
Jakarta EE Software Downloadshttp://tomcat.apache.org/;>Apache 
Tomcathttps://www.apache.org/foundation/contributing.html; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png; class="support-asf" 
alt="Support Apache">http://www.apach
 e.org/" target="_blank" class="pull-left">https://www.google.com/search; method="get">GOhttps://www.apache.org/events/current-event.html;>https://www.apache.org/events/current-event-234x60.png; alt="Next ASF 
event">
   Save the date!
-Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi;>Tomcat 
Connectorshttps://tomcat.apache.org/download-native.cgi;>Tomcat 
Nativehttps://tomcat.apache.org/download-taglibs.cgi;>Taglibshttps://archive.apache.org/dist/tomcat/;>A
 rchivesDocumentationTomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat 7.0Tomcat ConnectorsTomcat Nativehttps://cwiki.apache.org/confluence/display/TOMCAT;>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg;>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ;>FAQMailing ListsBug 
Databas
 eIRCGet 
InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ;>TranslationsToolsMediahttps://twitter.com/theapachetomcat;>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial;>YouTubehttps://blogs.apache.org/tomcat/;>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat;>SwagHeritagehttp://www.apache.org;>Apache HomeResourcesContactLegal<
 /li>https://www.apache.org/foundation/contributing.html;>Support 
Apachehttps://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thankshttp://www.apache.org/licenses/;>LicenseContentTomcat Migration 
Tool for Jakarta EE Software Downloads
+Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi;>Tomcat 
Connectorshttps://tomcat.apache.org/download-native.cgi;>Tomcat 
Nativehttps://tomcat.apache.org/download-taglibs.cgi;>Taglibshttps://archive.apache.org/dist/tomcat/;>A
 rchivesDocumentationTomcat 10.1 (alpha)Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat 7.0Tomcat ConnectorsTomcat Nativehttps://cwiki.apache.org/confluence/display/TOMCAT;>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg;>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ;>FAQMailing ListsBug 
DatabaseIRCGet 
InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ;>TranslationsToolsMediahttps://twitter.com/theapachetomcat;>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial;>YouTubehttps://blogs.apache.org/tomcat/;>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat;>SwagHeritagehttp://www.apache.org;>Apache HomeResourcesContactLegalhttps://www.apache.org/foundation/contributing.html;>Support 
Apachehttps://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thankshttp://www.apache.org/licenses/;>LicenseContentTomcat Migration 
Tool for Jakarta EE Software Downloads
 Welcome to the Apache Tomcat Migration tool for Jakarta
 EE software download page. This page provides download links for obtaining
 the latest version of Tomcat Migration Tool for Jakarta EE software, as 
well

Modified: tomcat/site/trunk/docs/download-native.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-native.html?rev=1890876=1890875=1890876=diff
==
--- tomcat/site/trunk/docs/download-native.html (original)
+++ tomcat/site/trunk/docs/download-native.html Thu Jun 17 13:32:17 2021
@@ -1,7 +1,7 @@
 
 Apache Tomcat - Tomcat Native 
Downloadshttp://tomcat.apache.org/;>Apache 

svn commit: r1890876 [1/7] - in /tomcat/site/trunk: ./ docs/ xdocs/

2021-06-17 Thread remm
Author: remm
Date: Thu Jun 17 13:32:17 2021
New Revision: 1890876

URL: http://svn.apache.org/viewvc?rev=1890876=rev
Log:
Update site for 9.0.48 release

Modified:
tomcat/site/trunk/build.properties.default
tomcat/site/trunk/docs/bugreport.html
tomcat/site/trunk/docs/ci.html
tomcat/site/trunk/docs/conference.html
tomcat/site/trunk/docs/contact.html
tomcat/site/trunk/docs/doap_Tomcat.rdf
tomcat/site/trunk/docs/download-70.html
tomcat/site/trunk/docs/download-80.html
tomcat/site/trunk/docs/download-90.html
tomcat/site/trunk/docs/download-connectors.html
tomcat/site/trunk/docs/download-migration.html
tomcat/site/trunk/docs/download-native.html
tomcat/site/trunk/docs/download-taglibs.html
tomcat/site/trunk/docs/findhelp.html
tomcat/site/trunk/docs/getinvolved.html
tomcat/site/trunk/docs/heritage.html
tomcat/site/trunk/docs/index.html
tomcat/site/trunk/docs/irc.html
tomcat/site/trunk/docs/legal.html
tomcat/site/trunk/docs/lists.html
tomcat/site/trunk/docs/maven-plugin.html
tomcat/site/trunk/docs/migration-6.html
tomcat/site/trunk/docs/migration-7.html
tomcat/site/trunk/docs/migration-8.html
tomcat/site/trunk/docs/migration-85.html
tomcat/site/trunk/docs/migration-9.html
tomcat/site/trunk/docs/migration.html
tomcat/site/trunk/docs/oldnews-2010.html
tomcat/site/trunk/docs/oldnews-2011.html
tomcat/site/trunk/docs/oldnews-2012.html
tomcat/site/trunk/docs/oldnews-2013.html
tomcat/site/trunk/docs/oldnews-2014.html
tomcat/site/trunk/docs/oldnews-2015.html
tomcat/site/trunk/docs/oldnews-2016.html
tomcat/site/trunk/docs/oldnews-2017.html
tomcat/site/trunk/docs/oldnews-2018.html
tomcat/site/trunk/docs/oldnews-2019.html
tomcat/site/trunk/docs/oldnews-2020.html
tomcat/site/trunk/docs/oldnews.html
tomcat/site/trunk/docs/presentations.html
tomcat/site/trunk/docs/resources.html
tomcat/site/trunk/docs/security-10.html
tomcat/site/trunk/docs/security-3.html
tomcat/site/trunk/docs/security-4.html
tomcat/site/trunk/docs/security-5.html
tomcat/site/trunk/docs/security-6.html
tomcat/site/trunk/docs/security-7.html
tomcat/site/trunk/docs/security-8.html
tomcat/site/trunk/docs/security-9.html
tomcat/site/trunk/docs/security-impact.html
tomcat/site/trunk/docs/security-jk.html
tomcat/site/trunk/docs/security-native.html
tomcat/site/trunk/docs/security-taglibs.html
tomcat/site/trunk/docs/security.html
tomcat/site/trunk/docs/source.html
tomcat/site/trunk/docs/taglibs.html
tomcat/site/trunk/docs/tomcat-55-eol.html
tomcat/site/trunk/docs/tomcat-60-eol.html
tomcat/site/trunk/docs/tomcat-70-eol.html
tomcat/site/trunk/docs/tomcat-80-eol.html
tomcat/site/trunk/docs/tools.html
tomcat/site/trunk/docs/whichversion.html
tomcat/site/trunk/docs/whoweare.html
tomcat/site/trunk/xdocs/doap_Tomcat.rdf
tomcat/site/trunk/xdocs/download-90.xml
tomcat/site/trunk/xdocs/index.xml
tomcat/site/trunk/xdocs/migration-9.xml
tomcat/site/trunk/xdocs/oldnews.xml
tomcat/site/trunk/xdocs/whichversion.xml

Modified: tomcat/site/trunk/build.properties.default
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/build.properties.default?rev=1890876=1890875=1890876=diff
==
--- tomcat/site/trunk/build.properties.default (original)
+++ tomcat/site/trunk/build.properties.default Thu Jun 17 13:32:17 2021
@@ -38,7 +38,7 @@ tomcat.loc=https://downloads.apache.org/
 # - Tomcat versions -
 tomcat7.0=7.0.109
 tomcat8.5=8.5.68
-tomcat9.0=9.0.46
+tomcat9.0=9.0.48
 tomcat10.0=10.0.7
 tomcat10.1=10.1.0-M1
 

Modified: tomcat/site/trunk/docs/bugreport.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/bugreport.html?rev=1890876=1890875=1890876=diff
==
--- tomcat/site/trunk/docs/bugreport.html (original)
+++ tomcat/site/trunk/docs/bugreport.html Thu Jun 17 13:32:17 2021
@@ -1,7 +1,7 @@
 
 Apache Tomcat - Reporting Bugshttp://tomcat.apache.org/;>Apache 
Tomcathttps://www.apache.org/foundation/contributing.html; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png; class="support-asf" 
alt="Support Apache">http://www.apache
 .org/" target="_blank" class="pull-left">https://www.google.com/search; method="get">GOhttps://www.apache.org/events/current-event.html;>https://www.apache.org/events/current-event-234x60.png; alt="Next ASF 
event">
   Save the date!
-Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for 

svn commit: r1890876 [3/7] - in /tomcat/site/trunk: ./ docs/ xdocs/

2021-06-17 Thread remm
Modified: tomcat/site/trunk/docs/maven-plugin.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/maven-plugin.html?rev=1890876=1890875=1890876=diff
==
--- tomcat/site/trunk/docs/maven-plugin.html (original)
+++ tomcat/site/trunk/docs/maven-plugin.html Thu Jun 17 13:32:17 2021
@@ -1,7 +1,7 @@
 
 Apache Tomcat - Tomcat Maven Pluginhttp://tomcat.apache.org/;>Apache 
Tomcathttps://www.apache.org/foundation/contributing.html; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png; class="support-asf" 
alt="Support Apache">http://www
 .apache.org/" target="_blank" class="pull-left">https://www.google.com/search; method="get">GOhttps://www.apache.org/events/current-event.html;>https://www.apache.org/events/current-event-234x60.png; alt="Next ASF 
event">
   Save the date!
-Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi;>Tomcat 
Connectorshttps://tomcat.apache.org/download-native.cgi;>Tomcat 
Nativehttps://tomcat.apache.org/download-taglibs.cgi;>Taglibshttps://archive.apache.org/dist/tomcat/;>A
 rchivesDocumentationTomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat 7.0Tomcat ConnectorsTomcat Nativehttps://cwiki.apache.org/confluence/display/TOMCAT;>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg;>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ;>FAQMailing ListsBug 
Databas
 eIRCGet 
InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ;>TranslationsToolsMediahttps://twitter.com/theapachetomcat;>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial;>YouTubehttps://blogs.apache.org/tomcat/;>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat;>SwagHeritagehttp://www.apache.org;>Apache HomeResourcesContactLegal<
 /li>https://www.apache.org/foundation/contributing.html;>Support 
Apachehttps://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thankshttp://www.apache.org/licenses/;>LicenseContentMaven Plugin
+Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi;>Tomcat 
Connectorshttps://tomcat.apache.org/download-native.cgi;>Tomcat 
Nativehttps://tomcat.apache.org/download-taglibs.cgi;>Taglibshttps://archive.apache.org/dist/tomcat/;>A
 rchivesDocumentationTomcat 10.1 (alpha)Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat 7.0Tomcat ConnectorsTomcat Nativehttps://cwiki.apache.org/confluence/display/TOMCAT;>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg;>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ;>FAQMailing ListsBug 
DatabaseIRCGet 
InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ;>TranslationsToolsMediahttps://twitter.com/theapachetomcat;>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial;>YouTubehttps://blogs.apache.org/tomcat/;>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat;>SwagHeritagehttp://www.apache.org;>Apache HomeResourcesContactLegalhttps://www.apache.org/foundation/contributing.html;>Support 
Apachehttps://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thankshttp://www.apache.org/licenses/;>LicenseContentMaven Plugin
 
   
 The Apache Tomcat Maven Plugin provides goals to manipulate WAR

Modified: tomcat/site/trunk/docs/migration-6.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-6.html?rev=1890876=1890875=1890876=diff
==
--- tomcat/site/trunk/docs/migration-6.html (original)
+++ tomcat/site/trunk/docs/migration-6.html Thu Jun 17 13:32:17 2021
@@ -1,7 +1,7 @@
 
 Apache Tomcat - Migration Guide - Tomcat 
6.0.xhttp://tomcat.apache.org/;>Apache 
Tomcathttps://www.apache.org/foundation/contributing.html; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png; class="support-asf" 
alt="Support Apache">http://www.apache.org/; target="_blank" class="pull-left">https://www.google.com/search; 

[Bug 65387] JSP compile error after upgrade 10.0.6 -> 10.0.7

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65387

Mark Thomas  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #3 from Mark Thomas  ---
The JSP provided to reproduce the issue has a number of included that have not
been provided. We can try and work-around this but we can't know if the content
that triggers this issue is in the included files or not.

Please provide a self-contained JSP (it can depend on JSTL if necessary) that
demonstrates the issue.

-- 
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 65385] Link to Maven Central is not valid

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65385

Mark Thomas  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Mark Thomas  ---
Thanks for reporting this.

Fixed in:
- 10.1.x for 10.1.0-M2 onwards
- 10.0.x for 10.0.8 onwards
- 9.0.x for 9.0.49 onwards
- 8.5.x for 8.5.69 onwards

-- 
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



[tomcat] branch 8.5.x updated: Fix BZ 65385 - correct link to Maven Central repo

2021-06-17 Thread markt
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/8.5.x by this push:
 new 6eb54b1  Fix BZ 65385 - correct link to Maven Central repo
6eb54b1 is described below

commit 6eb54b1be7fc65da2f3fb1ad896f93166c4029e1
Author: Mark Thomas 
AuthorDate: Thu Jun 17 14:11:33 2021 +0100

Fix BZ 65385 - correct link to Maven Central repo

https://bz.apache.org/bugzilla/show_bug.cgi?id=65385
---
 webapps/docs/changelog.xml  | 8 
 webapps/docs/maven-jars.xml | 6 +++---
 2 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 0d0070e..1dafa91 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -172,6 +172,14 @@
   
 
   
+  
+
+  
+65385: Correct the link in the documentation web application
+the Maven Central repository. (markt)
+  
+
+  
 
 
   
diff --git a/webapps/docs/maven-jars.xml b/webapps/docs/maven-jars.xml
index b5f79df..d8fb897 100644
--- a/webapps/docs/maven-jars.xml
+++ b/webapps/docs/maven-jars.xml
@@ -46,10 +46,10 @@
 
   
 Stable releases are published to the
-https://repo2.maven.org/maven2/org/apache/tomcat/;>Central
-Maven Repositories. The URL for this is
+https://repo1.maven.org/maven2/org/apache/tomcat/;>Maven
+Central Repository. The URL for this is
   
-  https://repo2.maven.org/maven2/org/apache/tomcat/
+  https://repo1.maven.org/maven2/org/apache/tomcat/
 
 
 

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



[tomcat] branch 9.0.x updated: Fix BZ 65385 - correct link to Maven Central repo

2021-06-17 Thread markt
This is an automated email from the ASF dual-hosted git repository.

markt 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 8538a06  Fix BZ 65385 - correct link to Maven Central repo
8538a06 is described below

commit 8538a06a73ac45e66b6799c9125dd8b5ac1a44e3
Author: Mark Thomas 
AuthorDate: Thu Jun 17 14:11:33 2021 +0100

Fix BZ 65385 - correct link to Maven Central repo

https://bz.apache.org/bugzilla/show_bug.cgi?id=65385
---
 webapps/docs/changelog.xml  | 8 
 webapps/docs/maven-jars.xml | 6 +++---
 2 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 9e06206..e9eeecd 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -172,6 +172,14 @@
   
 
   
+  
+
+  
+65385: Correct the link in the documentation web application
+the Maven Central repository. (markt)
+  
+
+  
   
 
   
diff --git a/webapps/docs/maven-jars.xml b/webapps/docs/maven-jars.xml
index b5f79df..d8fb897 100644
--- a/webapps/docs/maven-jars.xml
+++ b/webapps/docs/maven-jars.xml
@@ -46,10 +46,10 @@
 
   
 Stable releases are published to the
-https://repo2.maven.org/maven2/org/apache/tomcat/;>Central
-Maven Repositories. The URL for this is
+https://repo1.maven.org/maven2/org/apache/tomcat/;>Maven
+Central Repository. The URL for this is
   
-  https://repo2.maven.org/maven2/org/apache/tomcat/
+  https://repo1.maven.org/maven2/org/apache/tomcat/
 
 
 

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



[tomcat] branch 10.0.x updated: Fix BZ 65385 - correct link to Maven Central repo

2021-06-17 Thread markt
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 10.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/10.0.x by this push:
 new 6121e6c  Fix BZ 65385 - correct link to Maven Central repo
6121e6c is described below

commit 6121e6ce56860d58ec6e86649c7b1bc1d6636344
Author: Mark Thomas 
AuthorDate: Thu Jun 17 14:11:33 2021 +0100

Fix BZ 65385 - correct link to Maven Central repo

https://bz.apache.org/bugzilla/show_bug.cgi?id=65385
---
 webapps/docs/changelog.xml  | 8 
 webapps/docs/maven-jars.xml | 6 +++---
 2 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index a18fe7d..06c3315 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -172,6 +172,14 @@
   
 
   
+  
+
+  
+65385: Correct the link in the documentation web application
+the Maven Central repository. (markt)
+  
+
+  
   
 
   
diff --git a/webapps/docs/maven-jars.xml b/webapps/docs/maven-jars.xml
index b5f79df..d8fb897 100644
--- a/webapps/docs/maven-jars.xml
+++ b/webapps/docs/maven-jars.xml
@@ -46,10 +46,10 @@
 
   
 Stable releases are published to the
-https://repo2.maven.org/maven2/org/apache/tomcat/;>Central
-Maven Repositories. The URL for this is
+https://repo1.maven.org/maven2/org/apache/tomcat/;>Maven
+Central Repository. The URL for this is
   
-  https://repo2.maven.org/maven2/org/apache/tomcat/
+  https://repo1.maven.org/maven2/org/apache/tomcat/
 
 
 

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



[tomcat] branch main updated: Fix BZ 65385 - correct link to Maven Central repo

2021-06-17 Thread markt
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/main by this push:
 new c87fd5f  Fix BZ 65385 - correct link to Maven Central repo
c87fd5f is described below

commit c87fd5f134ef201d7af86d490f839411780d6258
Author: Mark Thomas 
AuthorDate: Thu Jun 17 14:11:33 2021 +0100

Fix BZ 65385 - correct link to Maven Central repo

https://bz.apache.org/bugzilla/show_bug.cgi?id=65385
---
 webapps/docs/changelog.xml  | 8 
 webapps/docs/maven-jars.xml | 6 +++---
 2 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 32f8e59..0b82644 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -172,6 +172,14 @@
   
 
   
+  
+
+  
+65385: Correct the link in the documentation web application
+the Maven Central repository. (markt)
+  
+
+  
   
 
   
diff --git a/webapps/docs/maven-jars.xml b/webapps/docs/maven-jars.xml
index b5f79df..d8fb897 100644
--- a/webapps/docs/maven-jars.xml
+++ b/webapps/docs/maven-jars.xml
@@ -46,10 +46,10 @@
 
   
 Stable releases are published to the
-https://repo2.maven.org/maven2/org/apache/tomcat/;>Central
-Maven Repositories. The URL for this is
+https://repo1.maven.org/maven2/org/apache/tomcat/;>Maven
+Central Repository. The URL for this is
   
-  https://repo2.maven.org/maven2/org/apache/tomcat/
+  https://repo1.maven.org/maven2/org/apache/tomcat/
 
 
 

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



[ANN] Apache Tomcat 10.0.7 available

2021-06-17 Thread Mark Thomas

The Apache Tomcat team announces the immediate availability of Apache
Tomcat 10.0.7.

This release is targeted at Jakarta EE 9.

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. This conversion is performed using the Apache Tomcat 
migration tool for Jakarta EE tool which is also available as a separate 
download for off-line use.


Apache Tomcat 10 is an open source software implementation of the
Jakarta Servlet, Jakarta Server Pages, Jakarta Expression Language,
Jakarta WebSocket, Jakarta Authentication and Jakarta Annotations
specifications.

The notable changes compared to 10.0.6 include:

- Improve robustness of HTTP/2 HPACK decoding

- Improvements to the handling of the Transfer-Encoding header

- Review code used to generate Java source from JSPs and tags and remove
  code found to be unnecessary.

Please refer to the change log for the complete list of changes:
http://tomcat.apache.org/tomcat-10.0-doc/changelog.html

Downloads:
http://tomcat.apache.org/download-10.cgi

Migration guides from Apache Tomcat 7.0.x, 8.5.x and 9.0.x:
http://tomcat.apache.org/migration.html

Enjoy!

- The Apache Tomcat team

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



svn commit: r1890874 - in /tomcat/site/trunk: ./ docs/tomcat-10.0-doc/ docs/tomcat-10.0-doc/annotationapi/ docs/tomcat-10.0-doc/annotationapi/jakarta/annotation/ docs/tomcat-10.0-doc/annotationapi/jak

2021-06-17 Thread markt
Author: markt
Date: Thu Jun 17 13:04:42 2021
New Revision: 1890874

URL: http://svn.apache.org/viewvc?rev=1890874=rev
Log:
Update docs for 10.0.7 release


[This commit notification would consist of 67 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: r1890875 - in /tomcat/site/trunk: docs/ xdocs/

2021-06-17 Thread markt
Author: markt
Date: Thu Jun 17 13:05:14 2021
New Revision: 1890875

URL: http://svn.apache.org/viewvc?rev=1890875=rev
Log:
Update site for 10.0.7 release

Modified:
tomcat/site/trunk/docs/doap_Tomcat.rdf
tomcat/site/trunk/docs/download-10.html
tomcat/site/trunk/docs/index.html
tomcat/site/trunk/docs/migration-10.html
tomcat/site/trunk/docs/oldnews.html
tomcat/site/trunk/docs/whichversion.html
tomcat/site/trunk/xdocs/doap_Tomcat.rdf
tomcat/site/trunk/xdocs/download-10.xml
tomcat/site/trunk/xdocs/index.xml
tomcat/site/trunk/xdocs/migration-10.xml
tomcat/site/trunk/xdocs/oldnews.xml
tomcat/site/trunk/xdocs/whichversion.xml

Modified: tomcat/site/trunk/docs/doap_Tomcat.rdf
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/doap_Tomcat.rdf?rev=1890875=1890874=1890875=diff
==
--- tomcat/site/trunk/docs/doap_Tomcat.rdf (original)
+++ tomcat/site/trunk/docs/doap_Tomcat.rdf Thu Jun 17 13:05:14 2021
@@ -60,8 +60,8 @@
 
   
 Latest Stable 10.0.x Release
-2021-05-12
-10.0.6
+2021-06-15
+10.0.7
   
 
 

Modified: tomcat/site/trunk/docs/download-10.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-10.html?rev=1890875=1890874=1890875=diff
==
--- tomcat/site/trunk/docs/download-10.html (original)
+++ tomcat/site/trunk/docs/download-10.html Thu Jun 17 13:05:14 2021
@@ -21,7 +21,7 @@
 
   Quick Navigation
 
-[define v]10.0.6[end]
+[define v]10.0.7[end]
 [define w]10.1.0-M1[end]
 https://downloads.apache.org/tomcat/tomcat-10/KEYS;>KEYS |
 [v] |

Modified: tomcat/site/trunk/docs/index.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/index.html?rev=1890875=1890874=1890875=diff
==
--- tomcat/site/trunk/docs/index.html (original)
+++ tomcat/site/trunk/docs/index.html Thu Jun 17 13:05:14 2021
@@ -36,6 +36,35 @@ wiki page.
 Apache Tomcat, Tomcat, Apache, the Apache feather, and the Apache Tomcat
 project logo are trademarks of the Apache Software Foundation.
 
+2021-06-15 Tomcat 10.0.7 Released
+
+The Apache Tomcat Project is proud to announce the release of version 10.0.7
+of Apache Tomcat. This release implements specifications that are part of the
+Jakarta EE 9 platform.
+Applications that run on Tomcat 9 and earlier will not run on Tomcat 10
+without changes. Java EE based 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. This conversion is performed using the
+https://github.com/apache/tomcat-jakartaee-migration;>Apache Tomcat
+migration tool for Jakarta EE tool which is also available as a separate
+https://tomcat.apache.org/download-migration.cgi;>download for 
off-line use.
+The notable changes in this release are:
+
+Improve robustness of HTTP/2 HPACK decoding
+Improvements to the handling of the Transfer-Encoding header
+Review code used to generate Java source from JSPs and tags and remove code
+found to be unnecessary.
+
+
+Full details of these changes, and all the other changes, are available in the
+Tomcat 10
+changelog.
+
+
+
+https://tomcat.apache.org/download-10.cgi;>Download
+
 2021-06-15 Tomcat 8.5.68 Released
 
 The Apache Tomcat Project is proud to announce the release of version 8.5.68
@@ -104,38 +133,6 @@ Tomcat Native. The notable changes since
 https://tomcat.apache.org/download-native.cgi;>Download |
 ChangeLog for 1.2.30
 
-2021-05-12 Tomcat 10.0.6 Released
-
-The Apache Tomcat Project is proud to announce the release of version 10.0.6
-of Apache Tomcat. This release implements specifications that are part of the
-Jakarta EE 9 platform.
-Applications that run on Tomcat 9 and earlier will not run on Tomcat 10
-without changes. Java EE based 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. This conversion is performed using the
-https://github.com/apache/tomcat-jakartaee-migration;>Apache Tomcat
-migration tool for Jakarta EE tool which is also available as a separate
-https://tomcat.apache.org/download-migration.cgi;>download for 
off-line use.
-The notable changes in this release are:
-
-Ensure the correct escaping of attribute values and search filters in
-the JNDIRealm.
-HandlesTypes should include classes that use the specified annotation
-types on fields or methods.
-Refactor the creation of WebSocket end point, decoder and encoder
-instances to be more IoC friendly. Instances are now created via the
-InstanceManager where possible. 
-
-
-Full details of these changes, and all 

[ANN] Apache Tomcat 10.1.0-M1 (alpha) available

2021-06-17 Thread Mark Thomas

The Apache Tomcat team announces the immediate availability of Apache
Tomcat 10.1.0-M1.

Apache Tomcat 10 is an open source software implementation of the
Jakarta Servlet, Jakarta Server Pages, Jakarta Expression Language,
Jakarta WebSocket, Jakarta Authentication and Jakarta Annotations
specifications.

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. This conversion is performed using the Apache Tomcat 
migration tool for Jakarta EE tool which is also available as a separate 
download for off-line use.


Apache Tomcat 10.1.0-M1 is the first milestone release of the 10.1.x
branch and has been made to provide users with early access to the new
features in Apache Tomcat 10.1.x so that they may provide feedback. The
notable changes compared to 10.0.x include:

- Remove code (but not the APR/Native Connector) previously marked for
  removal in 10.1.x The APR/Native Connector will almost certainly be
  removed in a future milestone.

- Align the Servlet API implementation with the current Servlet API
  development branch.

- Align the EL API implementation with the current El API development
  branch.

Please refer to the change log for the complete list of changes:
http://tomcat.apache.org/tomcat-10.1-doc/changelog.html

Downloads:
http://tomcat.apache.org/download-10.cgi

Migration guides from Apache Tomcat 7.0.x, 8.5.x and 9.0.x:
http://tomcat.apache.org/migration.html

Enjoy!

- The Apache Tomcat team

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



svn commit: r1890873 - in /tomcat/site/trunk/docs/tomcat-9.0-doc/api/org/apache: catalina/realm/ tomcat/util/net/

2021-06-17 Thread remm
Author: remm
Date: Thu Jun 17 12:13:44 2021
New Revision: 1890873

URL: http://svn.apache.org/viewvc?rev=1890873=rev
Log:
Upload docs for Tomcat 9.0.48

Added:

tomcat/site/trunk/docs/tomcat-9.0-doc/api/org/apache/catalina/realm/UserDatabaseRealm.UserDatabasePrincipal.html
Removed:

tomcat/site/trunk/docs/tomcat-9.0-doc/api/org/apache/tomcat/util/net/NioBlockingSelector.BlockPoller.RunnableCancel.html

tomcat/site/trunk/docs/tomcat-9.0-doc/api/org/apache/tomcat/util/net/NioBlockingSelector.BlockPoller.html

tomcat/site/trunk/docs/tomcat-9.0-doc/api/org/apache/tomcat/util/net/NioBlockingSelector.KeyReference.html

tomcat/site/trunk/docs/tomcat-9.0-doc/api/org/apache/tomcat/util/net/NioBlockingSelector.html

tomcat/site/trunk/docs/tomcat-9.0-doc/api/org/apache/tomcat/util/net/NioSelectorPool.html

Added: 
tomcat/site/trunk/docs/tomcat-9.0-doc/api/org/apache/catalina/realm/UserDatabaseRealm.UserDatabasePrincipal.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-9.0-doc/api/org/apache/catalina/realm/UserDatabaseRealm.UserDatabasePrincipal.html?rev=1890873=auto
==
--- 
tomcat/site/trunk/docs/tomcat-9.0-doc/api/org/apache/catalina/realm/UserDatabaseRealm.UserDatabasePrincipal.html
 (added)
+++ 
tomcat/site/trunk/docs/tomcat-9.0-doc/api/org/apache/catalina/realm/UserDatabaseRealm.UserDatabasePrincipal.html
 Thu Jun 17 12:13:44 2021
@@ -0,0 +1,348 @@
+http://www.w3.org/TR/html4/loose.dtd;>
+
+
+
+
+
+UserDatabaseRealm.UserDatabasePrincipal (Apache Tomcat 9.0.48 API 
Documentation)
+
+
+
+
+
+var methods = {"i0":10,"i1":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Tree
+Deprecated
+Index
+Help
+
+Apache Tomcat 9.0.48
+
+
+
+PrevClass
+NextClass
+
+
+Frames
+NoFrames
+
+
+AllClasses
+
+
+
+
+
+
+
+Summary:
+Nested|
+Field|
+Constr|
+Method
+
+
+Detail:
+Field|
+Constr|
+Method
+
+
+
+
+
+
+
+
+org.apache.catalina.realm
+Class 
UserDatabaseRealm.UserDatabasePrincipal
+
+
+
+https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.catalina.realm.GenericPrincipal
+
+
+org.apache.catalina.realm.UserDatabaseRealm.UserDatabasePrincipal
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io">Serializable, https://docs.oracle.com/javase/8/docs/api/java/security/Principal.html?is-external=true;
 title="class or interface in java.security">Principal, TomcatPrincipal
+
+
+Enclosing class:
+UserDatabaseRealm
+
+
+
+public final class UserDatabaseRealm.UserDatabasePrincipal
+extends GenericPrincipal
+
+See Also:
+Serialized
 Form
+
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+
+
+
+Fields inherited from classorg.apache.catalina.realm.GenericPrincipal
+gssCredential,
 loginContext,
 name,
 password,
 roles,
 userPrincipal
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor and Description
+
+
+UserDatabasePrincipal(Useruser)
+
+
+
+
+
+
+
+
+
+Method Summary
+
+All MethodsInstance MethodsConcrete Methods
+
+Modifier and Type
+Method and Description
+
+
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String[]
+getRoles()
+
+
+boolean
+hasRole(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringrole)
+Does the user represented by this Principal possess the 
specified role?
+
+
+
+
+
+
+
+Methods inherited from classorg.apache.catalina.realm.GenericPrincipal
+getGssCredential,
 getName,
 getPassword,
 getUserPrincipal,
 logout,
 setGssCredential,
 toString
+
+
+
+
+
+Methods inherited from classjava.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
+https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--;
 title="class or interface in java.lang">clone, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-;
 title="class or 

svn commit: r1890872 - in /tomcat/site/trunk: docs/download-10.html xdocs/download-10.xml

2021-06-17 Thread markt
Author: markt
Date: Thu Jun 17 12:12:06 2021
New Revision: 1890872

URL: http://svn.apache.org/viewvc?rev=1890872=rev
Log:
Fix copy/paste error

Modified:
tomcat/site/trunk/docs/download-10.html
tomcat/site/trunk/xdocs/download-10.xml

Modified: tomcat/site/trunk/docs/download-10.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-10.html?rev=1890872=1890871=1890872=diff
==
--- tomcat/site/trunk/docs/download-10.html (original)
+++ tomcat/site/trunk/docs/download-10.html Thu Jun 17 12:12:06 2021
@@ -24,7 +24,7 @@
 [define v]10.0.6[end]
 [define w]10.1.0-M1[end]
 https://downloads.apache.org/tomcat/tomcat-10/KEYS;>KEYS |
-[v] |
+[v] |
 [w] (alpha) |
 Browse |
 https://archive.apache.org/dist/tomcat/tomcat-10;>Archives

Modified: tomcat/site/trunk/xdocs/download-10.xml
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/download-10.xml?rev=1890872=1890871=1890872=diff
==
--- tomcat/site/trunk/xdocs/download-10.xml (original)
+++ tomcat/site/trunk/xdocs/download-10.xml Thu Jun 17 12:12:06 2021
@@ -34,7 +34,7 @@
 [define v]10.0.6[end]
 [define w]10.1.0-M1[end]
 https://downloads.apache.org/tomcat/tomcat-10/KEYS;>KEYS |
-[v] |
+[v] |
 [w] (alpha) |
 Browse |
 https://archive.apache.org/dist/tomcat/tomcat-10;>Archives



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



svn commit: r1890871 - in /tomcat/site/trunk: docs/download-10.html xdocs/download-10.xml

2021-06-17 Thread markt
Author: markt
Date: Thu Jun 17 12:10:57 2021
New Revision: 1890871

URL: http://svn.apache.org/viewvc?rev=1890871=rev
Log:
Fix copy/paste error

Modified:
tomcat/site/trunk/docs/download-10.html
tomcat/site/trunk/xdocs/download-10.xml

Modified: tomcat/site/trunk/docs/download-10.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-10.html?rev=1890871=1890870=1890871=diff
==
--- tomcat/site/trunk/docs/download-10.html (original)
+++ tomcat/site/trunk/docs/download-10.html Thu Jun 17 12:10:57 2021
@@ -22,7 +22,7 @@
   Quick Navigation
 
 [define v]10.0.6[end]
-[define v]10.1.0-M1[end]
+[define w]10.1.0-M1[end]
 https://downloads.apache.org/tomcat/tomcat-10/KEYS;>KEYS |
 [v] |
 [w] (alpha) |

Modified: tomcat/site/trunk/xdocs/download-10.xml
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/download-10.xml?rev=1890871=1890870=1890871=diff
==
--- tomcat/site/trunk/xdocs/download-10.xml (original)
+++ tomcat/site/trunk/xdocs/download-10.xml Thu Jun 17 12:10:57 2021
@@ -32,7 +32,7 @@
  Documentation for ezt.py: https://code.google.com/p/ezt/wiki/Syntax
 -->
 [define v]10.0.6[end]
-[define v]10.1.0-M1[end]
+[define w]10.1.0-M1[end]
 https://downloads.apache.org/tomcat/tomcat-10/KEYS;>KEYS |
 [v] |
 [w] (alpha) |



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



svn commit: r1890870 - in /tomcat/site/trunk/docs: download-10.html index.html whichversion.html

2021-06-17 Thread markt
Author: markt
Date: Thu Jun 17 11:59:08 2021
New Revision: 1890870

URL: http://svn.apache.org/viewvc?rev=1890870=rev
Log:
Regenerate site for 10.1.0-M1 release

Modified:
tomcat/site/trunk/docs/download-10.html
tomcat/site/trunk/docs/index.html
tomcat/site/trunk/docs/whichversion.html

Modified: tomcat/site/trunk/docs/download-10.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-10.html?rev=1890870=1890869=1890870=diff
==
--- tomcat/site/trunk/docs/download-10.html (original)
+++ tomcat/site/trunk/docs/download-10.html Thu Jun 17 11:59:08 2021
@@ -1,7 +1,7 @@
 
 Apache Tomcat - Apache Tomcat 10 Software 
Downloadshttp://tomcat.apache.org/;>Apache 
Tomcathttps://www.apache.org/foundation/contributing.html; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png; class="support-asf" 
alt="Support Apache">http://www.apache.org/; target="_blank" cla
 ss="pull-left">https://www.google.com/search; method="get">GOhttps://www.apache.org/events/current-event.html;>https://www.apache.org/events/current-event-234x60.png; alt="Next ASF 
event">
   Save the date!
-Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi;>Tomcat 
Connectorshttps://tomcat.apache.org/download-native.cgi;>Tomcat 
Nativehttps://tomcat.apache.org/download-taglibs.cgi;>Taglibshttps://archive.apache.org/dist/tomcat/;>A
 rchivesDocumentationTomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat 7.0Tomcat ConnectorsTomcat Nativehttps://cwiki.apache.org/confluence/display/TOMCAT;>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg;>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ;>FAQMailing ListsBug 
Databas
 eIRCGet 
InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ;>TranslationsToolsMediahttps://twitter.com/theapachetomcat;>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial;>YouTubehttps://blogs.apache.org/tomcat/;>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat;>SwagHeritagehttp://www.apache.org;>Apache HomeResourcesContactLegal<
 /li>https://www.apache.org/foundation/contributing.html;>Support 
Apachehttps://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thankshttp://www.apache.org/licenses/;>LicenseContentTomcat 10 Software Downloads
+Apache TomcatHomeTaglibsMaven 
PluginDownloadWhich version?https://tomcat.apache.org/download-10.cgi;>Tomcat 10https://tomcat.apache.org/download-90.cgi;>Tomcat 9https://tomcat.apache.org/download-80.cgi;>Tomcat 8https://tomcat.apache.org/download-70.cgi;>Tomcat 7https://tomcat.apache.org/download-migration.cgi;>Tomcat Migration Tool 
for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi;>Tomcat 
Connectorshttps://tomcat.apache.org/download-native.cgi;>Tomcat 
Nativehttps://tomcat.apache.org/download-taglibs.cgi;>Taglibshttps://archive.apache.org/dist/tomcat/;>A
 rchivesDocumentationTomcat 10.1 (alpha)Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat 7.0Tomcat ConnectorsTomcat Nativehttps://cwiki.apache.org/confluence/display/TOMCAT;>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg;>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ;>FAQMailing ListsBug 
DatabaseIRCGet 
InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ;>TranslationsToolsMediahttps://twitter.com/theapachetomcat;>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial;>YouTubehttps://blogs.apache.org/tomcat/;>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat;>SwagHeritagehttp://www.apache.org;>Apache HomeResourcesContactLegalhttps://www.apache.org/foundation/contributing.html;>Support 
Apachehttps://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thankshttp://www.apache.org/licenses/;>LicenseContentTomcat 10 Software Downloads
 Welcome to the Apache Tomcat 10.x software download
 page. This page provides download links for obtaining the latest version of
 Tomcat 10.0.x software, as well as links to the archives of older releases.
@@ -22,9 +22,11 @@
   Quick Navigation
 
 [define v]10.0.6[end]
+[define v]10.1.0-M1[end]
 https://downloads.apache.org/tomcat/tomcat-10/KEYS;>KEYS |
-[v] |
-Browse |
+[v] |
+[w] (alpha) |
+Browse |
 https://archive.apache.org/dist/tomcat/tomcat-10;>Archives

svn commit: r1890868 - in /tomcat/site/trunk/docs/tomcat-9.0-doc: ./ annotationapi/ annotationapi/javax/annotation/ annotationapi/javax/annotation/security/ annotationapi/javax/annotation/sql/ api/ ap

2021-06-17 Thread remm
Author: remm
Date: Thu Jun 17 11:58:01 2021
New Revision: 1890868

URL: http://svn.apache.org/viewvc?rev=1890868=rev
Log:
Upload docs for Tomcat 9.0.48


[This commit notification would consist of 72 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: r1890869 - in /tomcat/site/trunk/xdocs: index.xml whichversion.xml

2021-06-17 Thread markt
Author: markt
Date: Thu Jun 17 11:58:29 2021
New Revision: 1890869

URL: http://svn.apache.org/viewvc?rev=1890869=rev
Log:
Add 10.1.0-M1 release

Modified:
tomcat/site/trunk/xdocs/index.xml
tomcat/site/trunk/xdocs/whichversion.xml

Modified: tomcat/site/trunk/xdocs/index.xml
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/index.xml?rev=1890869=1890868=1890869=diff
==
--- tomcat/site/trunk/xdocs/index.xml (original)
+++ tomcat/site/trunk/xdocs/index.xml Thu Jun 17 11:58:29 2021
@@ -77,6 +77,40 @@ changelog.
 
 
 
+
+
+The Apache Tomcat Project is proud to announce the release of version 10.1.0-M1
+of Apache Tomcat. This release is a milestone release and is targeted at 
Jakarta
+EE 10.
+Applications that run on Tomcat 9 and earlier will not run on Tomcat 10
+without changes. Java EE based 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. This conversion is performed using the
+https://github.com/apache/tomcat-jakartaee-migration;>Apache Tomcat
+migration tool for Jakarta EE tool which is also available as a separate
+download for off-line use.
+The notable changes in this release are:
+
+Remove code (but not the APR/Native Connector) previously marked for 
removal
+in 10.1.x The APR/Native Connector will almost certainly be removed in a
+future milestone.
+Align the Servlet API implementation with the current Servlet API
+development branch.
+Align the EL API implementation with the current El API development branch.
+
+
+
+Full details of these changes, and all the other changes, are available in the
+Tomcat 10.1
+(alpha) changelog.
+
+
+
+Download
+
+
+
 
 
 The Apache Tomcat Project is proud to announce the release of version 1.2.30 of

Modified: tomcat/site/trunk/xdocs/whichversion.xml
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/whichversion.xml?rev=1890869=1890868=1890869=diff
==
--- tomcat/site/trunk/xdocs/whichversion.xml (original)
+++ tomcat/site/trunk/xdocs/whichversion.xml Thu Jun 17 11:58:29 2021
@@ -39,7 +39,7 @@ specifications and the respective Ap
   TBD
   TBD
   10.1.x
-  None
+  10.1.0-M1 (alpha)
   8 and later
 
 



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



svn commit: r1890867 - in /tomcat/site/trunk/xdocs: download-10.xml stylesheets/project.xml

2021-06-17 Thread markt
Author: markt
Date: Thu Jun 17 11:45:42 2021
New Revision: 1890867

URL: http://svn.apache.org/viewvc?rev=1890867=rev
Log:
Add link to 10.1.x docs. Add 10.1.x to Tomcat 10 download page.

Modified:
tomcat/site/trunk/xdocs/download-10.xml
tomcat/site/trunk/xdocs/stylesheets/project.xml

Modified: tomcat/site/trunk/xdocs/download-10.xml
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/download-10.xml?rev=1890867=1890866=1890867=diff
==
--- tomcat/site/trunk/xdocs/download-10.xml (original)
+++ tomcat/site/trunk/xdocs/download-10.xml Thu Jun 17 11:45:42 2021
@@ -32,9 +32,11 @@
  Documentation for ezt.py: https://code.google.com/p/ezt/wiki/Syntax
 -->
 [define v]10.0.6[end]
+[define v]10.1.0-M1[end]
 https://downloads.apache.org/tomcat/tomcat-10/KEYS;>KEYS |
-[v] |
-Browse |
+[v] |
+[w] (alpha) |
+Browse |
 https://archive.apache.org/dist/tomcat/tomcat-10;>Archives
   
   
@@ -77,18 +79,17 @@
   
   
 
-  
-  
-  
-  Please see the 
-  README
-  file for packaging information.  It explains what every distribution 
contains.
-  
+  
+  
+Please see the 
+README
+file for packaging information.  It explains what every distribution 
contains.
+
 
-  
-  
-Core:
-  
+
+
+  Core:
+
   
 zip 
 (https://downloads.apache.org/tomcat/tomcat-10/v[v]/bin/apache-tomcat-[v].zip.asc;>pgp,
 
@@ -114,19 +115,19 @@
 (https://downloads.apache.org/tomcat/tomcat-10/v[v]/bin/apache-tomcat-[v].exe.asc;>pgp,
 
 https://downloads.apache.org/tomcat/tomcat-10/v[v]/bin/apache-tomcat-[v].exe.sha512;>sha512)
   
-  
-
-Full documentation:
-  
+
+  
+  Full documentation:
+
   
 tar.gz 
 (https://downloads.apache.org/tomcat/tomcat-10/v[v]/bin/apache-tomcat-[v]-fulldocs.tar.gz.asc;>pgp,
 
 https://downloads.apache.org/tomcat/tomcat-10/v[v]/bin/apache-tomcat-[v]-fulldocs.tar.gz.sha512;>sha512)
   
-  
-
-Deployer:
-  
+
+  
+  Deployer:
+
   
 zip 
 (https://downloads.apache.org/tomcat/tomcat-10/v[v]/bin/apache-tomcat-[v]-deployer.zip.asc;>pgp,
  
@@ -137,10 +138,10 @@
 (https://downloads.apache.org/tomcat/tomcat-10/v[v]/bin/apache-tomcat-[v]-deployer.tar.gz.asc;>pgp,
 
 https://downloads.apache.org/tomcat/tomcat-10/v[v]/bin/apache-tomcat-[v]-deployer.tar.gz.sha512;>sha512)
   
-  
-
-Embedded:
-  
+
+  
+  Embedded:
+
   
 tar.gz 
 (https://downloads.apache.org/tomcat/tomcat-10/v[v]/bin/embed/apache-tomcat-[v]-embed.tar.gz.asc;>pgp,
 
@@ -151,14 +152,14 @@
 (https://downloads.apache.org/tomcat/tomcat-10/v[v]/bin/embed/apache-tomcat-[v]-embed.zip.asc;>pgp,
 
 https://downloads.apache.org/tomcat/tomcat-10/v[v]/bin/embed/apache-tomcat-[v]-embed.zip.sha512;>sha512)
   
-  
-
-  
-  
-  
+
+  
+
+
+
  
-  
-  
+
+
   
 
   tar.gz 
@@ -171,11 +172,110 @@
   https://downloads.apache.org/tomcat/tomcat-10/v[v]/src/apache-tomcat-[v]-src.zip.sha512;>sha512)
 
   
-  
-  
+
+
+
+  
+  
+
+  
+  
+Please see the 
+README
+file for packaging information.  It explains what every distribution 
contains.
+
+
+
+
+  Core:
+
+  
+zip 
+(https://downloads.apache.org/tomcat/tomcat-10/v[w]/bin/apache-tomcat-[w].zip.asc;>pgp,
 
+https://downloads.apache.org/tomcat/tomcat-10/v[w]/bin/apache-tomcat-[w].zip.sha512;>sha512)
+  
+  
+tar.gz 
+(https://downloads.apache.org/tomcat/tomcat-10/v[w]/bin/apache-tomcat-[w].tar.gz.asc;>pgp,
 
+https://downloads.apache.org/tomcat/tomcat-10/v[w]/bin/apache-tomcat-[w].tar.gz.sha512;>sha512)
+  
+  
+32-bit Windows zip 
+(https://downloads.apache.org/tomcat/tomcat-10/v[w]/bin/apache-tomcat-[w]-windows-x86.zip.asc;>pgp,
 
+https://downloads.apache.org/tomcat/tomcat-10/v[w]/bin/apache-tomcat-[w]-windows-x86.zip.sha512;>sha512)
+  
+  
+64-bit Windows zip 
+(https://downloads.apache.org/tomcat/tomcat-10/v[w]/bin/apache-tomcat-[w]-windows-x64.zip.asc;>pgp,
 
+https://downloads.apache.org/tomcat/tomcat-10/v[w]/bin/apache-tomcat-[w]-windows-x64.zip.sha512;>sha512)
+  
+  
+32-bit/64-bit Windows Service Installer 
+

svn commit: r1890866 - in /tomcat/site/trunk: build.properties.default build.xml

2021-06-17 Thread markt
Author: markt
Date: Thu Jun 17 11:22:07 2021
New Revision: 1890866

URL: http://svn.apache.org/viewvc?rev=1890866=rev
Log:
Add 10.1.x support. Small renaming to better align with other version 
references.

Modified:
tomcat/site/trunk/build.properties.default
tomcat/site/trunk/build.xml

Modified: tomcat/site/trunk/build.properties.default
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/build.properties.default?rev=1890866=1890865=1890866=diff
==
--- tomcat/site/trunk/build.properties.default (original)
+++ tomcat/site/trunk/build.properties.default Thu Jun 17 11:22:07 2021
@@ -36,23 +36,27 @@ tomcat.loc=https://downloads.apache.org/
 
 
 # - Tomcat versions -
-tomcat70=7.0.109
-tomcat85=8.5.68
-tomcat90=9.0.46
-tomcat100=10.0.6
+tomcat7.0=7.0.109
+tomcat8.5=8.5.68
+tomcat9.0=9.0.46
+tomcat10.0=10.0.6
+tomcat10.1=10.1.0-M1
 
 # - Download destination -
 tomcat-site-docs.home=${base.path}/tomcat-site-docs/
 
 # - Tomcat Docs locations -
-tomcat70.loc=${tomcat.loc}/tomcat-7/v${tomcat70}/bin/apache-tomcat-${tomcat70}-fulldocs.tar.gz
 
-tomcat70.home=${tomcat-site-docs.home}/${tomcat70}
+tomcat7.0.loc=${tomcat.loc}/tomcat-7/v${tomcat7.0}/bin/apache-tomcat-${tomcat7.0}-fulldocs.tar.gz
 
+tomcat7.0.home=${tomcat-site-docs.home}/${tomcat7.0}
 
-tomcat85.loc=${tomcat.loc}/tomcat-8/v${tomcat85}/bin/apache-tomcat-${tomcat85}-fulldocs.tar.gz
 
-tomcat85.home=${tomcat-site-docs.home}/${tomcat85}
+tomcat8.5.loc=${tomcat.loc}/tomcat-8/v${tomcat8.5}/bin/apache-tomcat-${tomcat8.5}-fulldocs.tar.gz
 
+tomcat8.5.home=${tomcat-site-docs.home}/${tomcat8.5}
 
-tomcat90.loc=${tomcat.loc}/tomcat-9/v${tomcat90}/bin/apache-tomcat-${tomcat90}-fulldocs.tar.gz
 
-tomcat90.home=${tomcat-site-docs.home}/${tomcat90}
+tomcat9.0.loc=${tomcat.loc}/tomcat-9/v${tomcat9.0}/bin/apache-tomcat-${tomcat9.0}-fulldocs.tar.gz
 
+tomcat9.0.home=${tomcat-site-docs.home}/${tomcat9.0}
 
-tomcat100.loc=${tomcat.loc}/tomcat-10/v${tomcat100}/bin/apache-tomcat-${tomcat100}-fulldocs.tar.gz
 
-tomcat100.home=${tomcat-site-docs.home}/${tomcat100}
+tomcat10.0.loc=${tomcat.loc}/tomcat-10/v${tomcat10.0}/bin/apache-tomcat-${tomcat10.0}-fulldocs.tar.gz
 
+tomcat10.0.home=${tomcat-site-docs.home}/${tomcat10.0}
+
+tomcat10.1.loc=${tomcat.loc}/tomcat-10/v${tomcat10.1}/bin/apache-tomcat-${tomcat10.1}-fulldocs.tar.gz
 
+tomcat10.1.home=${tomcat-site-docs.home}/${tomcat10.1}

Modified: tomcat/site/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/build.xml?rev=1890866=1890865=1890866=diff
==
--- tomcat/site/trunk/build.xml (original)
+++ tomcat/site/trunk/build.xml Thu Jun 17 11:22:07 2021
@@ -91,15 +91,15 @@
 
   
 
-  
 
 
 
-  
-  
-  
+  
+  
+  
 
 
 
@@ -107,21 +107,21 @@
 
 
 
-  
+  
 
   
 
   
 
-  
 
 
 
-  
-  
-  
+  
+  
+  
 
 
 
@@ -129,21 +129,21 @@
 
 
 
-  
+  
 
   
 
   
 
-  
 
 
 
-  
-  
-  
+  
+  
+  
 
 
 
@@ -151,21 +151,21 @@
 
 
 
-  
+  
 
   
 
   
 
-  
 
-   
+
 
-  
-  
-  
+  
+  
+  
 
 
 
@@ -173,7 +173,29 @@
 
 
 
-  
+  
+
+  
+
+  
+
+  
+
+
+
+  
+  
+  
+
+
+
+
+
+
+
+  
 
   
 



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



svn commit: r1890865 - in /tomcat/site/trunk/docs/tomcat-10.1-doc: ./ WEB-INF/ annotationapi/ annotationapi/jakarta/ annotationapi/jakarta/annotation/ annotationapi/jakarta/annotation/security/ annota

2021-06-17 Thread markt
Author: markt
Date: Thu Jun 17 11:19:41 2021
New Revision: 1890865

URL: http://svn.apache.org/viewvc?rev=1890865=rev
Log:
Upload docs for Tomcat 10.1.0-M1


[This commit notification would consist of 790 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



[Bug 60030] Run away CPU with JSSE / OpenSSL with IE8

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60030

Konstantin Kolinko  changed:

   What|Removed |Added

URL|https://199.192.18.229  |

-- 
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 65387] JSP compile error after upgrade 10.0.6 -> 10.0.7

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65387

--- Comment #2 from Mark Thomas  ---
Looks like my clean-up of unused code may have been too aggressive despite all
the unit tests that were added. Thanks for the example JSP that triggers this.
We'll take a look.

-- 
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 65387] JSP compile error after upgrade 10.0.6 -> 10.0.7

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65387

--- Comment #1 from qeepcologne  ---
Created attachment 37902
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=37902=edit
login form

-- 
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 65387] New: JSP compile error after upgrade 10.0.6 -> 10.0.7

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65387

Bug ID: 65387
   Summary: JSP compile error after upgrade 10.0.6 -> 10.0.7
   Product: Tomcat 10
   Version: unspecified
  Hardware: PC
OS: Linux
Status: NEW
  Severity: normal
  Priority: P2
 Component: Jasper
  Assignee: dev@tomcat.apache.org
  Reporter: bernd.wah...@k2interactive.de
  Target Milestone: --

After upgrade tomcat (via docker image: tomcat:10.0.6-jdk16-openjdk-slim-buster
/ tomcat:10.0.7-jdk16-openjdk-slim-buster) the following error occurs:
(note: this is javax webapp in webapps-javaee folder).

org.apache.jasper.JasperException: Unable to compile class for JSP: 

An error occurred at line: [509] in the generated java file:
[/usr/local/tomcat/work/Catalina/localhost/qeepmaster-new/org/apache/jsp/WEB_002dINF/jsp/LoginForm_jsp.java]
out cannot be resolved to a variable

An error occurred at line: [543] in the generated java file:
[/usr/local/tomcat/work/Catalina/localhost/qeepmaster-new/org/apache/jsp/WEB_002dINF/jsp/LoginForm_jsp.java]
out cannot be resolved to a variable

Stacktrace:
   
org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:102)
   
org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:213)
   
org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:482)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:397)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:367)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:351)
   
org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:603)
   
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:399)
   
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:380)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:328)
jakarta.servlet.http.HttpServlet.service(HttpServlet.java:774)
org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
   
org.springframework.web.servlet.view.InternalResourceView.renderMergedOutputModel(InternalResourceView.java:171)
   
org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:316)
   
org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1396)
   
org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1141)
   
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1080)
   
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963)
   
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
   
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)
jakarta.servlet.http.HttpServlet.service(HttpServlet.java:665)
   
org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)
jakarta.servlet.http.HttpServlet.service(HttpServlet.java:774)
org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
   
org.apache.catalina.filters.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:109)
   
org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:204)
   
org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183)
   
org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358)
   
org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271)

-- 
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 60030] Run away CPU with JSSE / OpenSSL with IE8

2021-06-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60030

--- Comment #6 from ria wijandare  ---
Situs poker ini merupakan situs https://199.192.30.191 online terbesar di
Indonesia. Ikutin terus keseruan bermain game https://199.192.31.242 dengan
ribuan bonus rule yang telah tersedia, web ini merupakan agen judi online yang 
di lengkapi dengan sistem enkripsi aman serta langsung Dari Persian server
utama rule yang sudah terjamin kecepatan aksesnya. Hanya dengan deposit Rp
100.000 anda sudah bisa bermain poker online disini dengan eight permainan rule
seperti Texas, ceme, ceme keliling, domino, capsa susun, blackjack, omaha dan
super10. 


https://199.192.27.100

-- 
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