Re: [VOTE] Release Apache Tomcat 8.0.33
Hi, 2016-03-25 1:34 GMT+02:00 Anthony Biacco : > > On Fri, Mar 18, 2016 at 2:55 PM, Mark Thomas wrote: > > > The proposed Apache Tomcat 8.0.33 release is now available for voting. > > > > The main changes since 8.0.32 are: > > > > - Correct a false positive warning for ThreadLocal related memory > > leaks when the key class but not the value class has been loaded > > by the web application class loader. > > > > - Improve the performance of > > javax.servlet.jsp.el.ScopedAttributeELResolver when resolving > > attributes that do not exist. > > > > - Update the packaged version of the Tomcat Native Library to 1.2.5 > > to pick up the Windows binaries that are based on OpenSSL 1.0.2g > > and APR 1.5.1. > > > > > this included the memory fix relating to the "Cannot upgrade past Tomcat 6 > due to massive memory increase" thread on the users list, yeah? > Yes Regards, Violeta > -Tony
[Bug 57583] Performance issue evaluating EL in custom tags (tagx) due to inefficient calls to java.lang.Class.forName()
https://bz.apache.org/bugzilla/show_bug.cgi?id=57583 --- Comment #10 from Henning Brune --- I just verified the improvements made in v8.0.33 in our application: Running on a current build the execution time on the relevant JSP parts is reduced to 1/10th. -- 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: r1736607 - in /tomcat/trunk: java/org/apache/catalina/core/AsyncContextImpl.java webapps/docs/changelog.xml
Author: remm Date: Fri Mar 25 16:24:07 2016 New Revision: 1736607 URL: http://svn.apache.org/viewvc?rev=1736607&view=rev Log: 59213: Async dispatches should use a wrapped request rather than the base one. Modified: tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java?rev=1736607&r1=1736606&r2=1736607&view=diff == --- tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java (original) +++ tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java Fri Mar 25 16:24:07 2016 @@ -191,7 +191,7 @@ public class AsyncContextImpl implements @Override public void dispatch(String path) { check(); -dispatch(request.getServletContext(),path); +dispatch(getRequest().getServletContext(), path); } @Override Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1736607&r1=1736606&r2=1736607&view=diff == --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Fri Mar 25 16:24:07 2016 @@ -67,6 +67,10 @@ o.a.catalina.loader.WebappClassLoaderBase.getResourceAsStream (violetagg) + +59213: Async dispatches should be based off a wrapped request. +(remm) + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1736608 - in /tomcat/tc8.5.x/trunk: java/org/apache/catalina/core/AsyncContextImpl.java webapps/docs/changelog.xml
Author: remm Date: Fri Mar 25 16:24:20 2016 New Revision: 1736608 URL: http://svn.apache.org/viewvc?rev=1736608&view=rev Log: 59213: Async dispatches should use a wrapped request rather than the base one. Modified: tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java URL: http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java?rev=1736608&r1=1736607&r2=1736608&view=diff == --- tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java (original) +++ tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java Fri Mar 25 16:24:20 2016 @@ -191,7 +191,7 @@ public class AsyncContextImpl implements @Override public void dispatch(String path) { check(); -dispatch(request.getServletContext(),path); +dispatch(getRequest().getServletContext(), path); } @Override Modified: tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml?rev=1736608&r1=1736607&r2=1736608&view=diff == --- tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml Fri Mar 25 16:24:20 2016 @@ -62,6 +62,10 @@ o.a.catalina.loader.WebappClassLoaderBase.getResourceAsStream (violetagg) + +59213: Async dispatches should be based off a wrapped request. +(remm) + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1736610 - in /tomcat/tc7.0.x/trunk: java/org/apache/catalina/core/AsyncContextImpl.java webapps/docs/changelog.xml
Author: remm Date: Fri Mar 25 16:24:38 2016 New Revision: 1736610 URL: http://svn.apache.org/viewvc?rev=1736610&view=rev Log: 59213: Async dispatches should use a wrapped request rather than the base one. Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java?rev=1736610&r1=1736609&r2=1736610&view=diff == --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java Fri Mar 25 16:24:38 2016 @@ -223,7 +223,7 @@ public class AsyncContextImpl implements @Override public void dispatch(String path) { check(); -dispatch(request.getServletContext(),path); +dispatch(getRequest().getServletContext(), path); } @Override Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1736610&r1=1736609&r2=1736610&view=diff == --- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Fri Mar 25 16:24:38 2016 @@ -137,6 +137,10 @@ o.a.tomcat.util.http.ServerCookie. Patch is provided by Kyohei Nakamura. (violetagg) + +59213: Async dispatches should be based off a wrapped request. +(remm) + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1736609 - in /tomcat/tc8.0.x/trunk: java/org/apache/catalina/core/AsyncContextImpl.java webapps/docs/changelog.xml
Author: remm Date: Fri Mar 25 16:24:29 2016 New Revision: 1736609 URL: http://svn.apache.org/viewvc?rev=1736609&view=rev Log: 59213: Async dispatches should use a wrapped request rather than the base one. Modified: tomcat/tc8.0.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc8.0.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java URL: http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java?rev=1736609&r1=1736608&r2=1736609&view=diff == --- tomcat/tc8.0.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java (original) +++ tomcat/tc8.0.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java Fri Mar 25 16:24:29 2016 @@ -191,7 +191,7 @@ public class AsyncContextImpl implements @Override public void dispatch(String path) { check(); -dispatch(request.getServletContext(),path); +dispatch(getRequest().getServletContext(), path); } @Override Modified: tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml?rev=1736609&r1=1736608&r2=1736609&view=diff == --- tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml Fri Mar 25 16:24:29 2016 @@ -57,6 +57,10 @@ o.a.tomcat.util.http.ServerCookie. Patch is provided by Kyohei Nakamura. (violetagg) + +59213: Async dispatches should be based off a wrapped request. +(remm) + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 59213] Async dispatch not working after cross-context forward
https://bz.apache.org/bugzilla/show_bug.cgi?id=59213 Remy Maucherat changed: What|Removed |Added Status|NEW |RESOLVED OS||All Resolution|--- |FIXED --- Comment #1 from Remy Maucherat --- Ok, the dispatch should use the specified wrapped request. The fix will be in 7.0.69, 8.0.34, 8.5.1, and 9M5. -- 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
buildbot success in on tomcat-7-trunk
The Buildbot has detected a restored build on builder tomcat-7-trunk while building . Full details are available at: https://ci.apache.org/builders/tomcat-7-trunk/builds/366 Buildbot URL: https://ci.apache.org/ Buildslave for this Build: silvanus_ubuntu Build Reason: The AnyBranchScheduler scheduler named 'on-tomcat-7-commit' triggered this build Build Source Stamp: [branch tomcat/tc7.0.x/trunk] 1736610 Blamelist: remm Build succeeded! Sincerely, -The Buildbot - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1736646 - in /tomcat/trunk: java/org/apache/catalina/core/AsyncContextImpl.java java/org/apache/catalina/core/AsyncListenerWrapper.java test/org/apache/catalina/core/TestAsyncContextImpl.
Author: violetagg Date: Fri Mar 25 19:33:14 2016 New Revision: 1736646 URL: http://svn.apache.org/viewvc?rev=1736646&view=rev Log: Ensure that ServletRequest and ServletResponse provided during AsyncListener registration are made available via AsyncEvent.getSuppliedRequest and AsyncEvent.getSuppliedResponse Modified: tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java tomcat/trunk/java/org/apache/catalina/core/AsyncListenerWrapper.java tomcat/trunk/test/org/apache/catalina/core/TestAsyncContextImpl.java tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java?rev=1736646&r1=1736645&r2=1736646&view=diff == --- tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java (original) +++ tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java Fri Mar 25 19:33:14 2016 @@ -272,6 +272,8 @@ public class AsyncContextImpl implements check(); AsyncListenerWrapper wrapper = new AsyncListenerWrapper(); wrapper.setListener(listener); +wrapper.setServletRequest(servletRequest); +wrapper.setServletResponse(servletResponse); listeners.add(wrapper); } Modified: tomcat/trunk/java/org/apache/catalina/core/AsyncListenerWrapper.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/AsyncListenerWrapper.java?rev=1736646&r1=1736645&r2=1736646&view=diff == --- tomcat/trunk/java/org/apache/catalina/core/AsyncListenerWrapper.java (original) +++ tomcat/trunk/java/org/apache/catalina/core/AsyncListenerWrapper.java Fri Mar 25 19:33:14 2016 @@ -20,29 +20,33 @@ import java.io.IOException; import javax.servlet.AsyncEvent; import javax.servlet.AsyncListener; +import javax.servlet.ServletRequest; +import javax.servlet.ServletResponse; public class AsyncListenerWrapper { private AsyncListener listener = null; +private ServletRequest servletRequest = null; +private ServletResponse servletResponse = null; public void fireOnStartAsync(AsyncEvent event) throws IOException { -listener.onStartAsync(event); +listener.onStartAsync(customizeEvent(event)); } public void fireOnComplete(AsyncEvent event) throws IOException { -listener.onComplete(event); +listener.onComplete(customizeEvent(event)); } public void fireOnTimeout(AsyncEvent event) throws IOException { -listener.onTimeout(event); +listener.onTimeout(customizeEvent(event)); } public void fireOnError(AsyncEvent event) throws IOException { -listener.onError(event); +listener.onError(customizeEvent(event)); } @@ -56,4 +60,22 @@ public class AsyncListenerWrapper { } +public void setServletRequest(ServletRequest servletRequest) { +this.servletRequest = servletRequest; +} + + +public void setServletResponse(ServletResponse servletResponse) { +this.servletResponse = servletResponse; +} + + +private AsyncEvent customizeEvent(AsyncEvent event) { +if (servletRequest != null && servletResponse != null) { +return new AsyncEvent(event.getAsyncContext(), servletRequest, servletResponse, +event.getThrowable()); +} else { +return event; +} +} } Modified: tomcat/trunk/test/org/apache/catalina/core/TestAsyncContextImpl.java URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/catalina/core/TestAsyncContextImpl.java?rev=1736646&r1=1736645&r2=1736646&view=diff == --- tomcat/trunk/test/org/apache/catalina/core/TestAsyncContextImpl.java (original) +++ tomcat/trunk/test/org/apache/catalina/core/TestAsyncContextImpl.java Fri Mar 25 19:33:14 2016 @@ -52,11 +52,15 @@ import org.junit.Test; import org.apache.catalina.Context; import org.apache.catalina.Wrapper; +import org.apache.catalina.connector.Request; +import org.apache.catalina.connector.Response; import org.apache.catalina.startup.Tomcat; import org.apache.catalina.startup.TomcatBaseTest; import org.apache.catalina.valves.TesterAccessLogValve; +import org.apache.tomcat.unittest.TesterContext; import org.apache.tomcat.util.buf.ByteChunk; import org.apache.tomcat.util.descriptor.web.ErrorPage; +import org.easymock.EasyMock; public class TestAsyncContextImpl extends TomcatBaseTest { @@ -2358,4 +2362,49 @@ public class TestAsyncContextImpl extend } } + + +@Test +public void testAsyncListenerSupplyRequestResponse() { +final ServletRequest servletRequest = EasyMock.createMock(ServletRequest.class); +final ServletResponse servl
svn commit: r1736648 - in /tomcat/tc8.5.x/trunk: ./ java/org/apache/catalina/core/AsyncContextImpl.java java/org/apache/catalina/core/AsyncListenerWrapper.java test/org/apache/catalina/core/TestAsyncC
Author: violetagg Date: Fri Mar 25 19:42:02 2016 New Revision: 1736648 URL: http://svn.apache.org/viewvc?rev=1736648&view=rev Log: Merged revision 1736646 from tomcat/trunk: Ensure that ServletRequest and ServletResponse provided during AsyncListener registration are made available via AsyncEvent.getSuppliedRequest and AsyncEvent.getSuppliedResponse Modified: tomcat/tc8.5.x/trunk/ (props changed) tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncListenerWrapper.java tomcat/tc8.5.x/trunk/test/org/apache/catalina/core/TestAsyncContextImpl.java tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml Propchange: tomcat/tc8.5.x/trunk/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Mar 25 19:42:02 2016 @@ -1 +1 @@ -/tomcat/trunk:1734785,1734799,1734845,1734928,1735041,1735044,1735480,1735577,1735597,1735599-1735600,1735615,1736145,1736162,1736209,1736280,1736297,1736299,1736489 +/tomcat/trunk:1734785,1734799,1734845,1734928,1735041,1735044,1735480,1735577,1735597,1735599-1735600,1735615,1736145,1736162,1736209,1736280,1736297,1736299,1736489,1736646 Modified: tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java URL: http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java?rev=1736648&r1=1736647&r2=1736648&view=diff == --- tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java (original) +++ tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java Fri Mar 25 19:42:02 2016 @@ -272,6 +272,8 @@ public class AsyncContextImpl implements check(); AsyncListenerWrapper wrapper = new AsyncListenerWrapper(); wrapper.setListener(listener); +wrapper.setServletRequest(servletRequest); +wrapper.setServletResponse(servletResponse); listeners.add(wrapper); } Modified: tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncListenerWrapper.java URL: http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncListenerWrapper.java?rev=1736648&r1=1736647&r2=1736648&view=diff == --- tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncListenerWrapper.java (original) +++ tomcat/tc8.5.x/trunk/java/org/apache/catalina/core/AsyncListenerWrapper.java Fri Mar 25 19:42:02 2016 @@ -20,29 +20,33 @@ import java.io.IOException; import javax.servlet.AsyncEvent; import javax.servlet.AsyncListener; +import javax.servlet.ServletRequest; +import javax.servlet.ServletResponse; public class AsyncListenerWrapper { private AsyncListener listener = null; +private ServletRequest servletRequest = null; +private ServletResponse servletResponse = null; public void fireOnStartAsync(AsyncEvent event) throws IOException { -listener.onStartAsync(event); +listener.onStartAsync(customizeEvent(event)); } public void fireOnComplete(AsyncEvent event) throws IOException { -listener.onComplete(event); +listener.onComplete(customizeEvent(event)); } public void fireOnTimeout(AsyncEvent event) throws IOException { -listener.onTimeout(event); +listener.onTimeout(customizeEvent(event)); } public void fireOnError(AsyncEvent event) throws IOException { -listener.onError(event); +listener.onError(customizeEvent(event)); } @@ -56,4 +60,22 @@ public class AsyncListenerWrapper { } +public void setServletRequest(ServletRequest servletRequest) { +this.servletRequest = servletRequest; +} + + +public void setServletResponse(ServletResponse servletResponse) { +this.servletResponse = servletResponse; +} + + +private AsyncEvent customizeEvent(AsyncEvent event) { +if (servletRequest != null && servletResponse != null) { +return new AsyncEvent(event.getAsyncContext(), servletRequest, servletResponse, +event.getThrowable()); +} else { +return event; +} +} } Modified: tomcat/tc8.5.x/trunk/test/org/apache/catalina/core/TestAsyncContextImpl.java URL: http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/test/org/apache/catalina/core/TestAsyncContextImpl.java?rev=1736648&r1=1736647&r2=1736648&view=diff == --- tomcat/tc8.5.x/trunk/test/org/apache/catalina/core/TestAsyncContextImpl.java (original) +++ tomcat/tc8.5.x/trunk/test/org/apache/catalina/core/TestAsyncContextImpl.java Fri Mar 25 19:42:02 2016 @@ -52,11 +52,15 @@ import org.junit.Test; import org.apache.catalina.Context; import org.apache.catalina.Wrapper; +import org.apache.
svn commit: r1736649 - in /tomcat/tc8.0.x/trunk: ./ java/org/apache/catalina/core/AsyncContextImpl.java java/org/apache/catalina/core/AsyncListenerWrapper.java test/org/apache/catalina/core/TestAsyncC
Author: violetagg Date: Fri Mar 25 19:59:16 2016 New Revision: 1736649 URL: http://svn.apache.org/viewvc?rev=1736649&view=rev Log: Merged revision 1736646 from tomcat/trunk: Ensure that ServletRequest and ServletResponse provided during AsyncListener registration are made available via AsyncEvent.getSuppliedRequest and AsyncEvent.getSuppliedResponse Modified: tomcat/tc8.0.x/trunk/ (props changed) tomcat/tc8.0.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java tomcat/tc8.0.x/trunk/java/org/apache/catalina/core/AsyncListenerWrapper.java tomcat/tc8.0.x/trunk/test/org/apache/catalina/core/TestAsyncContextImpl.java tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml Propchange: tomcat/tc8.0.x/trunk/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Mar 25 19:59:16 2016 @@ -1,2 +1,2 @@ /tomcat/tc8.5.x/trunk:1735042 -/tomcat/trunk:1636524,1637156,1637176,1637188,1637331,1637684,1637695,1637890,1637892,1638720-1638725,1639653,1640010,1640083-1640084,1640088,1640275,1640322,1640347,1640361,1640365,1640403,1640410,1640652,1640655-1640658,1640688,1640700-1640883,1640903,1640976,1640978,1641000,1641026,1641038-1641039,1641051-1641052,1641058,1641064,1641300,1641369,1641374,1641380,1641486,1641634,1641656-1641692,1641704,1641707-1641718,1641720-1641722,1641735,1641981,1642233,1642280,1642554,1642564,1642595,1642606,1642668,1642679,1642697,1642699,1642766,1643002,1643045,1643054-1643055,1643066,1643121,1643128,1643206,1643209-1643210,1643216,1643249,1643270,1643283,1643309-1643310,1643323,1643365-1643366,1643370-1643371,1643465,1643474,1643536,1643570,1643634,1643649,1643651,1643654,1643675,1643731,1643733-1643734,1643761,1643766,1643814,1643937,1643963,1644017,1644169,1644201-1644203,1644321,1644323,1644516,1644523,1644529,1644535,1644730,1644768,1644784-1644785,1644790,1644793,1644815,1644884,1644886 ,1644890,1644892,1644910,1644924,1644929-1644930,1644935,1644989,1645011,1645247,1645355,1645357-1645358,1645455,1645465,1645469,1645471,1645473,1645475,1645486-1645488,1645626,1645641,1645685,1645743,1645763,1645951-1645953,1645955,1645993,1646098-1646106,1646178,1646220,1646302,1646304,1646420,1646470-1646471,1646476,1646559,1646717-1646723,1646773,1647026,1647042,1647530,1647655,1648304,1648815,1648907,1649973,1650081,1650365,1651116,1651120,1651280,1651470,1652938,1652970,1653041,1653471,1653550,1653574,1653797,1653815-1653816,1653819,1653840,1653857,1653888,1653972,1654013,1654030,1654050,1654123,1654148,1654159,1654513,1654515,1654517,1654522,1654524,1654725,1654735,1654766,1654785,1654851-1654852,1654978,1655122-1655124,1655126-1655127,1655129-1655130,1655132-1655133,1655312,1655351,1655438,1655441,1655454,168,1656087,1656299,1656319,1656331,1656345,1656350,1656590,1656648-1656650,1656657,1657041,1657054,1657374,1657492,1657510,1657565,1657580,1657584,1657586,1657589,1657 592,1657607,1657609,1657682,1657907,1658207,1658734,1658781,1658790,1658799,1658802,1658804,1658833,1658840,1658966,1659043,1659053,1659059,1659174,1659184,1659188-1659189,1659216,1659263,1659293,1659304,1659306-1659307,1659382,1659384,1659428,1659471,1659486,1659505,1659516,1659521,1659524,1659559,1659562,1659803,1659806,1659814,1659833,1659862,1659905,1659919,1659948,1659967,1659983-1659984,1660060,1660074,1660077,1660133,1660168,1660331-1660332,1660353,1660358,1660924,1661386,1661770,1661867,1661972,1661990,1662200,1662308-1662309,1662548,1662614,1662696,1662736,1662985,1662988-1662989,1663264,1663277,1663298,1663534,1663562,1663676,1663715,1663754,1663768,1663772,1663781,1663893,1663995,1664143,1664163,1664174,1664301,1664317,1664347,1664657,1664659,1664710,1664863-1664864,1664866,1665085,1665292,1665559,1665653,1665661,1665672,1665694,1665697,1665736,1665779,1665976-1665977,1665980-1665981,1665985-1665986,1665989,1665998,1666004,1666008,1666013,1666017,1666024,1666116,1666386-1 666387,1666494,1666496,1666552,1666569,1666579,137,149,1666757,1666966,1666972,1666985,1666995,1666997,1667292,1667402,1667406,1667546,1667615,1667630,1667636,1667688,1667764,1667871,1668026,1668135,1668193,1668593,1668596,1668630,1668639,1668843,1669353,1669370,1669451,1669800,1669838,1669876,1669882,1670394,1670433,1670591,1670598-1670600,1670610,1670631,1670719,1670724,1670726,1670730,1670940,1671112,1672272,1672284,1673754,1674294,1675461,1675486,1675594,1675830,1676231,1676250-1676251,1676364,1676381,1676393,1676479,1676525,1676552,1676615,1676630,1676634,1676721,1676926,1676943,1677140,1677802,1678011,1678162,1678174,1678339,1678426-1678427,1678694,1678701,1679534,1679708,1679710,1679716,1680034,1680246,1681056,1681123,1681138,1681280,1681283,1681286,1681450,1681697,1681699,1681701,1681729,1681770,1681779,1681793,1681807,1681837-1681838,1681854,1681862,1681958,1682028,1682033,1682311,1682315,1682317,1682320,1682324,1682330,1682842,1684172,1684366,1684383,1684526-168452 7,1684549-1684550,1685556,1685591,1685739,1685744,1685772,168581
svn commit: r1736655 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/catalina/core/AsyncContextImpl.java java/org/apache/catalina/core/AsyncListenerWrapper.java test/org/apache/catalina/core/TestAsyncC
Author: violetagg Date: Fri Mar 25 20:35:52 2016 New Revision: 1736655 URL: http://svn.apache.org/viewvc?rev=1736655&view=rev Log: Merged revision 1736646 from tomcat/trunk: Ensure that ServletRequest and ServletResponse provided during AsyncListener registration are made available via AsyncEvent.getSuppliedRequest and AsyncEvent.getSuppliedResponse Modified: tomcat/tc7.0.x/trunk/ (props changed) tomcat/tc7.0.x/trunk/java/org/apache/catalina/core/AsyncContextImpl.java tomcat/tc7.0.x/trunk/java/org/apache/catalina/core/AsyncListenerWrapper.java tomcat/tc7.0.x/trunk/test/org/apache/catalina/core/TestAsyncContextImpl.java tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Propchange: tomcat/tc7.0.x/trunk/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Mar 25 20:35:52 2016 @@ -1,3 +1,3 @@ /tomcat/tc8.0.x/trunk:1636525,1637336,1637685,1637709,1638726,1640089,1640276,1640349,1640363,1640366,1640642,1640672,1640674,1640689,1640884,1641001,1641065,1641067,1641375,1641638,1641723,1641726,1641729-1641730,1641736,1641988,1642669-1642670,1642698,1642701,1643205,1643215,1643217,1643230,1643232,1643273,1643285,1643329-1643330,1643511,1643513,1643521,1643539,1643571,1643581-1643582,1643635,1643655,1643738,1643964,1644018,1644333,1644954,1644992,1645014,1645360,1645456,1645627,1645642,1645686,1645903-1645904,1645908-1645909,1645913,1645920,1646458,1646460-1646462,1646735,1646738-1646741,1646744,1646746,1646748-1646755,1646757,1646759-1646760,1647043,1648816,1651420-1651422,1651844,1652926,1652939-1652940,1652973,1653798,1653817,1653841,1654042,1654161,1654736,1654767,1654787,1656592,1659907,1662986,1663265,1663278,1663325,1663535,1663567,1663679,1663997,1664175,1664321,1664872,1665061,1665086,1666027,1666395,1666503,1666506,1666560,1666570,1666581,1666759,1666967,1666988,1667553 -1667555,1667558,1667617,1667633,1667637,1667747,1667767,1667873,1668028,1668137,1668634,1669432,1669801,1669840,1669895-1669896,1670398,1670435,1670592,1670605-1670607,1670609,1670632,1670720,1670725,1670727,1670731,1671114,1672273,1672285,1673759,1674220,1674295,1675469,1675488,1675595,1675831,1676232,1676367-1676369,1676382,1676394,1676483,1676556,1676635,1678178,1679536,1679988,1680256,1681124,1681182,1681730,1681840,1681864,1681869,1682010,1682034,1682047,1682052-1682053,1682062,1682064,1682070,1682312,1682325,1682331,1682386,1684367,1684385,1685759,1685774,1685827,1685892,1687341,1688904,1689358,1689657,1689921,1692850,1693093,1693108,1693324,1694060,1694115,1694291,1694427,1694431,1694503,1694549,1694789,1694873,1694881,1695356,1695372,1695823-1695825,1696200,1696281,1696379,1696468,1700608,1700871,1700897,1700978,1701094,1701124,1701608,1701668,1701676,1701766,1701944,1702248,1702252,1702314,1702390,1702723,1702725,1702728,1702730,1702733,1702735,1702737,1702739,1702742,1702 744,1702748,1702751,1702754,1702758,1702760,1702763,1702766,1708779,1708782,1708806,1709314,1709670,1710347,1710442,1710448,1710490,1710574,1710578,1712226,1712229,1712235,1712255,1712618,1712649,1712655,1712860,1712899,1712903,1712906,1712913,1712926,1712975,1713185,1713262,1713287,1713613,1713621,1713872,1713976,1713994,1713998,1714004,1714013,1714059,1714538,1714580,1715189,1715207,1715544,1715549,1715637,1715639-1715645,1715667,1715683,1715978,1715981,1716216-1716217,1716355,1716414,1716421,1717208-1717209,1717257,1717283,1717288,1717291,1717421,1717517,1717529,1718797,1718840-1718843,1719348,1719357-1719358,1719400,1719491,1719737,1720235,1720396,1720442,1720446,1720450,1720463,1720658-1720660,1720756,1720816,1721813,1721818,1721831,1721861,1721867,1721882,1722523,1722527,1722800,1722926,1722941,1722997,1723130,1723440,1723488,1723890,1724434,1724674,1724792,1724803,1724902,1725128,1725131,1725154,1725167,1725911,1725921,1725929,1725963-1725965,1725970,1725974,1726171-1726173,1 726175,1726179-1726182,1726190-1726191,1726195-1726200,1726203,1726226,1726576,1726630,1726992,1727029,1727037,1727671,1727676,1727900,1728028,1728092,1728439,1728449,1729186,1729362,1731009,1731303,1731867,1731872,1731874,1731876,1731885,1731947,1731955,1731959,1731977,1731984,1732360,1732490,1732672,1732902,1733166,1733603,1733619,1733735,1733752,1733764,1733915,1733941,1733964,1734115,1734133,1734261,1734421,1734531,1736286 /tomcat/tc8.5.x/trunk:1735579 -/tomcat/trunk:1156115-1157160,1157162-1157859,1157862-1157942,1157945-1160347,1160349-1163716,1163718-1166689,1166691-1174340,1174342-1175596,1175598-1175611,1175613-1175932,1175934-1177783,1177785-1177980,1178006-1180720,1180722-1183094,1183096-1187753,1187755,1187775,1187801,1187806,1187809,1187826-1188312,1188314-1188401,1188646-1188840,1188842-1190176,1190178-1195223,1195225-1195953,1195955,1195957-1201238,1201240-1203345,1203347-1206623,1206625-1208046,1208073,1208096,1208114,1208145,1208772,1209194-1212125,1212127-1220291,1220293,1220295-1221321,1221323-1222329,1222332-1222401,1222405-1222795,1222850-1222950,1222969-1
svn commit: r1736657 - in /tomcat/site/trunk: build.properties.default xdocs/download-80.xml xdocs/index.xml xdocs/migration-8.xml xdocs/oldnews.xml xdocs/whichversion.xml
Author: markt Date: Fri Mar 25 20:39:29 2016 New Revision: 1736657 URL: http://svn.apache.org/viewvc?rev=1736657&view=rev Log: Update for 8.0.33 release Modified: tomcat/site/trunk/build.properties.default tomcat/site/trunk/xdocs/download-80.xml tomcat/site/trunk/xdocs/index.xml tomcat/site/trunk/xdocs/migration-8.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=1736657&r1=1736656&r2=1736657&view=diff == --- tomcat/site/trunk/build.properties.default (original) +++ tomcat/site/trunk/build.properties.default Fri Mar 25 20:39:29 2016 @@ -38,7 +38,7 @@ tomcat.loc=http://www.apache.org/dist/to # - Tomcat versions - tomcat60=6.0.45 tomcat70=7.0.68 -tomcat80=8.0.32 +tomcat80=8.0.33 tomcat90=9.0.0.M4 # - Download destination - Modified: tomcat/site/trunk/xdocs/download-80.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/download-80.xml?rev=1736657&r1=1736656&r2=1736657&view=diff == --- tomcat/site/trunk/xdocs/download-80.xml (original) +++ tomcat/site/trunk/xdocs/download-80.xml Fri Mar 25 20:39:29 2016 @@ -18,7 +18,7 @@ Define variable to hold the current version number. Documentation for ezt.py: https://code.google.com/p/ezt/wiki/Syntax --> -[define v]8.0.32[end] +[define v]8.0.33[end] https://www.apache.org/dist/tomcat/tomcat-8/KEYS";>KEYS | [v] | Browse | Modified: tomcat/site/trunk/xdocs/index.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/index.xml?rev=1736657&r1=1736656&r2=1736657&view=diff == --- tomcat/site/trunk/xdocs/index.xml (original) +++ tomcat/site/trunk/xdocs/index.xml Fri Mar 25 20:39:29 2016 @@ -38,6 +38,35 @@ project logo are trademarks of the Apach + + +The Apache Tomcat Project is proud to announce the release of version 8.0.33 +of Apache Tomcat. Apache Tomcat 8.0.33 includes fixes for issues identified in +8.0.32 as well as other enhancements and changes. The notable changes since +8.0.32 include: + +Correct a false positive warning for ThreadLocal related memory +leaks when the key class but not the value class has been loaded +by the web application class loader. +Improve the performance of +javax.servlet.jsp.el.ScopedAttributeELResolver when resolving +attributes that do not exist. +Update the packaged version of the Tomcat Native Library to 1.2.5 +to pick up the Windows binaries that are based on OpenSSL 1.0.2g +and APR 1.5.1. + + + +Full details of these changes, and all the other changes, are available in the +Tomcat 8 +changelog. + + + +Download + + + The Apache Tomcat Project is proud to announce the release of version 9.0.0.M4 @@ -123,31 +152,6 @@ Apache Tomcat 6.0.44. The notable change - - -The Apache Tomcat Project is proud to announce the release of version 8.0.32 -of Apache Tomcat. Apache Tomcat 8.0.32 includes fixes for issues identified in -8.0.30 as well as other enhancements and changes. The notable changes since -8.0.30 include: - -Restore the default for mapperContextRootRedirectEnabled to -true -Update the packaged version of the Tomcat Native Library to 1.2.4 to pick up -the Windows binaries that are based on OpenSSL 1.0.2e -Expand session attribute filtering on load/unload to all managers - - - -Full details of these changes, and all the other changes, are available in the -Tomcat 8 -changelog. - - - -Download - - - The Apache Tomcat Project is proud to announce the release of version 1.1.34 of Modified: tomcat/site/trunk/xdocs/migration-8.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/migration-8.xml?rev=1736657&r1=1736656&r2=1736657&view=diff == --- tomcat/site/trunk/xdocs/migration-8.xml (original) +++ tomcat/site/trunk/xdocs/migration-8.xml Fri Mar 25 20:39:29 2016 @@ -325,7 +325,8 @@ of Apache Tomcat. "8.0.28":"1707356", "8.0.29":"1715254", "8.0.30":"1717548", - "8.0.32":"1728180" + "8.0.32":"1728180", + "8.0.33":"1735674" }; formSubmit.action = "http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/"; + @@ -375,8 +376,9 @@ of Apache Tomcat. 8.0.27 8.0.28 8.0.29 -8.0.30 -8.0.32 +8.0.30 +8.0.32 +8.0.33 , new version: 8.0.0-RC1 @@ -404,7 +406,8 @@ of Apache Tomcat. 8.0.28 8.0.29 8.0.30 -8.0.32 +8.0.32 +8.0.33 trunk (unreleased) Modified: tomcat/site/trunk/xdocs/oldnews.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/oldnews.xml?rev=1736
svn commit: r1736656 - in /tomcat/site/trunk/docs: ./ tomcat-8.0-doc/ tomcat-8.0-doc/api/ tomcat-8.0-doc/api/org/apache/catalina/ tomcat-8.0-doc/api/org/apache/catalina/ant/ tomcat-8.0-doc/api/org/apa
Author: markt Date: Fri Mar 25 20:39:03 2016 New Revision: 1736656 URL: http://svn.apache.org/viewvc?rev=1736656&view=rev Log: Update 8.0.x docs for 8.0.33 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: r1736658 - in /tomcat/site/trunk: docs/index.html xdocs/index.xml
Author: markt Date: Fri Mar 25 20:40:24 2016 New Revision: 1736658 URL: http://svn.apache.org/viewvc?rev=1736658&view=rev Log: Fix missed version update Modified: tomcat/site/trunk/docs/index.html tomcat/site/trunk/xdocs/index.xml Modified: tomcat/site/trunk/docs/index.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/index.html?rev=1736658&r1=1736657&r2=1736658&view=diff == --- tomcat/site/trunk/docs/index.html (original) +++ tomcat/site/trunk/docs/index.html Fri Mar 25 20:40:24 2016 @@ -269,7 +269,7 @@ of Apache Tomcat. Apache Tomcat 8.0.33 i Full details of these changes, and all the other changes, are available in the -Tomcat 8 +Tomcat 8 changelog. Modified: tomcat/site/trunk/xdocs/index.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/index.xml?rev=1736658&r1=1736657&r2=1736658&view=diff == --- tomcat/site/trunk/xdocs/index.xml (original) +++ tomcat/site/trunk/xdocs/index.xml Fri Mar 25 20:40:24 2016 @@ -58,7 +58,7 @@ of Apache Tomcat. Apache Tomcat 8.0.33 i Full details of these changes, and all the other changes, are available in the -Tomcat 8 +Tomcat 8 changelog. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1736659 - in /tomcat/site/trunk: docs/ xdocs/stylesheets/
Author: markt Date: Fri Mar 25 20:45:49 2016 New Revision: 1736659 URL: http://svn.apache.org/viewvc?rev=1736659&view=rev Log: 8.5.x Prep: Modify download link names Modified: tomcat/site/trunk/docs/bugreport.html tomcat/site/trunk/docs/ci.html tomcat/site/trunk/docs/contact.html tomcat/site/trunk/docs/download-60.html 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-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-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.html tomcat/site/trunk/docs/presentations.html tomcat/site/trunk/docs/resources.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/svn.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/tools.html tomcat/site/trunk/docs/whichversion.html tomcat/site/trunk/docs/whoweare.html tomcat/site/trunk/xdocs/stylesheets/project.xml Modified: tomcat/site/trunk/docs/bugreport.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/bugreport.html?rev=1736659&r1=1736658&r2=1736659&view=diff == --- tomcat/site/trunk/docs/bugreport.html (original) +++ tomcat/site/trunk/docs/bugreport.html Fri Mar 25 20:45:49 2016 @@ -58,16 +58,16 @@ Which version? -Tomcat 9.0 +Tomcat 9 -Tomcat 8.0 +Tomcat 8 -Tomcat 7.0 +Tomcat 7 -Tomcat 6.0 +Tomcat 6 Tomcat Connectors Modified: tomcat/site/trunk/docs/ci.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/ci.html?rev=1736659&r1=1736658&r2=1736659&view=diff == --- tomcat/site/trunk/docs/ci.html (original) +++ tomcat/site/trunk/docs/ci.html Fri Mar 25 20:45:49 2016 @@ -57,16 +57,16 @@ Which version? -Tomcat 9.0 +Tomcat 9 -Tomcat 8.0 +Tomcat 8 -Tomcat 7.0 +Tomcat 7 -Tomcat 6.0 +Tomcat 6 Tomcat Connectors Modified: tomcat/site/trunk/docs/contact.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/contact.html?rev=1736659&r1=1736658&r2=1736659&view=diff == --- tomcat/site/trunk/docs/contact.html (original) +++ tomcat/site/trunk/docs/contact.html Fri Mar 25 20:45:49 2016 @@ -57,16 +57,16 @@ Which version? -Tomcat 9.0 +Tomcat 9 -Tomcat 8.0 +Tomcat 8 -Tomcat 7.0 +Tomcat 7 -Tomcat 6.0 +Tomcat 6 Tomcat Connectors Modified: tomcat/site/trunk/docs/download-60.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-60.html?rev=1736659&r1=1736658&r2=1736659&view=diff == --- tomcat/site/trunk/docs/download-60.html (original) +++ tomcat/site/trunk/docs/download-60.html Fri Mar 25 20:45:49 2016 @@ -57,16 +57,16 @@ Which version? -Tomcat 9.0 +Tomcat 9 -Tomcat 8.0 +Tomcat 8 -Tomcat 7.0 +Tomcat 7 -Tomcat 6.0 +Tomcat 6 Tomcat Connectors Modified: tomcat/site/trunk/docs/download-70.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-70.html?rev=1736659&r1=1736658&r2=1736659&view=diff == --- tomcat/site/trunk/docs/download-70.html (original) +++ tomcat/site/trunk/docs/download-70.html Fri Mar 25 20:45:49 2016 @@ -57,16 +57,16 @@ Which version? -Tomcat 9.0 +Tomcat 9 -Tomcat 8.0 +Tomcat 8 -Tomcat 7.0 +Tomca
svn commit: r1736660 - in /tomcat/site/trunk: docs/download-80.html xdocs/download-80.xml
Author: markt Date: Fri Mar 25 20:51:32 2016 New Revision: 1736660 URL: http://svn.apache.org/viewvc?rev=1736660&view=rev Log: 8.5.x Prep: Add 8.5.0 to the download page Modified: tomcat/site/trunk/docs/download-80.html tomcat/site/trunk/xdocs/download-80.xml Modified: tomcat/site/trunk/docs/download-80.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-80.html?rev=1736660&r1=1736659&r2=1736660&view=diff == --- tomcat/site/trunk/docs/download-80.html (original) +++ tomcat/site/trunk/docs/download-80.html Fri Mar 25 20:51:32 2016 @@ -219,9 +219,11 @@ [define v]8.0.33[end] +[define w]8.5.0[end] https://www.apache.org/dist/tomcat/tomcat-8/KEYS";>KEYS | [v] | -Browse | +[w] | +Browse | http://archive.apache.org/dist/tomcat/tomcat-8";>Archives @@ -270,16 +272,16 @@ [v] - + - 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. + -Binary Distributions +Binary Distributions @@ -448,7 +450,7 @@ -Source Code Distributions +Source Code Distributions @@ -470,6 +472,215 @@ + + + + + + + +[w] + + + +Please see the +README +file for packaging information. It explains what every distribution contains. + + + + +Binary Distributions + + + + +Core: + + + + +zip +(https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w].zip.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w].zip.md5";>md5, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w].zip.sha1";>sha1) + + + + +tar.gz +(https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w].tar.gz.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w].tar.gz.md5";>md5, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w].tar.gz.sha1";>sha1) + + + + +32-bit Windows zip +(https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-windows-x86.zip.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-windows-x86.zip.md5";>md5, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-windows-x86.zip.sha1";>sha1) + + + + +64-bit Windows zip +(https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-windows-x64.zip.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-windows-x64.zip.md5";>md5, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-windows-x64.zip.sha1";>sha1) + + + + +64-bit Itanium Windows zip +(https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-windows-i64.zip.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-windows-i64.zip.md5";>md5, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-windows-i64.zip.sha1";>sha1) + + + + +32-bit/64-bit Windows Service Installer +(https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w].exe.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w].exe.md5";>md5, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w].exe.sha1";>sha1) + + + + + + +Full documentation: + + + + +tar.gz +(https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-fulldocs.tar.gz.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-fulldocs.tar.gz.md5";>md5, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-fulldocs.tar.gz.sha1";>sha1) + + + + + + +Deployer: + + + + +zip +(https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-deployer.zip.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-deployer.zip.md5";>md5, +https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-deployer.zip.sha1";>sha1) + + + + +tar.gz +(https://www.apache.org/dist/tomcat/tomcat-8/v[w]/bin/apache-tomcat-[w]-deplo
svn commit: r1736661 - in /tomcat/site/trunk: docs/download-80.html xdocs/download-80.xml
Author: markt Date: Fri Mar 25 20:53:21 2016 New Revision: 1736661 URL: http://svn.apache.org/viewvc?rev=1736661&view=rev Log: 8.5.x Prep: Make it clear 8.5.x is currently BETA Modified: tomcat/site/trunk/docs/download-80.html tomcat/site/trunk/xdocs/download-80.xml Modified: tomcat/site/trunk/docs/download-80.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-80.html?rev=1736661&r1=1736660&r2=1736661&view=diff == --- tomcat/site/trunk/docs/download-80.html (original) +++ tomcat/site/trunk/docs/download-80.html Fri Mar 25 20:53:21 2016 @@ -222,7 +222,7 @@ [define w]8.5.0[end] https://www.apache.org/dist/tomcat/tomcat-8/KEYS";>KEYS | [v] | -[w] | +[w] BETA | Browse | http://archive.apache.org/dist/tomcat/tomcat-8";>Archives @@ -479,7 +479,7 @@ -[w] +[w] BETA @@ -490,7 +490,7 @@ -Binary Distributions +Binary Distributions @@ -659,7 +659,7 @@ -Source Code Distributions +Source Code Distributions Modified: tomcat/site/trunk/xdocs/download-80.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/download-80.xml?rev=1736661&r1=1736660&r2=1736661&view=diff == --- tomcat/site/trunk/xdocs/download-80.xml (original) +++ tomcat/site/trunk/xdocs/download-80.xml Fri Mar 25 20:53:21 2016 @@ -22,7 +22,7 @@ [define w]8.5.0[end] https://www.apache.org/dist/tomcat/tomcat-8/KEYS";>KEYS | [v] | -[w] | +[w] BETA | Browse | http://archive.apache.org/dist/tomcat/tomcat-8";>Archives @@ -213,7 +213,7 @@ - + Please see the README - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1736662 - in /tomcat/site/trunk: docs/download-80.html xdocs/download-80.xml
Author: markt Date: Fri Mar 25 20:54:08 2016 New Revision: 1736662 URL: http://svn.apache.org/viewvc?rev=1736662&view=rev Log: 8.5.x Prep: Fix the anchor Modified: tomcat/site/trunk/docs/download-80.html tomcat/site/trunk/xdocs/download-80.xml Modified: tomcat/site/trunk/docs/download-80.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-80.html?rev=1736662&r1=1736661&r2=1736662&view=diff == --- tomcat/site/trunk/docs/download-80.html (original) +++ tomcat/site/trunk/docs/download-80.html Fri Mar 25 20:54:08 2016 @@ -222,7 +222,7 @@ [define w]8.5.0[end] https://www.apache.org/dist/tomcat/tomcat-8/KEYS";>KEYS | [v] | -[w] BETA | +[w] BETA | Browse | http://archive.apache.org/dist/tomcat/tomcat-8";>Archives Modified: tomcat/site/trunk/xdocs/download-80.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/download-80.xml?rev=1736662&r1=1736661&r2=1736662&view=diff == --- tomcat/site/trunk/xdocs/download-80.xml (original) +++ tomcat/site/trunk/xdocs/download-80.xml Fri Mar 25 20:54:08 2016 @@ -22,7 +22,7 @@ [define w]8.5.0[end] https://www.apache.org/dist/tomcat/tomcat-8/KEYS";>KEYS | [v] | -[w] BETA | +[w] BETA | Browse | http://archive.apache.org/dist/tomcat/tomcat-8";>Archives - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: svn commit: r1736607 - in /tomcat/trunk: java/org/apache/catalina/core/AsyncContextImpl.java webapps/docs/changelog.xml
Hi, 2016-03-25 18:24 GMT+02:00 : > > Author: remm > Date: Fri Mar 25 16:24:07 2016 > New Revision: 1736607 > > URL: http://svn.apache.org/viewvc?rev=1736607&view=rev > Log: > 59213: Async dispatches should use a wrapped request rather than the base one. > > Modified: > tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java > tomcat/trunk/webapps/docs/changelog.xml > > Modified: tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java > URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java?rev=1736607&r1=1736606&r2=1736607&view=diff > == > --- tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java (original) > +++ tomcat/trunk/java/org/apache/catalina/core/AsyncContextImpl.java Fri Mar 25 16:24:07 2016 > @@ -191,7 +191,7 @@ public class AsyncContextImpl implements > @Override > public void dispatch(String path) { > check(); > -dispatch(request.getServletContext(),path); > +dispatch(getRequest().getServletContext(), path); I was thinking about this. In javadoc it is specified "void *dispatch*(java.lang.String path) ...within the scope of the ServletContext from which this AsyncContext was initialized" When we initialize the AsyncContext we use the Context from the "base" Request. When we invoke context.bind/unbind we will use that context and not the one provided by the "wrapped" Request. Is that correct? Why don't we initialize the AsyncContext with the context of the "wrapped" Request? Regards, Violeta > } > > @Override > > Modified: tomcat/trunk/webapps/docs/changelog.xml > URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1736607&r1=1736606&r2=1736607&view=diff > == > --- tomcat/trunk/webapps/docs/changelog.xml (original) > +++ tomcat/trunk/webapps/docs/changelog.xml Fri Mar 25 16:24:07 2016 > @@ -67,6 +67,10 @@ > o.a.catalina.loader.WebappClassLoaderBase.getResourceAsStream > (violetagg) > > + > +59213: Async dispatches should be based off a wrapped request. > +(remm) > + > > > > > > > - > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org > For additional commands, e-mail: dev-h...@tomcat.apache.org >
svn commit: r1736663 - in /tomcat/site/trunk: docs/download-80.html xdocs/download-80.xml
Author: markt Date: Fri Mar 25 20:55:00 2016 New Revision: 1736663 URL: http://svn.apache.org/viewvc?rev=1736663&view=rev Log: 8.5.x Prep: Fix the anchor (2nd attempt) Modified: tomcat/site/trunk/docs/download-80.html tomcat/site/trunk/xdocs/download-80.xml Modified: tomcat/site/trunk/docs/download-80.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-80.html?rev=1736663&r1=1736662&r2=1736663&view=diff == --- tomcat/site/trunk/docs/download-80.html (original) +++ tomcat/site/trunk/docs/download-80.html Fri Mar 25 20:55:00 2016 @@ -222,7 +222,7 @@ [define w]8.5.0[end] https://www.apache.org/dist/tomcat/tomcat-8/KEYS";>KEYS | [v] | -[w] BETA | +[w] BETA | Browse | http://archive.apache.org/dist/tomcat/tomcat-8";>Archives Modified: tomcat/site/trunk/xdocs/download-80.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/download-80.xml?rev=1736663&r1=1736662&r2=1736663&view=diff == --- tomcat/site/trunk/xdocs/download-80.xml (original) +++ tomcat/site/trunk/xdocs/download-80.xml Fri Mar 25 20:55:00 2016 @@ -22,7 +22,7 @@ [define w]8.5.0[end] https://www.apache.org/dist/tomcat/tomcat-8/KEYS";>KEYS | [v] | -[w] BETA | +[w] BETA | Browse | http://archive.apache.org/dist/tomcat/tomcat-8";>Archives - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[GUMP@vmgump]: Project tomcat-tc8.0.x-test-nio (in module tomcat-8.0.x) failed
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project tomcat-tc8.0.x-test-nio has an issue affecting its community integration. This issue affects 1 projects. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - tomcat-tc8.0.x-test-nio : Tomcat 8.x, a web server implementing the Java Servlet 3.1, ... Full details are available at: http://vmgump.apache.org/gump/public/tomcat-8.0.x/tomcat-tc8.0.x-test-nio/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -DEBUG- Dependency on commons-daemon exists, no need to add for property commons-daemon.native.src.tgz. -DEBUG- Dependency on commons-daemon exists, no need to add for property tomcat-native.tar.gz. -INFO- Failed with reason build failed -INFO- Project Reports in: /srv/gump/public/workspace/tomcat-8.0.x/output/logs-NIO -INFO- Project Reports in: /srv/gump/public/workspace/tomcat-8.0.x/output/test-tmp-NIO/logs -WARNING- No directory [/srv/gump/public/workspace/tomcat-8.0.x/output/test-tmp-NIO/logs] The following work was performed: http://vmgump.apache.org/gump/public/tomcat-8.0.x/tomcat-tc8.0.x-test-nio/gump_work/build_tomcat-8.0.x_tomcat-tc8.0.x-test-nio.html Work Name: build_tomcat-8.0.x_tomcat-tc8.0.x-test-nio (Type: Build) Work ended in a state of : Failed Elapsed: 55 mins 16 secs Command Line: /usr/lib/jvm/java-8-oracle/bin/java -Djava.awt.headless=true -Dbuild.sysclasspath=only org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Djunit.jar=/srv/gump/public/workspace/junit/target/junit-4.13-SNAPSHOT.jar -Dobjenesis.jar=/srv/gump/public/workspace/objenesis/main/target/objenesis-2.3-SNAPSHOT.jar -Dtest.reports=output/logs-NIO -Dtomcat-native.tar.gz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-20160325-native-src.tar.gz -Dexamples.sources.skip=true -Dbase.path=/srv/gump/public/workspace/tomcat-8.0.x/tomcat-build-libs -Djdt.jar=/srv/gump/packages/eclipse/plugins/R-4.5-201506032000/ecj-4.5.jar -Dcommons-daemon.jar=/srv/gump/public/workspace/apache-commons/daemon/dist/commons-daemon-20160325.jar -Dcommons-daemon.native.src.tgz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-20160325-native-src.tar.gz -Dtest.temp=output/test-tmp-NIO -Dtest.accesslog=true -Dexecute.test.nio=true -Dtest.open ssl.path=/srv/gump/public/workspace/openssl-1.0.2/dest-20160325/bin/openssl -Dexecute.test.bio=false -Dexecute.test.apr=false -Dtest.excludePerformance=true -Dexecute.test.nio2=false -Deasymock.jar=/srv/gump/public/workspace/easymock/core/target/easymock-3.5-SNAPSHOT.jar -Dhamcrest.jar=/srv/gump/packages/hamcrest/hamcrest-core-1.3.jar -Dcglib.jar=/srv/gump/packages/cglib/cglib-nodep-2.2.jar test [Working Directory: /srv/gump/public/workspace/tomcat-8.0.x] CLASSPATH: /usr/lib/jvm/java-8-oracle/lib/tools.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/webapps/examples/WEB-INF/classes:/srv/gump/public/workspace/tomcat-8.0.x/output/testclasses:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit4.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/bin/bootstrap.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/bin/tomcat-juli.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/annotations-api.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/servlet-api.ja r:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/jsp-api.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/el-api.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/websocket-api.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina-ant.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina-storeconfig.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/tomcat-coyote.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/jasper.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/jasper-el.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina-tribes.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina-ha.jar:/srv/gump/public/workspace/tomcat-8.0.x/out
svn commit: r1736666 - in /tomcat/site/trunk/docs/tomcat-8.5-doc: ./ api/ api/org/ api/org/apache/ api/org/apache/catalina/ api/org/apache/catalina/ant/ api/org/apache/catalina/ant/jmx/ api/org/apache
Author: markt Date: Fri Mar 25 21:32:13 2016 New Revision: 173 URL: http://svn.apache.org/viewvc?rev=173&view=rev Log: Upload 8.5.0 docs [This commit notification would consist of 696 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: r1736667 - in /tomcat/site/trunk: build.properties.default build.xml
Author: markt Date: Fri Mar 25 21:33:29 2016 New Revision: 1736667 URL: http://svn.apache.org/viewvc?rev=1736667&view=rev Log: Add target for uploading 8.5.x docs 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=1736667&r1=173&r2=1736667&view=diff == --- tomcat/site/trunk/build.properties.default (original) +++ tomcat/site/trunk/build.properties.default Fri Mar 25 21:33:29 2016 @@ -39,6 +39,7 @@ tomcat.loc=http://www.apache.org/dist/to tomcat60=6.0.45 tomcat70=7.0.68 tomcat80=8.0.33 +tomcat85=8.5.0 tomcat90=9.0.0.M4 # - Download destination - @@ -54,5 +55,8 @@ tomcat70.home=${tomcat-site-docs.home}/$ tomcat80.loc=${tomcat.loc}/tomcat-8/v${tomcat80}/bin/apache-tomcat-${tomcat80}-fulldocs.tar.gz tomcat80.home=${tomcat-site-docs.home}/${tomcat80} +tomcat85.loc=${tomcat.loc}/tomcat-8/v${tomcat85}/bin/apache-tomcat-${tomcat85}-fulldocs.tar.gz +tomcat85.home=${tomcat-site-docs.home}/${tomcat85} + tomcat90.loc=${tomcat.loc}/tomcat-9/v${tomcat90}/bin/apache-tomcat-${tomcat90}-fulldocs.tar.gz tomcat90.home=${tomcat-site-docs.home}/${tomcat90} Modified: tomcat/site/trunk/build.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/build.xml?rev=1736667&r1=173&r2=1736667&view=diff == --- tomcat/site/trunk/build.xml (original) +++ tomcat/site/trunk/build.xml Fri Mar 25 21:33:29 2016 @@ -152,6 +152,28 @@ + + + + + + + + + + + + + + + + + + + + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1736668 - in /tomcat/site/trunk: docs/ xdocs/stylesheets/
Author: markt Date: Fri Mar 25 21:36:41 2016 New Revision: 1736668 URL: http://svn.apache.org/viewvc?rev=1736668&view=rev Log: 8.5.x Prep: Add 8.5.x docs to the menu Modified: tomcat/site/trunk/docs/bugreport.html tomcat/site/trunk/docs/ci.html tomcat/site/trunk/docs/contact.html tomcat/site/trunk/docs/download-60.html 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-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-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.html tomcat/site/trunk/docs/presentations.html tomcat/site/trunk/docs/resources.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/svn.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/tools.html tomcat/site/trunk/docs/whichversion.html tomcat/site/trunk/docs/whoweare.html tomcat/site/trunk/xdocs/stylesheets/project.xml Modified: tomcat/site/trunk/docs/bugreport.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/bugreport.html?rev=1736668&r1=1736667&r2=1736668&view=diff == --- tomcat/site/trunk/docs/bugreport.html (original) +++ tomcat/site/trunk/docs/bugreport.html Fri Mar 25 21:36:41 2016 @@ -90,6 +90,9 @@ Tomcat 9.0 +Tomcat 8.5 + + Tomcat 8.0 Modified: tomcat/site/trunk/docs/ci.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/ci.html?rev=1736668&r1=1736667&r2=1736668&view=diff == --- tomcat/site/trunk/docs/ci.html (original) +++ tomcat/site/trunk/docs/ci.html Fri Mar 25 21:36:41 2016 @@ -89,6 +89,9 @@ Tomcat 9.0 +Tomcat 8.5 + + Tomcat 8.0 Modified: tomcat/site/trunk/docs/contact.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/contact.html?rev=1736668&r1=1736667&r2=1736668&view=diff == --- tomcat/site/trunk/docs/contact.html (original) +++ tomcat/site/trunk/docs/contact.html Fri Mar 25 21:36:41 2016 @@ -89,6 +89,9 @@ Tomcat 9.0 +Tomcat 8.5 + + Tomcat 8.0 Modified: tomcat/site/trunk/docs/download-60.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-60.html?rev=1736668&r1=1736667&r2=1736668&view=diff == --- tomcat/site/trunk/docs/download-60.html (original) +++ tomcat/site/trunk/docs/download-60.html Fri Mar 25 21:36:41 2016 @@ -89,6 +89,9 @@ Tomcat 9.0 +Tomcat 8.5 + + Tomcat 8.0 Modified: tomcat/site/trunk/docs/download-70.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-70.html?rev=1736668&r1=1736667&r2=1736668&view=diff == --- tomcat/site/trunk/docs/download-70.html (original) +++ tomcat/site/trunk/docs/download-70.html Fri Mar 25 21:36:41 2016 @@ -89,6 +89,9 @@ Tomcat 9.0 +Tomcat 8.5 + + Tomcat 8.0 Modified: tomcat/site/trunk/docs/download-80.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-80.html?rev=1736668&r1=1736667&r2=1736668&view=diff == --- tomcat/site/trunk/docs/download-80.html (original) +++ tomcat/site/trunk/docs/download-80.html Fri Mar 25 21:36:41 2016 @@ -89,6 +89,9 @@ Tomcat 9.0 +Tomcat 8.5 + + Tomcat 8
svn commit: r1736669 - in /tomcat/site/trunk: docs/migration-8.html xdocs/migration-8.xml
Author: markt Date: Fri Mar 25 21:49:08 2016 New Revision: 1736669 URL: http://svn.apache.org/viewvc?rev=1736669&view=rev Log: Fix typo Modified: tomcat/site/trunk/docs/migration-8.html tomcat/site/trunk/xdocs/migration-8.xml Modified: tomcat/site/trunk/docs/migration-8.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-8.html?rev=1736669&r1=1736668&r2=1736669&view=diff == --- tomcat/site/trunk/docs/migration-8.html (original) +++ tomcat/site/trunk/docs/migration-8.html Fri Mar 25 21:49:08 2016 @@ -673,7 +673,7 @@ of Apache Tomcat. The Tomcat developers aim for each patch release to be fully backwards - compatible with the previous release. Occassionally, it is necessary to + compatible with the previous release. Occasionally, it is necessary to break backwards compatibility in order to fix a bug. In most cases, these changes will go unnoticed. This section lists changes that are not fully backwards compatible and might cause breakage when upgrading. Modified: tomcat/site/trunk/xdocs/migration-8.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/migration-8.xml?rev=1736669&r1=1736668&r2=1736669&view=diff == --- tomcat/site/trunk/xdocs/migration-8.xml (original) +++ tomcat/site/trunk/xdocs/migration-8.xml Fri Mar 25 21:49:08 2016 @@ -271,7 +271,7 @@ of Apache Tomcat. The Tomcat developers aim for each patch release to be fully backwards - compatible with the previous release. Occassionally, it is necessary to + compatible with the previous release. Occasionally, it is necessary to break backwards compatibility in order to fix a bug. In most cases, these changes will go unnoticed. This section lists changes that are not fully backwards compatible and might cause breakage when upgrading. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1736670 - in /tomcat/site/trunk: docs/migration-85.html xdocs/migration-85.xml
Author: markt Date: Fri Mar 25 21:49:57 2016 New Revision: 1736670 URL: http://svn.apache.org/viewvc?rev=1736670&view=rev Log: 8.5.x Prep: Add a migration guide for 8.5.x Added: tomcat/site/trunk/docs/migration-85.html (with props) tomcat/site/trunk/xdocs/migration-85.xml (with props) Added: tomcat/site/trunk/docs/migration-85.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-85.html?rev=1736670&view=auto == --- tomcat/site/trunk/docs/migration-85.html (added) +++ tomcat/site/trunk/docs/migration-85.html Fri Mar 25 21:49:57 2016 @@ -0,0 +1,406 @@ + + + + + +Apache Tomcat - Migration Guide - Tomcat 8.5.x + + + + + + + + + +http://tomcat.apache.org/";> + + + +http://www.apache.org/"; target="_blank"> + +Apache Tomcat + + +https://www.google.com/search"; method="get"> +Search + + + + + + + + + + + + + + +Apache Tomcat + + +Home + + +Taglibs + + +Maven Plugin + + + + +Download + + +Which version? + + +Tomcat 9 + + +Tomcat 8 + + +Tomcat 7 + + +Tomcat 6 + + +Tomcat Connectors + + +Tomcat Native + + +Taglibs + + +http://archive.apache.org/dist/tomcat/";>Archives + + + + +Documentation + + +Tomcat 9.0 + + +Tomcat 8.5 + + +Tomcat 8.0 + + +Tomcat 7.0 + + +Tomcat 6.0 + + +Tomcat Connectors + + +Tomcat Native + + +http://wiki.apache.org/tomcat/FrontPage";>Wiki + + +Migration Guide + + +Presentations + + + + +Problems? + + +Security Reports + + +Find help + + +http://wiki.apache.org/tomcat/FAQ";>FAQ + + +Mailing Lists + + +Bug Database + + +IRC + + + + +Get Involved + + +Overview + + +SVN Repositories + + +Buildbot + + +https://reviews.apache.org/groups/tomcat/";>Reviewboard + + +Tools + + + + +Media + + +https://twitter.com/theapachetomcat";>Twitter + + +https://www.youtube.com/channel/UCpqpJ0-G1lYfUBQ6_36Au_g";>YouTube + + +http://blogs.apache.org/tomcat/";>Blog + + + + +Misc + + +Who We Are + + +Heritage + + +http://www.apache.org";>Apache Home + + +Resources + + +Contact + + +Legal + + +http://www.apache.org/foundation/sponsorship.html";>Sponsorship + + +http://www.apache.org/foundation/thanks.html";>Thanks + + + + + + + + +Content +Table of Contents + + + + +General + + +Migrating from 8.0.x to 8.5.x + + +BIO connector removed + + +Comet support removed + + +HTTP/2 support added + + +TLS virtual hosting and multiple certificate support added + + +Internal APIs + + + + + + +General + + + +Please read general Migration Guide page first, +for common considerations that apply to migration or upgrade between versions +of Apache Tomcat. + + + +Migrating from 8.0.x to 8.5.x + + + + This section lists all the known changes between 8.0.x and 8.5.x which may + cause backwards compatibility problems when upgrading. + + + +BIO connector removed + + + +The Java blocking IO implementation (BIO) for both HTTP and AJP has been +removed. Users are recommended to switch to the Java non-blocking IO +implementation (NIO). + + + + + + + +Comet support removed + + + +Comet support has been removed without a direct replacement. Applications +using Comet are recommended to migrate to WebSockets. + + + + + + + +HTTP/2 support added + + + +HTTP/2 is supported for h2 (over TLS, negotiated via ALPN) and h2c (clear +text, negotiated via HTTP/1.1 upgrade). HTTP/2 needs to be explicitly +enabled for a connector. To enable it, insert + + ++ + +inside the connector for which you wish to enable HTTP/2. Note that to +enable HTTP/2 for a secure NIO or NIO2 connector, those connectors must be +using the OpenSSL engine for TLS. + + + + + + + +TLS virtual hosting and multiple certificate support added + + + +Tomcat 9 supports multiple TLS virtual hosts for a single connector with +each virtual host able to support multiple certificates. Virtual host +definitions are nested inside the Connector element with the default +specified using the sslDefaultHost attribute on the +Connector if more than one virtual host is specified. Certificate +definitions are nested inside the virtual host. + + +The following example shows how to use this to configure a single +APR/native connector for multiple TLS virtual hosts with each host having +both an RSA and EC certificate. + + + + + + + + svn commit: r1736671 - in /tomcat/site/trunk: docs/migration-9.html xdocs/migration-9.xml Author: markt Date: Fri Mar 25 21:52:10 2016 New Revision: 1736671 URL: http://svn.apache.org/viewvc?rev=1736671&view=rev Log: Add 8.5.x to 9.0.x section. Add config file diffs for 9.0.x Modified: tomcat/site/trunk/docs/migration-9.html tomcat/site/trunk/xdocs/migration-9.xml Modified: tomcat/site/trunk/docs/migration-9.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-9.html?rev=1736671&r1=1736670&r2=1736671&view=diff == --- tomcat/site/trunk/docs/migration-9.html (original) +++ tomcat/site/trunk/docs/migration-9.html Fri Mar 25 21:52:10 2016 @@ -221,22 +221,22 @@ Migrating from 8.0.x to 9.0.x -Java 8 required +Java 8 required -Specification APIs +Specification APIs -Servlet 4.0 API +Servlet 4.0 API -JavaServer Pages 2.4 +JavaServer Pages 2.4 -Expression Language 3.1 +Expression Language 3.1 -WebSocket 2.0 +WebSocket 2.0 BIO connector removed @@ -251,7 +251,41 @@ TLS virtual hosting and multiple certificate support added -Internal APIs +Internal APIs + + + + +Migrating from 8.5.x to 9.0.x + + +Java 8 required + + +Specification APIs + + +Servlet 4.0 API + + +JavaServer Pages 2.4 + + +Expression Language 3.1 + + +WebSocket 2.0 + + +Internal APIs + + + + +Upgrading 9.0.x + + +Tomcat 9.0.x configuration file differences @@ -277,7 +311,7 @@ of Apache Tomcat. -Java 8 required +Java 8 required @@ -290,7 +324,7 @@ of Apache Tomcat. -Specification APIs +Specification APIs @@ -307,7 +341,7 @@ of Apache Tomcat. -Servlet 4.0 API +Servlet 4.0 API @@ -338,7 +372,7 @@ of Apache Tomcat. -JavaServer Pages 2.4 +JavaServer Pages 2.4 @@ -351,7 +385,7 @@ of Apache Tomcat. -Expression Language 3.1 +Expression Language 3.1 @@ -365,7 +399,7 @@ of Apache Tomcat. -WebSocket 2.0 +WebSocket 2.0 @@ -479,7 +513,7 @@ of Apache Tomcat. -Internal APIs +Internal APIs @@ -508,6 +542,235 @@ of Apache Tomcat. +Migrating from 8.5.x to 9.0.x + + + + This section lists all the known changes between 8.0.x and 9.0.x which may + cause backwards compatibility problems when upgrading. + + + +Java 8 required + + + +Apache Tomcat 9.0.x requires Java 8 or later. Apache Tomcat 8.0.x +required Java 7. + + + + + + + +Specification APIs + + + +Apache Tomcat 9 supports the Java Servlet 4.0, JavaServer Pages 2.4, +Java Unified Expression Language 3.1 and Java WebSocket 2.0 +http://wiki.apache.org/tomcat/Specifications";>specifications. +The changes between versions of specifications may be found in the +Changes appendix in each of specification documents. + + + + + + + + +Servlet 4.0 API + + + +In JSP pages that use wildcard import syntax the new classes added in +Servlet API may conflict with ones in web applications. +For example, if package "a" contains class +PushBuilder, the following JSP page will cease to compile in +Tomcat 9: + + + + +<%@page import="a.*"%> +<% PushBuilder pushBuilder = new PushBuilder(); %> + + + + +This happens because the implicit import of +javax.servlet.http.* and the explicit import of +a.* will provide conflicting definitions of class +PushBuilder that was added in Servlet 4.0. The solution is to +use the explicit import, import="a.PushBuilder". + + + + + + + +JavaServer Pages 2.4 + + + +No information is currently available. It is anticipated that Java EE 8 +will include a maintenance release of JSP with a version of 2.4. + + + + + + + +Expression Language 3.1 + + + +No information is currently available. It is anticipated that Java EE 8 +will include a maintenance release of expression language with a version of +3.1. + + + + + + + +WebSocket 2.0 + + + +No information is currently available. It is anticipated that Java EE 8 +will include an updated WebSocket specification with a version of 2.0. + + + + + + + +Internal APIs + + + +Whilst the Tomcat 9 internal API is broadly compatible with Tomcat 8.5 +there have been some changes at the detail level and they are not binary +compatible. Developers of custom components that interact with Tomcat's +internals should review the JavaDoc for the relevant API. + + + + + + + +Upgrading 9.0.x + + +When upgrading instances of Apache Tomcat from one version of Tomcat 9 to + another, particularly when using separate locations for $CATALINA_HOME and + $CATALINA_BASE, it is necessary to ensure that any changes in the + configuration files such as new attributes and changes to defaults are applied + as part of the upgrade. To assist with the identification of these changes, + the form below may be used to view the differences between the configuration + files in different versions of Tomcat 9. + + + +Tomcat 9.0.x co
svn commit: r1736672 - in /tomcat/site/trunk: docs/migration.html xdocs/migration.xml
Author: markt Date: Fri Mar 25 21:55:55 2016 New Revision: 1736672 URL: http://svn.apache.org/viewvc?rev=1736672&view=rev Log: Add links to the new migration guides Modified: tomcat/site/trunk/docs/migration.html tomcat/site/trunk/xdocs/migration.xml Modified: tomcat/site/trunk/docs/migration.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration.html?rev=1736672&r1=1736671&r2=1736672&view=diff == --- tomcat/site/trunk/docs/migration.html (original) +++ tomcat/site/trunk/docs/migration.html Fri Mar 25 21:55:55 2016 @@ -240,8 +240,19 @@ accordingly. +For upgrading between 9.0.x versions, see the +upgrading section of the Tomcat +9.0.x Migration Guide. + + For migration from 8.0.x to 9.0.x, see the -Tomcat 9.0.x Migration Guide. +8.0.x section of the +Tomcat 9.0.x Migration Guide. + + +For migration from 8.5.x to 9.0.x, see the +8.5.x section of the +Tomcat 9.0.x Migration Guide. For upgrading between 8.0.x versions, see the Modified: tomcat/site/trunk/xdocs/migration.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/migration.xml?rev=1736672&r1=1736671&r2=1736672&view=diff == --- tomcat/site/trunk/xdocs/migration.xml (original) +++ tomcat/site/trunk/xdocs/migration.xml Fri Mar 25 21:55:55 2016 @@ -32,8 +32,17 @@ accordingly. +For upgrading between 9.0.x versions, see the +upgrading section of the Tomcat +9.0.x Migration Guide. + For migration from 8.0.x to 9.0.x, see the -Tomcat 9.0.x Migration Guide. +8.0.x section of the +Tomcat 9.0.x Migration Guide. + +For migration from 8.5.x to 9.0.x, see the +8.5.x section of the +Tomcat 9.0.x Migration Guide. For upgrading between 8.0.x versions, see the upgrading section of the Tomcat - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1736673 - in /tomcat/site/trunk: docs/migration.html xdocs/migration.xml
Author: markt Date: Fri Mar 25 21:57:20 2016 New Revision: 1736673 URL: http://svn.apache.org/viewvc?rev=1736673&view=rev Log: Align styles Modified: tomcat/site/trunk/docs/migration.html tomcat/site/trunk/xdocs/migration.xml Modified: tomcat/site/trunk/docs/migration.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration.html?rev=1736673&r1=1736672&r2=1736673&view=diff == --- tomcat/site/trunk/docs/migration.html (original) +++ tomcat/site/trunk/docs/migration.html Fri Mar 25 21:57:20 2016 @@ -246,13 +246,13 @@ accordingly. For migration from 8.0.x to 9.0.x, see the -8.0.x section of the -Tomcat 9.0.x Migration Guide. +8.0.x section of +the Tomcat 9.0.x Migration Guide. For migration from 8.5.x to 9.0.x, see the -8.5.x section of the -Tomcat 9.0.x Migration Guide. +8.5.x section of +the Tomcat 9.0.x Migration Guide. For upgrading between 8.0.x versions, see the Modified: tomcat/site/trunk/xdocs/migration.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/migration.xml?rev=1736673&r1=1736672&r2=1736673&view=diff == --- tomcat/site/trunk/xdocs/migration.xml (original) +++ tomcat/site/trunk/xdocs/migration.xml Fri Mar 25 21:57:20 2016 @@ -37,12 +37,12 @@ accordingly. 9.0.x Migration Guide. For migration from 8.0.x to 9.0.x, see the -8.0.x section of the -Tomcat 9.0.x Migration Guide. +8.0.x section of +the Tomcat 9.0.x Migration Guide. For migration from 8.5.x to 9.0.x, see the -8.5.x section of the -Tomcat 9.0.x Migration Guide. +8.5.x section of +the Tomcat 9.0.x Migration Guide. For upgrading between 8.0.x versions, see the upgrading section of the Tomcat - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1736674 - in /tomcat/site/trunk: docs/index.html xdocs/index.xml
Author: markt Date: Fri Mar 25 22:01:17 2016 New Revision: 1736674 URL: http://svn.apache.org/viewvc?rev=1736674&view=rev Log: Add an announcement for 8.5.0 Modified: tomcat/site/trunk/docs/index.html tomcat/site/trunk/xdocs/index.xml Modified: tomcat/site/trunk/docs/index.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/index.html?rev=1736674&r1=1736673&r2=1736674&view=diff == --- tomcat/site/trunk/docs/index.html (original) +++ tomcat/site/trunk/docs/index.html Fri Mar 25 22:01:17 2016 @@ -243,6 +243,43 @@ project logo are trademarks of the Apach + +2016-03-24 Tomcat 8.5.0 beta Released + + + +The Apache Tomcat Project is proud to announce the release of version 8.5.0 +of Apache Tomcat. Apache Tomcat 8.5.0 is intended to replace 8.0.x and includes +new features pulled forward from Tomcat 9.0.x. The minimum Java version and +implemented specification versions remain unchanged. The notable changes +compared to 8.0.x include: + + + +Added support for HTTP/2, and TLS virtual hosting + +Added support for JASPIC 1.1 + +The BIO connectors, support for Windows Itanium and support for Comet have +been removed + + + + + +Full details of these changes, and all the other changes, are available in the +Tomcat 8.5 +changelog. + + + + + +Download + + + + 2016-03-24 Tomcat 8.0.33 Released Modified: tomcat/site/trunk/xdocs/index.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/index.xml?rev=1736674&r1=1736673&r2=1736674&view=diff == --- tomcat/site/trunk/xdocs/index.xml (original) +++ tomcat/site/trunk/xdocs/index.xml Fri Mar 25 22:01:17 2016 @@ -38,6 +38,31 @@ project logo are trademarks of the Apach + + +The Apache Tomcat Project is proud to announce the release of version 8.5.0 +of Apache Tomcat. Apache Tomcat 8.5.0 is intended to replace 8.0.x and includes +new features pulled forward from Tomcat 9.0.x. The minimum Java version and +implemented specification versions remain unchanged. The notable changes +compared to 8.0.x include: + +Added support for HTTP/2, and TLS virtual hosting +Added support for JASPIC 1.1 +The BIO connectors, support for Windows Itanium and support for Comet have +been removed + + + +Full details of these changes, and all the other changes, are available in the +Tomcat 8.5 +changelog. + + + +Download + + + The Apache Tomcat Project is proud to announce the release of version 8.0.33 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[ANN] Apache Tomcat 8.0.33 available
The Apache Tomcat team announces the immediate availability of Apache Tomcat 8.0.33. Apache Tomcat 8.0 is an open source software implementation of the Java Servlet, JavaServer Pages, Java Unified Expression Language and Java WebSocket technologies. Apache Tomcat 8.0.33 includes fixes for issues identified in 8.0.32 as well as other enhancements and changes. The notable changes since 8.0.32 include: - Correct a false positive warning for ThreadLocal related memory leaks when the key class but not the value class has been loaded by the web application class loader. - Improve the performance of javax.servlet.jsp.el.ScopedAttributeELResolver when resolving attributes that do not exist. - Update the packaged version of the Tomcat Native Library to 1.2.5 to pick up the Windows binaries that are based on OpenSSL 1.0.2g and APR 1.5.1. Please refer to the change log for the complete list of changes: http://tomcat.apache.org/tomcat-8.0-doc/changelog.html Downloads: http://tomcat.apache.org/download-80.cgi Migration guides from Apache Tomcat 5.5.x, 6.0.x and 7.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
[ANN] Apache Tomcat 8.5.0 BETA available
The Apache Tomcat team announces the immediate availability of Apache Tomcat 8.5.0 BETA. Apache Tomcat 8.0 is an open source software implementation of the Java Servlet, JavaServer Pages, Java Unified Expression Language, Java WebSocket and Java Authentication Service Provider Interface for Containers technologies. Apache Tomcat 8.5.0 is intended to replace 8.0.x and includes new features pulled forward from the 9.0.x branch. The notable changes since 8.5.x include: - Added support for HTTP/2, and TLS virtual hosting - Added support for JASPIC 1.1 - The BIO connectors, support for Windows Itanium and support for Comet have been removed Please refer to the change log for the complete list of changes: http://tomcat.apache.org/tomcat-8.5-doc/changelog.html Downloads: http://tomcat.apache.org/download-80.cgi Migration guides from Apache Tomcat 5.5.x, 6.0.x and 7.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: r1736675 - in /tomcat/site/trunk: docs/presentations.html xdocs/presentations.xml
Author: markt Date: Fri Mar 25 22:15:14 2016 New Revision: 1736675 URL: http://svn.apache.org/viewvc?rev=1736675&view=rev Log: Push back 8.5.x presentations by 24 hours Modified: tomcat/site/trunk/docs/presentations.html tomcat/site/trunk/xdocs/presentations.xml Modified: tomcat/site/trunk/docs/presentations.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/presentations.html?rev=1736675&r1=1736674&r2=1736675&view=diff == --- tomcat/site/trunk/docs/presentations.html (original) +++ tomcat/site/trunk/docs/presentations.html Fri Mar 25 22:15:14 2016 @@ -228,12 +228,12 @@ presentations then please do let us know -Webinar: Tuesday 29 March 2016 - http://markmail.org/message/lyny3rv6zd4f5aph";>10.00 UTC +Webinar: Wednesday 30 March 2016 + http://markmail.org/message/jwuxtbyvyttymjt6";>10.00 UTC -Webinar: Tuesday 29 March 2016 - http://markmail.org/message/novnqzu6rvzsfhf5";>20.00 UTC +Webinar: Wednesday 30 March 2016 + http://markmail.org/message/342oyjdnwwwuh6vr";>20.00 UTC Modified: tomcat/site/trunk/xdocs/presentations.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/presentations.xml?rev=1736675&r1=1736674&r2=1736675&view=diff == --- tomcat/site/trunk/xdocs/presentations.xml (original) +++ tomcat/site/trunk/xdocs/presentations.xml Fri Mar 25 22:15:14 2016 @@ -18,10 +18,10 @@ presentations then please do let us know Introducing Apache Tomcat 8.5 (markt) - Webinar: Tuesday 29 March 2016 - http://markmail.org/message/lyny3rv6zd4f5aph";>10.00 UTC - Webinar: Tuesday 29 March 2016 - http://markmail.org/message/novnqzu6rvzsfhf5";>20.00 UTC + Webinar: Wednesday 30 March 2016 + http://markmail.org/message/jwuxtbyvyttymjt6";>10.00 UTC + Webinar: Wednesday 30 March 2016 + http://markmail.org/message/342oyjdnwwwuh6vr";>20.00 UTC - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1736677 - /tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml
Author: markt Date: Fri Mar 25 22:21:25 2016 New Revision: 1736677 URL: http://svn.apache.org/viewvc?rev=1736677&view=rev Log: Add release date Modified: tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml?rev=1736677&r1=1736676&r2=1736677&view=diff == --- tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml Fri Mar 25 22:21:25 2016 @@ -90,7 +90,7 @@ - + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r12868 - /release/tomcat/tomcat-8/v8.0.32/
Author: markt Date: Fri Mar 25 22:22:11 2016 New Revision: 12868 Log: Drop 8.0.32 from the mirrors Removed: release/tomcat/tomcat-8/v8.0.32/ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1736676 - /tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml
Author: markt Date: Fri Mar 25 22:21:18 2016 New Revision: 1736676 URL: http://svn.apache.org/viewvc?rev=1736676&view=rev Log: Add release date Modified: tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml?rev=1736676&r1=1736675&r2=1736676&view=diff == --- tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml Fri Mar 25 22:21:18 2016 @@ -127,7 +127,7 @@ - + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
buildbot failure in on tomcat-8-trunk
The Buildbot has detected a new failure on builder tomcat-8-trunk while building . Full details are available at: https://ci.apache.org/builders/tomcat-8-trunk/builds/521 Buildbot URL: https://ci.apache.org/ Buildslave for this Build: silvanus_ubuntu Build Reason: The AnyBranchScheduler scheduler named 'on-tomcat-8-commit' triggered this build Build Source Stamp: [branch tomcat/tc8.0.x/trunk] 1736677 Blamelist: markt BUILD FAILED: failed compile_1 Sincerely, -The Buildbot - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org