pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/www/apache-tomcat9 www/apache-tomcat9: Update to 9.0.41
details: https://anonhg.NetBSD.org/pkgsrc/rev/43f9578ee74b
branches: trunk
changeset: 443279:43f9578ee74b
user: otis <otis%pkgsrc.org@localhost>
date: Wed Dec 09 21:34:26 2020 +0000
description:
www/apache-tomcat9: Update to 9.0.41
Changelog for 9.0.41:
- Align the behaviour of ServletContext.getRealPath(String path) with the
recent clarification from the Servlet specification project. If the path
parameter does not start with / then Tomcat processes the call as if / is
appended to the beginning of the provided path.
- Fix a potential file descriptor leak when WebSocket connections are
attempted and fail.
- Ensure that the LoadBalancerDrainingValve uses the correct setting for the
secure attribute for any session cookies it creates.
Changelog for 9.0.40:
- Statistics are now available (via JMX) for HTTP/2, WebSocket and HTTP/1.1
upgraded connections
- Stability improvements for HTTP/2
- Stability improvements for the NIO connector
diffstat:
www/apache-tomcat9/Makefile | 4 ++--
www/apache-tomcat9/PLIST | 15 +++++++--------
www/apache-tomcat9/distinfo | 10 +++++-----
3 files changed, 14 insertions(+), 15 deletions(-)
diffs (95 lines):
diff -r ff0623d5e716 -r 43f9578ee74b www/apache-tomcat9/Makefile
--- a/www/apache-tomcat9/Makefile Wed Dec 09 20:51:19 2020 +0000
+++ b/www/apache-tomcat9/Makefile Wed Dec 09 21:34:26 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2020/10/15 16:12:22 otis Exp $
+# $NetBSD: Makefile,v 1.11 2020/12/09 21:34:26 otis Exp $
#
DISTNAME= apache-tomcat-${TOMCAT_VER}
@@ -24,7 +24,7 @@
.include "../../mk/bsd.prefs.mk"
-TOMCAT_VER= 9.0.39
+TOMCAT_VER= 9.0.41
TOMCAT_HOME= ${PREFIX}/share/tomcat
EGDIR= ${PREFIX}/share/examples/tomcat
DOCDIR= ${PREFIX}/share/doc/tomcat
diff -r ff0623d5e716 -r 43f9578ee74b www/apache-tomcat9/PLIST
--- a/www/apache-tomcat9/PLIST Wed Dec 09 20:51:19 2020 +0000
+++ b/www/apache-tomcat9/PLIST Wed Dec 09 21:34:26 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2020/10/05 12:09:54 otis Exp $
+@comment $NetBSD: PLIST,v 1.8 2020/12/09 21:34:26 otis Exp $
share/doc/tomcat/LICENSE
share/doc/tomcat/NOTICE
share/doc/tomcat/RELEASE-NOTES
@@ -40,7 +40,7 @@
share/tomcat/lib/catalina-storeconfig.jar
share/tomcat/lib/catalina-tribes.jar
share/tomcat/lib/catalina.jar
-share/tomcat/lib/ecj-4.15.jar
+share/tomcat/lib/ecj-4.17.jar
share/tomcat/lib/el-api.jar
share/tomcat/lib/jasper-el.jar
share/tomcat/lib/jasper.jar
@@ -74,10 +74,7 @@
share/tomcat/webapps/ROOT/bg-upper.png
share/tomcat/webapps/ROOT/favicon.ico
share/tomcat/webapps/ROOT/index.jsp
-share/tomcat/webapps/ROOT/tomcat-power.gif
share/tomcat/webapps/ROOT/tomcat.css
-share/tomcat/webapps/ROOT/tomcat.gif
-share/tomcat/webapps/ROOT/tomcat.png
share/tomcat/webapps/ROOT/tomcat.svg
share/tomcat/webapps/docs/BUILDING.txt
share/tomcat/webapps/docs/RELEASE-NOTES.txt
@@ -98,8 +95,8 @@
share/tomcat/webapps/docs/appdev/sample/sample.war
share/tomcat/webapps/docs/appdev/sample/src/mypackage/Hello.java
share/tomcat/webapps/docs/appdev/sample/web/WEB-INF/web.xml
+share/tomcat/webapps/docs/appdev/sample/web/images/tomcat.gif
share/tomcat/webapps/docs/appdev/sample/web/hello.jsp
-share/tomcat/webapps/docs/appdev/sample/web/images/tomcat.gif
share/tomcat/webapps/docs/appdev/sample/web/index.html
share/tomcat/webapps/docs/appdev/source.html
share/tomcat/webapps/docs/appdev/web.xml.txt
@@ -220,6 +217,7 @@
share/tomcat/webapps/docs/websocketapi/index.html
share/tomcat/webapps/docs/windows-auth-howto.html
share/tomcat/webapps/docs/windows-service-howto.html
+share/tomcat/webapps/examples/META-INF/context.xml
share/tomcat/webapps/examples/WEB-INF/classes/CookieExample.class
share/tomcat/webapps/examples/WEB-INF/classes/CookieExample.java
share/tomcat/webapps/examples/WEB-INF/classes/HelloWorldExample.class
@@ -607,11 +605,12 @@
share/tomcat/webapps/host-manager/WEB-INF/jsp/401.jsp
share/tomcat/webapps/host-manager/WEB-INF/jsp/403.jsp
share/tomcat/webapps/host-manager/WEB-INF/jsp/404.jsp
+share/tomcat/webapps/host-manager/WEB-INF/manager.xml
share/tomcat/webapps/host-manager/WEB-INF/web.xml
+share/tomcat/webapps/host-manager/css/manager.css
share/tomcat/webapps/host-manager/images/asf-logo.svg
-share/tomcat/webapps/host-manager/images/tomcat.gif
+share/tomcat/webapps/host-manager/images/tomcat.svg
share/tomcat/webapps/host-manager/index.jsp
-share/tomcat/webapps/host-manager/manager.xml
share/tomcat/webapps/manager/META-INF/context.xml
share/tomcat/webapps/manager/WEB-INF/jsp/401.jsp
share/tomcat/webapps/manager/WEB-INF/jsp/403.jsp
diff -r ff0623d5e716 -r 43f9578ee74b www/apache-tomcat9/distinfo
--- a/www/apache-tomcat9/distinfo Wed Dec 09 20:51:19 2020 +0000
+++ b/www/apache-tomcat9/distinfo Wed Dec 09 21:34:26 2020 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.8 2020/10/15 16:12:22 otis Exp $
+$NetBSD: distinfo,v 1.9 2020/12/09 21:34:26 otis Exp $
-SHA1 (apache-tomcat-9.0.39.tar.gz) = 3e8b354adeffc84c9a6e049de396209fd1f57ebf
-RMD160 (apache-tomcat-9.0.39.tar.gz) = 962294cc70f053c75d97dc3a6630d6bf4bafcd5f
-SHA512 (apache-tomcat-9.0.39.tar.gz) = 307ca646bac267e529fb0862278f7133fe80813f0af64a44aed949f4c7a9a98aeb9bd7f08b087645b40c6fefdd3a7fe519e4858a3dbf0a19c38c53704f92b575
-Size (apache-tomcat-9.0.39.tar.gz) = 11282879 bytes
+SHA1 (apache-tomcat-9.0.41.tar.gz) = c2a51a762ddac597030a4b178bfa53fd64c1b9cb
+RMD160 (apache-tomcat-9.0.41.tar.gz) = 9a9eeb7fda32d03029324bb40f5271bd8ca14fd8
+SHA512 (apache-tomcat-9.0.41.tar.gz) = b6450e590a37c5bccf049b1176c441f0964796995e80d4c7c7d9fb74f9ad817107c303b6b83ed3d71c9251b2b8acf334b90a4abdf9deea122e338643cece0766
+Size (apache-tomcat-9.0.41.tar.gz) = 11442169 bytes
Home |
Main Index |
Thread Index |
Old Index