[Bug 60554] New: Update language style in whichversion.xml
https://bz.apache.org/bugzilla/show_bug.cgi?id=60554 Bug ID: 60554 Summary: Update language style in whichversion.xml Product: Tomcat 8 Version: 8.5.x-trunk Hardware: All OS: All Status: NEW Severity: enhancement Priority: P2 Component: Documentation Assignee: dev@tomcat.apache.org Reporter: 1983-01...@gmx.net Target Milestone: Created attachment 34594 --> https://bz.apache.org/bugzilla/attachment.cgi?id=34594&action=edit Patched site NOTE: This is the wrong project for this, but there is no project for Tomcat Site. Update which version table header labels for * proper title case, * replace actual with latest (a common false friend for non-native English speaker) * replace revision with version because it is a version OR one could simply say: Latest Release -- 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 60555] New: run by ssl and port:443 close_wait
https://bz.apache.org/bugzilla/show_bug.cgi?id=60555 Bug ID: 60555 Summary: run by ssl and port:443 close_wait Product: Tomcat 8 Version: 8.5.4 Hardware: PC OS: Linux Status: NEW Severity: normal Priority: P2 Component: Connectors Assignee: dev@tomcat.apache.org Reporter: dracu...@hotmail.com Target Milestone: tomcat-embed-core-8.5.4 our service use springboot '1.4.0.RELEASE' centos 6.5 SSL: server.ssl.key-store=classpath:cert/a.ca.pfx server.ssl.key-store-password=a server.ssl.keyStoreType=PKCS12 After start, then use shell : #!/usr/bin/bash while true ; do curl -k https://IP/app/current/queryCurrent.action echo "" done and exec the command : netstat -antp | grep CLOSE_WAIT tcp0 0 ::443:45138 CLOSE_WAIT 21773/java tcp0 0 ::443::44910 CLOSE_WAIT 21773/java tcp0 0 ::443::44464 CLOSE_WAIT 21773/java tcp0 0 ::443::45234 CLOSE_WAIT 21773/java tcp0 0 ::443::43768 CLOSE_WAIT 21773/java tcp0 0 ::443::44216 CLOSE_WAIT 21773/java .. nondecreasing run without ssl no problem code line 1399 in org.apache.tomcat.util.net.NioEndpoint Using HTTP always get true and When CLOSE_WAIT appears always "handshake == SelectionKey.OP_READ" and never change(Even if the client is closed) These CLOSE_WAIT lived for more than 12 hours yet -- 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 60515] Improve ThreadLocal memory leak clean-up for ContainerBackgroundProcessor
https://bz.apache.org/bugzilla/show_bug.cgi?id=60515 Florian S. changed: What|Removed |Added CC||florian.sch...@gmx.de OS||All -- 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: r1777469 - in /tomcat/tc8.0.x/trunk: java/org/apache/tomcat/util/net/NioEndpoint.java webapps/docs/changelog.xml
Author: markt Date: Thu Jan 5 15:02:25 2017 New Revision: 1777469 URL: http://svn.apache.org/viewvc?rev=1777469&view=rev Log: Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=60409 When unable to complete sendfile request, ensure the Processor will be added to the cache only once. Modified: tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java URL: http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java?rev=1777469&r1=1777468&r2=1777469&view=diff == --- tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java (original) +++ tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java Thu Jan 5 15:02:25 2017 @@ -1245,11 +1245,15 @@ public class NioEndpoint extends Abstrac } }catch ( IOException x ) { if ( log.isDebugEnabled() ) log.debug("Unable to complete sendfile request:", x); -cancelledKey(sk,SocketStatus.ERROR); +if (!calledByProcessor) { +cancelledKey(sk,SocketStatus.ERROR); +} return SendfileState.ERROR; }catch ( Throwable t ) { log.error("",t); -cancelledKey(sk, SocketStatus.ERROR); +if (!calledByProcessor) { +cancelledKey(sk, SocketStatus.ERROR); +} return SendfileState.ERROR; } } 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=1777469&r1=1777468&r2=1777469&view=diff == --- tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml Thu Jan 5 15:02:25 2017 @@ -140,6 +140,10 @@ when configured with an address of 0.0.0.0 or ::. (markt) + +60409: When unable to complete sendfile request, ensure the +Processor will be added to the cache only once. (markt/violetagg) + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1777470 - /tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java
Author: markt Date: Thu Jan 5 15:06:04 2017 New Revision: 1777470 URL: http://svn.apache.org/viewvc?rev=1777470&view=rev Log: ws fixes Modified: tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java Modified: tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java?rev=1777470&r1=1777469&r2=1777470&view=diff == --- tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java Thu Jan 5 15:06:04 2017 @@ -771,12 +771,12 @@ public class NioEndpoint extends Abstrac return true; } - + @Override public void removeWaitingRequest(SocketWrapper socketWrapper) { // NO-OP } - + @Override protected Log getLog() { @@ -1100,7 +1100,7 @@ public class NioEndpoint extends Abstrac else r.reset(socket,ka,OP_REGISTER); addEvent(r); } - + public KeyAttachment cancelledKey(SelectionKey key, SocketStatus status, boolean dispatch) { KeyAttachment ka = null; try { @@ -1388,10 +1388,10 @@ public class NioEndpoint extends Abstrac // appropriate event(s) if sendfile completes. if (!calledByProcessor) { if ( sd.keepAlive ) { -if (log.isDebugEnabled()) { -log.debug("Connection is keep alive, registering back for OP_READ"); -} -reg(sk,attachment,SelectionKey.OP_READ); +if (log.isDebugEnabled()) { +log.debug("Connection is keep alive, registering back for OP_READ"); +} +reg(sk,attachment,SelectionKey.OP_READ); } else { if (log.isDebugEnabled()) { log.debug("Send file connection is being closed"); - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1777471 - in /tomcat/tc7.0.x/trunk: java/org/apache/tomcat/util/net/NioEndpoint.java webapps/docs/changelog.xml
Author: markt Date: Thu Jan 5 15:07:19 2017 New Revision: 1777471 URL: http://svn.apache.org/viewvc?rev=1777471&view=rev Log: Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=60409 When unable to complete sendfile request, ensure the Processor will be added to the cache only once. Modified: tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java?rev=1777471&r1=1777470&r2=1777471&view=diff == --- tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java Thu Jan 5 15:07:19 2017 @@ -1413,11 +1413,15 @@ public class NioEndpoint extends Abstrac } }catch ( IOException x ) { if ( log.isDebugEnabled() ) log.debug("Unable to complete sendfile request:", x); -cancelledKey(sk,SocketStatus.ERROR,false); +if (!calledByProcessor) { +cancelledKey(sk,SocketStatus.ERROR,false); +} return SendfileState.ERROR; }catch ( Throwable t ) { log.error("",t); -cancelledKey(sk, SocketStatus.ERROR, false); +if (!calledByProcessor) { +cancelledKey(sk, SocketStatus.ERROR, false); +} return SendfileState.ERROR; } } 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=1777471&r1=1777470&r2=1777471&view=diff == --- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Thu Jan 5 15:07:19 2017 @@ -125,6 +125,10 @@ when configured with an address of 0.0.0.0 or ::. (markt) + +60409: When unable to complete sendfile request, ensure the +Processor will be added to the cache only once. (markt/violetagg) + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1777472 - in /tomcat/tc6.0.x/trunk: java/org/apache/tomcat/util/net/NioEndpoint.java webapps/docs/changelog.xml
Author: markt Date: Thu Jan 5 15:08:22 2017 New Revision: 1777472 URL: http://svn.apache.org/viewvc?rev=1777472&view=rev Log: Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=60409 When unable to complete sendfile request, ensure the Processor will be added to the cache only once. Modified: tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java?rev=1777472&r1=1777471&r2=1777472&view=diff == --- tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java (original) +++ tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java Thu Jan 5 15:08:22 2017 @@ -1872,11 +1872,15 @@ public class NioEndpoint extends Abstrac } }catch ( IOException x ) { if ( log.isDebugEnabled() ) log.debug("Unable to complete sendfile request:", x); -cancelledKey(sk,SocketStatus.ERROR,false); +if (!calledByProcessor) { +cancelledKey(sk,SocketStatus.ERROR,false); +} return SendfileState.ERROR; }catch ( Throwable t ) { log.error("",t); -cancelledKey(sk, SocketStatus.ERROR, false); +if (!calledByProcessor) { +cancelledKey(sk, SocketStatus.ERROR, false); +} return SendfileState.ERROR; } } Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml?rev=1777472&r1=1777471&r2=1777472&view=diff == --- tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Thu Jan 5 15:08:22 2017 @@ -50,6 +50,10 @@ 57799: Remove useless sendfile check for NIO SSL. (remm) + +60409: When unable to complete sendfile request, ensure the +Processor will be added to the cache only once. (markt/violetagg) + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 60409] IllegalArgumentException at java.nio.Buffer.position at SocketWrapperBase.transfer()
https://bz.apache.org/bugzilla/show_bug.cgi?id=60409 Mark Thomas changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|--- |FIXED --- Comment #18 from Mark Thomas --- I have confirmed that the issue observed in 8.0.x is essentially the same as that seen in 8.5.x. Rather than introduce the issue, the refactoring appears simply to have made it easier to observe. It has been fixed in: - 8.0.x for 8.0.40 onwards - 7.0.x for 7.0.74 onwards - 6.0.x for 6.0.49 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
[SECURITY][UPDATE] CVE-2016-8745 Apache Tomcat Information Disclosure
CVE-2016-8745 Apache Tomcat Information Disclosure Severity: Important Vendor: The Apache Software Foundation Versions Affected: Apache Tomcat 9.0.0.M1 to 9.0.0.M13 Apache Tomcat 8.5.0 to 8.5.8 Apache Tomcat 8.0.0.RC1 to 8.0.39 (new) Apache Tomcat 7.0.0 to 7.0.73 (new) Apache Tomcat 6.0.16 to 6.0.48 (new) Description A bug in the error handling of the send file code for the NIO HTTP connector resulted in the current Processor object being added to the Processor cache multiple times. This in turn meant that the same Processor could be used for concurrent requests. Sharing a Processor can result in information leakage between requests including, not not limited to, session ID and the response body. The bug was first noticed in 8.5.x onwards where it appears the refactoring of the Connector code for 8.5.x onwards made it more likely that the bug was observed. Initially it was thought that the 8.5.x refactoring introduced the bug but further investigation has shown that the bug is present in all currently supported Tomcat versions. Mitigation: Users of the NIO HTTP connector with the affected versions should apply one of the following mitigations - Switch to the BIO HTTP, NIO2 HTTP or APR HTTP connector - Disable send file - Upgrade to Apache Tomcat 9.0.0.M15 or later (Apache Tomcat 9.0.0.M14 has the fix but was not released) - Upgrade to Apache Tomcat 8.5.9 or later - Upgrade to Apache Tomcat 8.0.40 or later when released - Upgrade to Apache Tomcat 7.0.74 or later when released - Upgrade to Apache Tomcat 6.0.49 or later when released Credit: This issue was reported publicly as Bug 60409 [1] and the security implications identified by the Tomcat security team. History: 2016-12-12 Original advisory 2017-01-04 Updated information on affected versions References: [1] https://bz.apache.org/bugzilla/show_bug.cgi?id=60409 [2] http://tomcat.apache.org/security-9.html [3] http://tomcat.apache.org/security-8.html [3] http://tomcat.apache.org/security-7.html [3] http://tomcat.apache.org/security-6.html - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1777473 - in /tomcat/site/trunk: docs/security-6.html docs/security-7.html docs/security-8.html docs/security-9.html xdocs/security-6.xml xdocs/security-7.xml xdocs/security-8.xml xdocs/s
Author: markt Date: Thu Jan 5 15:11:49 2017 New Revision: 1777473 URL: http://svn.apache.org/viewvc?rev=1777473&view=rev Log: Update information for CVE-2016-8745 8.0.x, 7.0.x and 6.0.x also affected Modified: 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/xdocs/security-6.xml tomcat/site/trunk/xdocs/security-7.xml tomcat/site/trunk/xdocs/security-8.xml tomcat/site/trunk/xdocs/security-9.xml Modified: tomcat/site/trunk/docs/security-6.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-6.html?rev=1777473&r1=1777472&r2=1777473&view=diff == --- tomcat/site/trunk/docs/security-6.html (original) +++ tomcat/site/trunk/docs/security-6.html Thu Jan 5 15:11:49 2017 @@ -219,6 +219,9 @@ Apache Tomcat 6.x vulnerabilities +Fixed in Apache Tomcat 6.0.49 + + Fixed in Apache Tomcat 6.0.48 @@ -337,6 +340,36 @@ + +not yet released Fixed in Apache Tomcat 6.0.49 + + + + +Important: Information Disclosure + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-8745"; rel="nofollow">CVE-2016-8745 + + + +A bug in the error handling of the send file code for the NIO HTTP + connector resulted in the current Processor object being added to the + Processor cache multiple times. This in turn meant that the same + Processor could be used for concurrent requests. Sharing a Processor can + result in information leakage between requests including, not not limited + to, session ID and the response body. + + +This was fixed in revision http://svn.apache.org/viewvc?view=rev&rev=1777472";>1777472. + + +This issue was identified as affecting 6.0.x by the Apache Tomcat Security + Team on 3 January 2016 and made public on 5 January 207. + + +Affects: 6.0.16 to 6.0.48 + + + 15 November 2016 Fixed in Apache Tomcat 6.0.48 Modified: tomcat/site/trunk/docs/security-7.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-7.html?rev=1777473&r1=1777472&r2=1777473&view=diff == --- tomcat/site/trunk/docs/security-7.html (original) +++ tomcat/site/trunk/docs/security-7.html Thu Jan 5 15:11:49 2017 @@ -219,6 +219,9 @@ Apache Tomcat 7.x vulnerabilities +Fixed in Apache Tomcat 7.0.74 + + Fixed in Apache Tomcat 7.0.73 @@ -363,6 +366,36 @@ + +not yet released Fixed in Apache Tomcat 7.0.74 + + + + +Important: Information Disclosure + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-8745"; rel="nofollow">CVE-2016-8745 + + + +A bug in the error handling of the send file code for the NIO HTTP + connector resulted in the current Processor object being added to the + Processor cache multiple times. This in turn meant that the same + Processor could be used for concurrent requests. Sharing a Processor can + result in information leakage between requests including, not not limited + to, session ID and the response body. + + +This was fixed in revision http://svn.apache.org/viewvc?view=rev&rev=1777471";>1777471. + + +This issue was identified as affecting 7.0.x by the Apache Tomcat Security + Team on 3 January 2016 and made public on 5 January 207. + + +Affects: 7.0.0 to 7.0.73 + + + 14 November 2016 Fixed in Apache Tomcat 7.0.73 Modified: tomcat/site/trunk/docs/security-8.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-8.html?rev=1777473&r1=1777472&r2=1777473&view=diff == --- tomcat/site/trunk/docs/security-8.html (original) +++ tomcat/site/trunk/docs/security-8.html Thu Jan 5 15:11:49 2017 @@ -219,6 +219,9 @@ Apache Tomcat 8.x vulnerabilities +Fixed in Apache Tomcat 8.0.40 + + Fixed in Apache Tomcat 8.5.9 @@ -315,6 +318,36 @@ + +not yet released Fixed in Apache Tomcat 8.0.40 + + + + +Important: Information Disclosure + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-8745"; rel="nofollow">CVE-2016-8745 + + + +A bug in the error handling of the send file code for the NIO HTTP + connector resulted in the current Processor object being added to the + Processor cache multiple times. This in turn meant that the same + Processor could be used for concurrent requests. Sharing a Processor can + result in information leakage between requests including, not not limited + to, session ID and the response body. + + +This was fixed in revision http://svn.apache.org/viewvc?view=rev&rev=1777469";>1777469. + + +This issue was identified as affecting 8.0.x by the Apache Tomcat Security + Team on 3 January 2016 and made public on 5 January 207. + + +Affects: 8
buildbot success in on tomcat-8-trunk
The Buildbot has detected a restored build on builder tomcat-8-trunk while building . Full details are available at: https://ci.apache.org/builders/tomcat-8-trunk/builds/888 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] 1777469 Blamelist: markt Build succeeded! Sincerely, -The Buildbot - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: svn commit: r1777473 - in /tomcat/site/trunk: docs/security-6.html docs/security-7.html docs/security-8.html docs/security-9.html xdocs/security-6.xml xdocs/security-7.xml xdocs/security-8.xml xdo
Le 5/01/2017 à 16:11, ma...@apache.org a écrit : > +This issue was identified as affecting 6.0.x by the Apache Tomcat Security > + Team on 3 January 2016 and made public on 5 January 207. Hi Mark, There is a typo on the disclosure date. Emmanuel Bourg - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1777478 - in /tomcat/site/trunk: docs/security-6.html docs/security-7.html docs/security-8.html xdocs/security-6.xml xdocs/security-7.xml xdocs/security-8.xml
Author: markt Date: Thu Jan 5 16:08:13 2017 New Revision: 1777478 URL: http://svn.apache.org/viewvc?rev=1777478&view=rev Log: Fix typo Modified: tomcat/site/trunk/docs/security-6.html tomcat/site/trunk/docs/security-7.html tomcat/site/trunk/docs/security-8.html tomcat/site/trunk/xdocs/security-6.xml tomcat/site/trunk/xdocs/security-7.xml tomcat/site/trunk/xdocs/security-8.xml Modified: tomcat/site/trunk/docs/security-6.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-6.html?rev=1777478&r1=1777477&r2=1777478&view=diff == --- tomcat/site/trunk/docs/security-6.html (original) +++ tomcat/site/trunk/docs/security-6.html Thu Jan 5 16:08:13 2017 @@ -363,7 +363,7 @@ This issue was identified as affecting 6.0.x by the Apache Tomcat Security - Team on 3 January 2016 and made public on 5 January 207. + Team on 3 January 2016 and made public on 5 January 2017. Affects: 6.0.16 to 6.0.48 Modified: tomcat/site/trunk/docs/security-7.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-7.html?rev=1777478&r1=1777477&r2=1777478&view=diff == --- tomcat/site/trunk/docs/security-7.html (original) +++ tomcat/site/trunk/docs/security-7.html Thu Jan 5 16:08:13 2017 @@ -389,7 +389,7 @@ This issue was identified as affecting 7.0.x by the Apache Tomcat Security - Team on 3 January 2016 and made public on 5 January 207. + Team on 3 January 2016 and made public on 5 January 2017. Affects: 7.0.0 to 7.0.73 Modified: tomcat/site/trunk/docs/security-8.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-8.html?rev=1777478&r1=1777477&r2=1777478&view=diff == --- tomcat/site/trunk/docs/security-8.html (original) +++ tomcat/site/trunk/docs/security-8.html Thu Jan 5 16:08:13 2017 @@ -341,7 +341,7 @@ This issue was identified as affecting 8.0.x by the Apache Tomcat Security - Team on 3 January 2016 and made public on 5 January 207. + Team on 3 January 2016 and made public on 5 January 2017. Affects: 8.0.0.RC1 to 8.0.39 Modified: tomcat/site/trunk/xdocs/security-6.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/security-6.xml?rev=1777478&r1=1777477&r2=1777478&view=diff == --- tomcat/site/trunk/xdocs/security-6.xml (original) +++ tomcat/site/trunk/xdocs/security-6.xml Thu Jan 5 16:08:13 2017 @@ -63,7 +63,7 @@ This was fixed in revision 1777472. This issue was identified as affecting 6.0.x by the Apache Tomcat Security - Team on 3 January 2016 and made public on 5 January 207. + Team on 3 January 2016 and made public on 5 January 2017. Affects: 6.0.16 to 6.0.48 Modified: tomcat/site/trunk/xdocs/security-7.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/security-7.xml?rev=1777478&r1=1777477&r2=1777478&view=diff == --- tomcat/site/trunk/xdocs/security-7.xml (original) +++ tomcat/site/trunk/xdocs/security-7.xml Thu Jan 5 16:08:13 2017 @@ -65,7 +65,7 @@ This was fixed in revision 1777471. This issue was identified as affecting 7.0.x by the Apache Tomcat Security - Team on 3 January 2016 and made public on 5 January 207. + Team on 3 January 2016 and made public on 5 January 2017. Affects: 7.0.0 to 7.0.73 Modified: tomcat/site/trunk/xdocs/security-8.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/security-8.xml?rev=1777478&r1=1777477&r2=1777478&view=diff == --- tomcat/site/trunk/xdocs/security-8.xml (original) +++ tomcat/site/trunk/xdocs/security-8.xml Thu Jan 5 16:08:13 2017 @@ -65,7 +65,7 @@ This was fixed in revision 1777469. This issue was identified as affecting 8.0.x by the Apache Tomcat Security - Team on 3 January 2016 and made public on 5 January 207. + Team on 3 January 2016 and made public on 5 January 2017. Affects: 8.0.0.RC1 to 8.0.39 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: svn commit: r1777473 - in /tomcat/site/trunk: docs/security-6.html docs/security-7.html docs/security-8.html docs/security-9.html xdocs/security-6.xml xdocs/security-7.xml xdocs/security-8.xml xdo
On 05/01/2017 15:47, Emmanuel Bourg wrote: > Le 5/01/2017 à 16:11, ma...@apache.org a écrit : > >> +This issue was identified as affecting 6.0.x by the Apache Tomcat >> Security >> + Team on 3 January 2016 and made public on 5 January 207. > > Hi Mark, > > There is a typo on the disclosure date. Whoops. Fixed. Thanks. Mark - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 60557] New: Tomcat does not resolve symlinks for conf/server.xml
https://bz.apache.org/bugzilla/show_bug.cgi?id=60557 Bug ID: 60557 Summary: Tomcat does not resolve symlinks for conf/server.xml Product: Tomcat 8 Version: 8.5.x-trunk Hardware: PC OS: Linux Status: NEW Severity: normal Priority: P2 Component: Catalina Assignee: dev@tomcat.apache.org Reporter: a...@boxfuse.com Target Milestone: Tomcat fails to start when server.xml is a symlink (resolving to a valid file) instead of an actual file. This is the message: WARNING: Unable to load server configuration from [/tomcat/conf/server.xml] SEVERE: Cannot start server. Server instance is not configured. Copying the file to the symlink location fixes the issue, but in the Linux world that really shouldn't have to be the case. -- 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 60557] Tomcat does not resolve symlinks for conf/server.xml
https://bz.apache.org/bugzilla/show_bug.cgi?id=60557 Mark Thomas changed: What|Removed |Added Resolution|--- |WORKSFORME Status|NEW |RESOLVED --- Comment #1 from Mark Thomas --- Tomcat starts quite happily for me if server.xml is a symlink. It looks like you are using a 3rd-party re-packaged version of Tomcat. You probably need to contact the packagers. To be sure it is a packaging issue, I recommend downloading a Tomcat distribution from the ASF and confirming symlinks work correctly. If you still see an issue with the ASF distibution, feel free to re-open this bug but you'll need to provide the exact steps to reproduce from a clean install of the latest stable 8.5.x release. -- 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 60035] java.io.IOException: Too many open files
https://bz.apache.org/bugzilla/show_bug.cgi?id=60035 Mark Thomas changed: What|Removed |Added CC||dracu...@hotmail.com --- Comment #11 from Mark Thomas --- *** Bug 60555 has been marked as a duplicate of this bug. *** -- 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 60555] run by ssl and port:443 close_wait
https://bz.apache.org/bugzilla/show_bug.cgi?id=60555 Mark Thomas changed: What|Removed |Added Status|NEW |RESOLVED Resolution|--- |DUPLICATE --- Comment #1 from Mark Thomas --- *** This bug has been marked as a duplicate of bug 60035 *** -- 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 59797] Per thread error hash grows indefinitely
https://bz.apache.org/bugzilla/show_bug.cgi?id=59797 --- Comment #8 from NateC --- Created attachment 34597 --> https://bz.apache.org/bugzilla/attachment.cgi?id=34597&action=edit Native only patch to release ssl errors on thread exit I took a look at how openssl implemented error releasing in 1.1, which now does it automatically and used that to implement similar behavior in tomcat-native. On windows clean up is invoked on thread detach and on other platforms a thread local with a destructor is used. Whenever ERR_clear_error or ERR_get_error is called the thread local is set. When the thread exits the destructor will be invoked on any thread which does not have a NULL value for the thread local. I tested this with openssl 1.0.2. I compiled tomcat native against 1.1.0 but I have not done any windows testing since I don't have a windows build system. -- 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: r1777517 - in /tomcat/tags/TOMCAT_9_0_0_M16: ./ build.properties.default webapps/docs/changelog.xml
Author: markt Date: Thu Jan 5 22:46:29 2017 New Revision: 1777517 URL: http://svn.apache.org/viewvc?rev=1777517&view=rev Log: Tag 9.0.0.M16 Added: tomcat/tags/TOMCAT_9_0_0_M16/ - copied from r1777516, tomcat/trunk/ Modified: tomcat/tags/TOMCAT_9_0_0_M16/build.properties.default tomcat/tags/TOMCAT_9_0_0_M16/webapps/docs/changelog.xml Modified: tomcat/tags/TOMCAT_9_0_0_M16/build.properties.default URL: http://svn.apache.org/viewvc/tomcat/tags/TOMCAT_9_0_0_M16/build.properties.default?rev=1777517&r1=1777516&r2=1777517&view=diff == --- tomcat/tags/TOMCAT_9_0_0_M16/build.properties.default (original) +++ tomcat/tags/TOMCAT_9_0_0_M16/build.properties.default Thu Jan 5 22:46:29 2017 @@ -27,7 +27,7 @@ version.major=9 version.minor=0 version.build=0 version.patch=0 -version.suffix=.M16-dev +version.suffix=.M16 # - Build control flags - # Note enabling validation uses Checkstyle which is LGPL licensed Modified: tomcat/tags/TOMCAT_9_0_0_M16/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tags/TOMCAT_9_0_0_M16/webapps/docs/changelog.xml?rev=1777517&r1=1777516&r2=1777517&view=diff == --- tomcat/tags/TOMCAT_9_0_0_M16/webapps/docs/changelog.xml (original) +++ tomcat/tags/TOMCAT_9_0_0_M16/webapps/docs/changelog.xml Thu Jan 5 22:46:29 2017 @@ -44,7 +44,7 @@ They eventually become mixed with the numbered issues. (I.e., numbered issues do not "pop up" wrt. others). --> - + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1777519 - in /tomcat/tc8.5.x/tags/TOMCAT_8_5_10: ./ build.properties.default webapps/docs/changelog.xml
Author: markt Date: Thu Jan 5 22:51:35 2017 New Revision: 1777519 URL: http://svn.apache.org/viewvc?rev=1777519&view=rev Log: Tag 8.5.10 Added: tomcat/tc8.5.x/tags/TOMCAT_8_5_10/ (props changed) - copied from r1777517, tomcat/tc8.5.x/trunk/ Modified: tomcat/tc8.5.x/tags/TOMCAT_8_5_10/build.properties.default tomcat/tc8.5.x/tags/TOMCAT_8_5_10/webapps/docs/changelog.xml Propchange: tomcat/tc8.5.x/tags/TOMCAT_8_5_10/ -- bugtraq:append = false Propchange: tomcat/tc8.5.x/tags/TOMCAT_8_5_10/ -- bugtraq:label = Bugzilla ID (optional) Propchange: tomcat/tc8.5.x/tags/TOMCAT_8_5_10/ -- --- bugtraq:logregex (added) +++ bugtraq:logregex Thu Jan 5 22:51:35 2017 @@ -0,0 +1,2 @@ +(https?\://(bz|issues)\.apache\.org/bugzilla/show_bug.cgi\?id=\d+|BZ\s?\d+) +(\d+) Propchange: tomcat/tc8.5.x/tags/TOMCAT_8_5_10/ -- bugtraq:message = Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=%BUGID% Propchange: tomcat/tc8.5.x/tags/TOMCAT_8_5_10/ -- bugtraq:url = https://bz.apache.org/bugzilla/show_bug.cgi?id=%BUGID% Propchange: tomcat/tc8.5.x/tags/TOMCAT_8_5_10/ -- --- svn:ignore (added) +++ svn:ignore Thu Jan 5 22:51:35 2017 @@ -0,0 +1,8 @@ +.* +build.properties +logs +nbproject +output +work +*.iml +temp Propchange: tomcat/tc8.5.x/tags/TOMCAT_8_5_10/ -- --- svn:mergeinfo (added) +++ svn:mergeinfo Thu Jan 5 22:51:35 2017 @@ -0,0 +1 @@ +/tomcat/trunk:1734785,1734799,1734845,1734928,1735041,1735044,1735480,1735577,1735597,1735599-1735600,1735615,1736145,1736162,1736209,1736280,1736297,1736299,1736489,1736646,1736703,1736836,1736849,1737104-1737105,1737112,1737117,1737119-1737120,1737155,1737157,1737192,1737280,1737339,1737632,1737664,1737715,1737748,1737785,1737834,1737860,1737903,1737959,1738005,1738007,1738014-1738015,1738018,1738022,1738039,1738043,1738059-1738060,1738147,1738149,1738174-1738175,1738261,1738589,1738623-1738625,1738643,1738816,1738850,1738855,1738946-1738948,1738953-1738954,1738979,1738982,1739079-1739081,1739087,1739113,1739153,1739172,1739176,1739191,1739474,1739726,1739762,1739775,1739814,1739817-1739818,1739975,1740131,1740324,1740465,1740495,1740508-1740509,1740520,1740535,1740707,1740803,1740810,1740969,1740980,1740991,1740997,1741015,1741033,1741036,1741058,1741060,1741080,1741147,1741159,1741164,1741173,1741181,1741190,1741197,1741202,1741208,1741213,1741221,1741225,1741232,1741409,1741501 ,1741677,1741892,1741896,1741984,1742023,1742042,1742071,1742090,1742093,1742101,1742105,1742111,1742139,1742146,1742148,1742166,1742181,1742184,1742187,1742246,1742248-1742251,1742263-1742264,1742268,1742276,1742369,1742387,1742448,1742509-1742512,1742917,1742919,1742933,1742975-1742976,1742984,1742986,1743019,1743115,1743117,1743124-1743125,1743134,1743425,1743554,1743679,1743696-1743698,1743700-1743701,1744058,1744064-1744065,1744125,1744194,1744229,1744270,1744323,1744432,1744684,1744697,1744705,1744713,1744760,1744786,1745083,1745142-1745143,1745145,1745177,1745179-1745180,1745227,1745248,1745254,1745337,1745467,1745473,1745576,1745735,1745744,1746304,1746306-1746307,1746319,1746327,1746338,1746340-1746341,1746344,1746427,1746441,1746473,1746490,1746492,1746495-1746496,1746499-1746501,1746503-1746507,1746509,1746549,1746551,1746554,1746556,1746558,1746584,1746620,1746649,1746724,1746939,1746989,1747014,1747028,1747035,1747210,1747225,1747234,1747253,1747404,1747506,1747536,1747 924,1747980,1747993,1748001,1748253,1748452,1748547,1748629,1748676,1748715,1749287,1749296,1749328,1749373,1749465,1749506,1749508,1749665-1749666,1749763,1749865-1749866,1749898,1749978,1749980,1750011,1750015,1750056,1750480,1750617,1750634,1750692,1750697,1750700,1750703,1750707,1750714,1750718,1750723,1750774,1750899,1750975,1750995,1751061,1751097,1751173,1751438,1751447,1751463,1751702,1752212,1752737,1752745,1753078,1753080,1753358,1753363,1754111,1754140-1754141,1754281,1754310,1754445,1754467,1754494,1754496,1754528,1754532-1754533,1754613,1754714,1754874,1754941,1754944,1754950-1754951,1755005,1755007,1755009,1755132,1755180-1755181,1755185,1755190,1755204-1755206,1755208,1755214,1755224,1755227,1755230,1755629,1755646-1755647,1755650,1755653,1755675,1755680,1755683,1755693,1755717,1755731-1755737,1755812,1755828,1755884,1755890,1755918-1755919,1755942,1755958,1755960,1755970,1755993,1756013,1756019,1756039,1756056,1756083-1756114,1756175,1756288-1756289,1756408-1756410,1 756778,1756798,1756878,1756898,1756939,1757123-1757124,1757126,1757128,1757132-1757133,1
svn commit: r17677 - /release/tomcat/tomcat-9/v9.0.0.M13/
Author: markt Date: Thu Jan 5 22:57:25 2017 New Revision: 17677 Log: Drop old release from mirrors Removed: release/tomcat/tomcat-9/v9.0.0.M13/ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r17678 - /release/tomcat/tomcat-8/v8.5.8/
Author: markt Date: Thu Jan 5 22:57:42 2017 New Revision: 17678 Log: Drop old release from mirrors Removed: release/tomcat/tomcat-8/v8.5.8/ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1777520 - in /tomcat/trunk: build.properties.default res/maven/mvn.properties.default webapps/docs/changelog.xml
Author: markt Date: Thu Jan 5 23:01:00 2017 New Revision: 1777520 URL: http://svn.apache.org/viewvc?rev=1777520&view=rev Log: Update version for next development cycle Modified: tomcat/trunk/build.properties.default tomcat/trunk/res/maven/mvn.properties.default tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/build.properties.default URL: http://svn.apache.org/viewvc/tomcat/trunk/build.properties.default?rev=1777520&r1=1777519&r2=1777520&view=diff == --- tomcat/trunk/build.properties.default (original) +++ tomcat/trunk/build.properties.default Thu Jan 5 23:01:00 2017 @@ -27,7 +27,7 @@ version.major=9 version.minor=0 version.build=0 version.patch=0 -version.suffix=.M16-dev +version.suffix=.M17-dev # - Build control flags - # Note enabling validation uses Checkstyle which is LGPL licensed Modified: tomcat/trunk/res/maven/mvn.properties.default URL: http://svn.apache.org/viewvc/tomcat/trunk/res/maven/mvn.properties.default?rev=1777520&r1=1777519&r2=1777520&view=diff == --- tomcat/trunk/res/maven/mvn.properties.default (original) +++ tomcat/trunk/res/maven/mvn.properties.default Thu Jan 5 23:01:00 2017 @@ -35,7 +35,7 @@ maven.asf.release.repo.url=https://repos maven.asf.release.repo.repositoryId=apache.releases # Release version info -maven.asf.release.deploy.version=9.0.0.M16 +maven.asf.release.deploy.version=9.0.0.M17 #Where do we load the libraries from tomcat.lib.path=../../output/build/lib Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1777520&r1=1777519&r2=1777520&view=diff == --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Thu Jan 5 23:01:00 2017 @@ -44,7 +44,9 @@ They eventually become mixed with the numbered issues. (I.e., numbered issues do not "pop up" wrt. others). --> - + + + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r17679 [2/2] - in /dev/tomcat/tomcat-9/v9.0.0.M16: ./ bin/ bin/embed/ bin/extras/ src/
Added: dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.tar.gz.md5 == --- dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.tar.gz.md5 (added) +++ dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.tar.gz.md5 Thu Jan 5 23:13:48 2017 @@ -0,0 +1 @@ +b5d0f33162a822637ceaca7987826b12 *apache-tomcat-9.0.0.M16-src.tar.gz \ No newline at end of file Added: dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.tar.gz.sha1 == --- dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.tar.gz.sha1 (added) +++ dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.tar.gz.sha1 Thu Jan 5 23:13:48 2017 @@ -0,0 +1 @@ +be22d672b350e2fa13959bab1b7c209d3ceaaffa *apache-tomcat-9.0.0.M16-src.tar.gz \ No newline at end of file Added: dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.zip == Binary file - no diff available. Propchange: dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.zip -- svn:mime-type = application/octet-stream Added: dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.zip.asc == --- dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.zip.asc (added) +++ dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.zip.asc Thu Jan 5 23:13:48 2017 @@ -0,0 +1,17 @@ +-BEGIN PGP SIGNATURE- +Version: GnuPG v2 + +iQIcBAABCAAGBQJYbs5mAAoJEBDAHFovYFnnt74QANTLwE+lf0IAPW9LuzX14AGm +h9SGZWKvyGMhA/SBiYa31QCbfH7MYfJ3w698ku6MD1og8G0XH4McV2RRhZyR3vPe +OpRv8Z7UELoCgUNdSML8XUIeWIxaaDhjWF4Cu1f7PTXjzqstYcztVTYKoLDABi+H +y5FB+maSevGNbV4Xg048EmuWJJdZo6nw9BDoyVpjZyEs3iI8fULSiZJbgQ4CXU13 +WBjAHDuxpQjaGBiXWbOXdWK9dRI7wFq09g65VH5B5QJd5825NgKzMkJ4Y9k5q9lA +GIwth9FHlcR5C/uefcXbVNvPYGTI97Bc6H15JN+TQEaNhujx+d/Un0F1ylk0DhHa +PezhTLlyMGBBkWBUDgnAZ84KAWn5JdFFz4+Hsx3uy8yIxMcJsTlZ74X9pjffoSeH +tUZhGxnXdxVTeODpU47Y1rFfw0MkOwwy4vGhV2W6TjyxhefsVEu4rcj205XayWTP +SNHGJ/YKp9bRsV8oNrCaVMgspboPHxdJcJt/pZuXP+GXchth7e8lBS9gDl9y9B4C +jtFhWgXHaP75IoY08h5BTI6Ub4AjXOM/Rt68Wo73+kDVVs8o0nt0k+fz0s7xApRz ++m+Fp5WoBEJkcTcOaPSmVeTWTdXY9hzI3qoGoQTw4K1UQs0PY4M7NCvLzish2tbX +9p43SlIm/QG+TVi3D69H +=AEEJ +-END PGP SIGNATURE- Added: dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.zip.md5 == --- dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.zip.md5 (added) +++ dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.zip.md5 Thu Jan 5 23:13:48 2017 @@ -0,0 +1 @@ +f64e128d70f39a6b853e3bb3b4d57cb3 *apache-tomcat-9.0.0.M16-src.zip \ No newline at end of file Added: dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.zip.sha1 == --- dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.zip.sha1 (added) +++ dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.zip.sha1 Thu Jan 5 23:13:48 2017 @@ -0,0 +1 @@ +8e9845cd22c710b146b91d1c2bb457f6084c4d56 *apache-tomcat-9.0.0.M16-src.zip \ No newline at end of file - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r17679 [1/2] - in /dev/tomcat/tomcat-9/v9.0.0.M16: ./ bin/ bin/embed/ bin/extras/ src/
Author: markt Date: Thu Jan 5 23:13:48 2017 New Revision: 17679 Log: Upload 9.0.0.M16 for voting Added: dev/tomcat/tomcat-9/v9.0.0.M16/ dev/tomcat/tomcat-9/v9.0.0.M16/KEYS (with props) dev/tomcat/tomcat-9/v9.0.0.M16/README.html (with props) dev/tomcat/tomcat-9/v9.0.0.M16/RELEASE-NOTES dev/tomcat/tomcat-9/v9.0.0.M16/bin/ dev/tomcat/tomcat-9/v9.0.0.M16/bin/README.html (with props) dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-deployer.tar.gz (with props) dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-deployer.tar.gz.asc dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-deployer.tar.gz.md5 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-deployer.tar.gz.sha1 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-deployer.zip (with props) dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-deployer.zip.asc dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-deployer.zip.md5 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-deployer.zip.sha1 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-fulldocs.tar.gz (with props) dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-fulldocs.tar.gz.asc dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-fulldocs.tar.gz.md5 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-fulldocs.tar.gz.sha1 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-windows-x64.zip (with props) dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-windows-x64.zip.asc dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-windows-x64.zip.md5 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-windows-x64.zip.sha1 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-windows-x86.zip (with props) dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-windows-x86.zip.asc dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-windows-x86.zip.md5 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16-windows-x86.zip.sha1 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16.exe (with props) dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16.exe.asc dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16.exe.md5 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16.exe.sha1 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16.tar.gz (with props) dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16.tar.gz.asc dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16.tar.gz.md5 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16.tar.gz.sha1 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16.zip (with props) dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16.zip.asc dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16.zip.md5 dev/tomcat/tomcat-9/v9.0.0.M16/bin/apache-tomcat-9.0.0.M16.zip.sha1 dev/tomcat/tomcat-9/v9.0.0.M16/bin/embed/ dev/tomcat/tomcat-9/v9.0.0.M16/bin/embed/apache-tomcat-9.0.0.M16-embed.tar.gz (with props) dev/tomcat/tomcat-9/v9.0.0.M16/bin/embed/apache-tomcat-9.0.0.M16-embed.tar.gz.asc dev/tomcat/tomcat-9/v9.0.0.M16/bin/embed/apache-tomcat-9.0.0.M16-embed.tar.gz.md5 dev/tomcat/tomcat-9/v9.0.0.M16/bin/embed/apache-tomcat-9.0.0.M16-embed.tar.gz.sha1 dev/tomcat/tomcat-9/v9.0.0.M16/bin/embed/apache-tomcat-9.0.0.M16-embed.zip (with props) dev/tomcat/tomcat-9/v9.0.0.M16/bin/embed/apache-tomcat-9.0.0.M16-embed.zip.asc dev/tomcat/tomcat-9/v9.0.0.M16/bin/embed/apache-tomcat-9.0.0.M16-embed.zip.md5 dev/tomcat/tomcat-9/v9.0.0.M16/bin/embed/apache-tomcat-9.0.0.M16-embed.zip.sha1 dev/tomcat/tomcat-9/v9.0.0.M16/bin/extras/ dev/tomcat/tomcat-9/v9.0.0.M16/bin/extras/catalina-jmx-remote.jar (with props) dev/tomcat/tomcat-9/v9.0.0.M16/bin/extras/catalina-jmx-remote.jar.asc dev/tomcat/tomcat-9/v9.0.0.M16/bin/extras/catalina-jmx-remote.jar.md5 dev/tomcat/tomcat-9/v9.0.0.M16/bin/extras/catalina-jmx-remote.jar.sha1 dev/tomcat/tomcat-9/v9.0.0.M16/bin/extras/catalina-ws.jar (with props) dev/tomcat/tomcat-9/v9.0.0.M16/bin/extras/catalina-ws.jar.asc dev/tomcat/tomcat-9/v9.0.0.M16/bin/extras/catalina-ws.jar.md5 dev/tomcat/tomcat-9/v9.0.0.M16/bin/extras/catalina-ws.jar.sha1 dev/tomcat/tomcat-9/v9.0.0.M16/src/ dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.tar.gz (with props) dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.tar.gz.asc dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.tar.gz.md5 dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.tar.gz.sha1 dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.zip (with props) dev/tomcat/tomcat-9/v9.0.0.M16/src/apache-tomcat-9.0.0.M16-src.zip.asc dev/tomcat/tomcat-9/v9.0.0.M16/src/apa
svn commit: r1777524 - in /tomcat/trunk: build.properties.default webapps/docs/changelog.xml
Author: markt Date: Thu Jan 5 23:30:46 2017 New Revision: 1777524 URL: http://svn.apache.org/viewvc?rev=1777524&view=rev Log: Update NSIS to 3.01 Modified: tomcat/trunk/build.properties.default tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/build.properties.default URL: http://svn.apache.org/viewvc/tomcat/trunk/build.properties.default?rev=1777524&r1=1777523&r2=1777524&view=diff == --- tomcat/trunk/build.properties.default (original) +++ tomcat/trunk/build.properties.default Thu Jan 5 23:30:46 2017 @@ -133,7 +133,7 @@ tomcat-native.win.1=${base-tomcat.loc.1} tomcat-native.win.2=${base-tomcat.loc.2}/tomcat-connectors/native/${tomcat-native.version}/binaries/tomcat-native-${tomcat-native.version}-win32-bin.zip # - NSIS, version 3.0 or later - -nsis.version=3.0 +nsis.version=3.01 nsis.home=${base.path}/nsis-${nsis.version} nsis.exe=${nsis.home}/makensis.exe nsis.installoptions.dll=${nsis.home}/Plugins/x86-unicode/InstallOptions.dll Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1777524&r1=1777523&r2=1777524&view=diff == --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Thu Jan 5 23:30:46 2017 @@ -45,6 +45,14 @@ issues do not "pop up" wrt. others). --> + + + +Update the NSIS Installer used to build the Windows installer to version +3.01. (markt) + + + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r17680 [1/2] - in /dev/tomcat/tomcat-8/v8.5.10: ./ bin/ bin/embed/ bin/extras/ src/
Author: markt Date: Thu Jan 5 23:33:35 2017 New Revision: 17680 Log: Upload 8.5.10 for voting Added: dev/tomcat/tomcat-8/v8.5.10/ dev/tomcat/tomcat-8/v8.5.10/KEYS (with props) dev/tomcat/tomcat-8/v8.5.10/README.html (with props) dev/tomcat/tomcat-8/v8.5.10/RELEASE-NOTES dev/tomcat/tomcat-8/v8.5.10/bin/ dev/tomcat/tomcat-8/v8.5.10/bin/README.html (with props) dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-deployer.tar.gz (with props) dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-deployer.tar.gz.asc dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-deployer.tar.gz.md5 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-deployer.tar.gz.sha1 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-deployer.zip (with props) dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-deployer.zip.asc dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-deployer.zip.md5 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-deployer.zip.sha1 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-fulldocs.tar.gz (with props) dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-fulldocs.tar.gz.asc dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-fulldocs.tar.gz.md5 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-fulldocs.tar.gz.sha1 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-windows-x64.zip (with props) dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-windows-x64.zip.asc dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-windows-x64.zip.md5 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-windows-x64.zip.sha1 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-windows-x86.zip (with props) dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-windows-x86.zip.asc dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-windows-x86.zip.md5 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10-windows-x86.zip.sha1 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10.exe (with props) dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10.exe.asc dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10.exe.md5 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10.exe.sha1 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10.tar.gz (with props) dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10.tar.gz.asc dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10.tar.gz.md5 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10.tar.gz.sha1 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10.zip (with props) dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10.zip.asc dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10.zip.md5 dev/tomcat/tomcat-8/v8.5.10/bin/apache-tomcat-8.5.10.zip.sha1 dev/tomcat/tomcat-8/v8.5.10/bin/embed/ dev/tomcat/tomcat-8/v8.5.10/bin/embed/apache-tomcat-8.5.10-embed.tar.gz (with props) dev/tomcat/tomcat-8/v8.5.10/bin/embed/apache-tomcat-8.5.10-embed.tar.gz.asc dev/tomcat/tomcat-8/v8.5.10/bin/embed/apache-tomcat-8.5.10-embed.tar.gz.md5 dev/tomcat/tomcat-8/v8.5.10/bin/embed/apache-tomcat-8.5.10-embed.tar.gz.sha1 dev/tomcat/tomcat-8/v8.5.10/bin/embed/apache-tomcat-8.5.10-embed.zip (with props) dev/tomcat/tomcat-8/v8.5.10/bin/embed/apache-tomcat-8.5.10-embed.zip.asc dev/tomcat/tomcat-8/v8.5.10/bin/embed/apache-tomcat-8.5.10-embed.zip.md5 dev/tomcat/tomcat-8/v8.5.10/bin/embed/apache-tomcat-8.5.10-embed.zip.sha1 dev/tomcat/tomcat-8/v8.5.10/bin/extras/ dev/tomcat/tomcat-8/v8.5.10/bin/extras/catalina-jmx-remote.jar (with props) dev/tomcat/tomcat-8/v8.5.10/bin/extras/catalina-jmx-remote.jar.asc dev/tomcat/tomcat-8/v8.5.10/bin/extras/catalina-jmx-remote.jar.md5 dev/tomcat/tomcat-8/v8.5.10/bin/extras/catalina-jmx-remote.jar.sha1 dev/tomcat/tomcat-8/v8.5.10/bin/extras/catalina-ws.jar (with props) dev/tomcat/tomcat-8/v8.5.10/bin/extras/catalina-ws.jar.asc dev/tomcat/tomcat-8/v8.5.10/bin/extras/catalina-ws.jar.md5 dev/tomcat/tomcat-8/v8.5.10/bin/extras/catalina-ws.jar.sha1 dev/tomcat/tomcat-8/v8.5.10/src/ dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.tar.gz (with props) dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.tar.gz.asc dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.tar.gz.md5 dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.tar.gz.sha1 dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip (with props) dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip.asc dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip.md5 dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip.sha1 Added: dev/tomcat/tomcat-8/v8.5.10/KEYS == --- dev/tomcat/tomcat-8/v8.5.10/KEYS (added) +++ dev/tomcat/tomcat-8/v8.5.10/KEYS Thu Jan 5 23:33:35 2017 @@ -0,0 +1,616 @@ +This file
svn commit: r17680 [2/2] - in /dev/tomcat/tomcat-8/v8.5.10: ./ bin/ bin/embed/ bin/extras/ src/
Added: dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.tar.gz.sha1 == --- dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.tar.gz.sha1 (added) +++ dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.tar.gz.sha1 Thu Jan 5 23:33:35 2017 @@ -0,0 +1 @@ +bd7c24df4f440783e3efa12f53a161a49f3d25ee *apache-tomcat-8.5.10-src.tar.gz \ No newline at end of file Added: dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip == Binary file - no diff available. Propchange: dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip -- svn:mime-type = application/octet-stream Added: dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip.asc == --- dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip.asc (added) +++ dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip.asc Thu Jan 5 23:33:35 2017 @@ -0,0 +1,17 @@ +-BEGIN PGP SIGNATURE- +Version: GnuPG v2 + +iQIcBAABCAAGBQJYbtDfAAoJEBDAHFovYFnnh/kQAIb6Wdg5V2y+yiWAZ7TByQcs +joVhjOFK5AYxGehkAXV2Td7DA5zNDhiKoh1urlkhyU+cI+hDGGzvyy4x416MJOA3 +/8KkjErWTz/6XEdAuReFLNmMYHrULgumHQZEh8oDoQJL1l20QNmZeHy2lVqJiBAA +HHHwQy9Suv7ZhjFp5oOULqeMOaSEmZa8larhdElTLRJ3J/L6TAr5rWd9zDGmF2+U +GdBvHi3NCsDOsUDRoS993shIIplB92qy2Il14N2EiIhz3g3IYvm85hM2NsHLxDM1 +JqiS4XqpJbOH4gS4z8GXBXSn5gHSLAbJKPsJ3un4PlhutN4dqDOlJklL73BUUui0 +jMeZrnMralNnuVdfoinH3gh14i5O9pVUQJ/uiYRWj2tT9JBuk//KfSwimaajR/wm +WrP0+hKDMTThijNPrTZbZdEplozphMX0I3SYCELYGKxuoWFiczHBEHq0LsVX4a/l +GT5mAmPmXfZ0FIqus0Jif4+7UcwHpZYexbmgY8oIhrjKcLnbbnvHZWpUe/TpijU2 +YYl/COBrz1VBJ9RbBzyPyaDWuGA7XjBsgRXuFapfNsidqzUoRivuNIld7vVcCk2E +WFU1Kx0V7LQqayulNT+zgwE5YmFrl8KJxTmjIvVj9NYC9cIyoLg20QEyPZx3lGDZ +blJBt2HCZWs1drjRV9dA +=J2Hd +-END PGP SIGNATURE- Added: dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip.md5 == --- dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip.md5 (added) +++ dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip.md5 Thu Jan 5 23:33:35 2017 @@ -0,0 +1 @@ +407723ff220ac1d2f6bee1687c33ae28 *apache-tomcat-8.5.10-src.zip \ No newline at end of file Added: dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip.sha1 == --- dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip.sha1 (added) +++ dev/tomcat/tomcat-8/v8.5.10/src/apache-tomcat-8.5.10-src.zip.sha1 Thu Jan 5 23:33:35 2017 @@ -0,0 +1 @@ +85e25ae17ec1b6a0e017230d1f93e9297f9ede07 *apache-tomcat-8.5.10-src.zip \ No newline at end of file - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
buildbot exception in on tomcat-trunk
The Buildbot has detected a build exception on builder tomcat-trunk while building . Full details are available at: https://ci.apache.org/builders/tomcat-trunk/builds/2012 Buildbot URL: https://ci.apache.org/ Buildslave for this Build: silvanus_ubuntu Build Reason: The AnyBranchScheduler scheduler named 'on-tomcat-commit' triggered this build Build Source Stamp: [branch tomcat/trunk] 1777524 Blamelist: markt BUILD FAILED: exception compile upload_2 Sincerely, -The Buildbot - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[VOTE] Release Apache Tomcat 9.0.0.M16
The proposed Apache Tomcat 9.0.0.M16 release is now available for voting. This is a milestone release for the 9.0.x branch. It should be noted that, as a milestone release: - Servlet 4.0 is not finalised - The EGs have not started work on JSP 2.4, EL 3.1 or WebSocket 1.2/2.0 The major changes compared to the 9.0.0.M15 release are: - HTTP/2 fixes and improvements - Simpler JSP file encoding detector that delegates XML prolog encoding detection to the JRE rather than using a custom XML parser. - Improve the logic that selects an address to use to unlock the Acceptor to take account of platforms what do not listen on all local addresses when configured with an address of 0.0.0.0 or :: Along with lots of other bug fixes and improvements For full details, see the changelog: http://svn.apache.org/repos/asf/tomcat/trunk/webapps/docs/changelog.xml It can be obtained from: https://dist.apache.org/repos/dist/dev/tomcat/tomcat-9/v9.0.0.M16/ The Maven staging repo is: https://repository.apache.org/content/repositories/orgapachetomcat-1110/ The svn tag is: http://svn.apache.org/repos/asf/tomcat/tags/TOMCAT_9_0_0_M16/ The proposed 9.0.0.M16 release is: [ ] Broken - do not release [ ] Alpha - go ahead and release as 9.0.0.M16 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[VOTE] Release Apache Tomcat 8.5.10
The proposed Apache Tomcat 8.5.10 release is now available for voting. The major changes compared to the 8.5.9 release are: - HTTP/2 fixes and improvements - Simpler JSP file encoding detector that delegates XML prolog encoding detection to the JRE rather than using a custom XML parser. - Improve the logic that selects an address to use to unlock the Acceptor to take account of platforms what do not listen on all local addresses when configured with an address of 0.0.0.0 or :: It can be obtained from: https://dist.apache.org/repos/dist/dev/tomcat/tomcat-8/v8.5.10/ The Maven staging repo is: https://repository.apache.org/content/repositories/orgapachetomcat-/ The svn tag is: http://svn.apache.org/repos/asf/tomcat/tc8.5.x/tags/TOMCAT_8_5_10/ The proposed 8.5.10 release is: [ ] Broken - do not release [ ] Stable - go ahead and release as 8.5.10 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1777525 - in /tomcat/tc8.5.x/trunk: build.properties.default res/maven/mvn.properties.default webapps/docs/changelog.xml
Author: markt Date: Thu Jan 5 23:40:21 2017 New Revision: 1777525 URL: http://svn.apache.org/viewvc?rev=1777525&view=rev Log: Update version for next development cycle Modified: tomcat/tc8.5.x/trunk/build.properties.default tomcat/tc8.5.x/trunk/res/maven/mvn.properties.default tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc8.5.x/trunk/build.properties.default URL: http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/build.properties.default?rev=1777525&r1=1777524&r2=1777525&view=diff == --- tomcat/tc8.5.x/trunk/build.properties.default (original) +++ tomcat/tc8.5.x/trunk/build.properties.default Thu Jan 5 23:40:21 2017 @@ -25,7 +25,7 @@ # - Version Control Flags - version.major=8 version.minor=5 -version.build=10 +version.build=11 version.patch=0 version.suffix=-dev Modified: tomcat/tc8.5.x/trunk/res/maven/mvn.properties.default URL: http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/res/maven/mvn.properties.default?rev=1777525&r1=1777524&r2=1777525&view=diff == --- tomcat/tc8.5.x/trunk/res/maven/mvn.properties.default (original) +++ tomcat/tc8.5.x/trunk/res/maven/mvn.properties.default Thu Jan 5 23:40:21 2017 @@ -35,7 +35,7 @@ maven.asf.release.repo.url=https://repos maven.asf.release.repo.repositoryId=apache.releases # Release version info -maven.asf.release.deploy.version=8.5.10 +maven.asf.release.deploy.version=8.5.11 #Where do we load the libraries from tomcat.lib.path=../../output/build/lib 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=1777525&r1=1777524&r2=1777525&view=diff == --- tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml Thu Jan 5 23:40:21 2017 @@ -44,7 +44,9 @@ They eventually become mixed with the numbered issues. (I.e., numbered issues do not "pop up" wrt. others). --> - + + + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: [VOTE] Release Apache Tomcat 9.0.0.M16
Hi, The proposed 9.0.0.M16 release is: [ ] Broken - do not release [ X ] Alpha - go ahead and release as 9.0.0.M16 Test cases all pass. Example web app works fine. -- From:Mark Thomas Time:2017 Jan 6 (Fri) 07:37 To:dev@tomcat.apache.org Subject:[VOTE] Release Apache Tomcat 9.0.0.M16 The proposed Apache Tomcat 9.0.0.M16 release is now available for voting. This is a milestone release for the 9.0.x branch. It should be noted that, as a milestone release: - Servlet 4.0 is not finalised - The EGs have not started work on JSP 2.4, EL 3.1 or WebSocket 1.2/2.0 The major changes compared to the 9.0.0.M15 release are: - HTTP/2 fixes and improvements - Simpler JSP file encoding detector that delegates XML prolog encoding detection to the JRE rather than using a custom XML parser. - Improve the logic that selects an address to use to unlock the Acceptor to take account of platforms what do not listen on all local addresses when configured with an address of 0.0.0.0 or :: Along with lots of other bug fixes and improvements For full details, see the changelog: http://svn.apache.org/repos/asf/tomcat/trunk/webapps/docs/changelog.xml It can be obtained from: https://dist.apache.org/repos/dist/dev/tomcat/tomcat-9/v9.0.0.M16/ The Maven staging repo is: https://repository.apache.org/content/repositories/orgapachetomcat-1110/ The svn tag is: http://svn.apache.org/repos/asf/tomcat/tags/TOMCAT_9_0_0_M16/ The proposed 9.0.0.M16 release is: [ ] Broken - do not release [ ] Alpha - go ahead and release as 9.0.0.M16 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org