pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/apache-tomcat8



Module Name:    pkgsrc
Committed By:   ryoon
Date:           Sat May 20 23:43:54 UTC 2017

Modified Files:
        pkgsrc/www/apache-tomcat8: Makefile PLIST distinfo

Log Message:
Update to 8.0.44

Changelog:
Tomcat 8.0.44 (violetagg)
General

    Add: Allow to exclude JUnit test classes using the build property test.exclude and document the property in BUILDING.txt. (rjung)

Catalina

    Fix: 60940: Improve the handling of the META-INF/ and META-INF/MANIFEST.MF entries for Jar files located in /WEB-INF/lib when running a web application from a packed WAR file. (markt)
    Fix: Pre-load the ExceptionUtils class. Since the class is used extensively in error handling, it is prudent to pre-load it to avoid any failure to load this class masking the true problem during 
error handling. (markt)
    Fix: Review those places where Tomcat re-encodes a URI or URI component and ensure that that correct encoding (path differs from query string) is applied and that the encoding is applied 
consistently. (markt)
    Fix: Use a more reliable mechanism for the DefaultServlet when determining if the current request is for custom error page or not. (markt)
    Fix: Ensure that when the Default or WebDAV servlets process an error dispatch that the error resource is processed via the doGet() method irrespective of the method used for the original request 
that triggered the error. (markt)
    Fix: If a static custom error page is specified that does not exist or cannot be read, ensure that the intended error status is returned rather than a 404 or 403. (markt)
    Fix: When the WebDAV servlet is configured and an error dispatch is made to a custom error page located below WEB-INF, ensure that the target error page is displayed rather than a 404 response. 
(markt)
    Add: 61047: Add MIME mapping for woff2 fonts in the default web.xml. Patch provided by Justin Williamson. (violetagg)
    Fix: Correct the logic that selects the encoding to use to decode the query string in the SSIServletExternalResolver so that the useBodyEncodingForURI attribute of the Connector is correctly 
taken into account. (markt)
    Fix: 61072: Respect the documentation statements that allow using the platform default secure random for session id generation. (remm)
    Fix: Correct the javadoc for o.a.c.connector.CoyoteAdapter#parseSessionCookiesId. Patch provided by John Andrew (XUZHOUWANG) via Github. (violetagg)

Jasper

    Fix: 60925: Improve the handling of access to properties defined by interfaces when a BeanELResolver is used under a SecurityManager. (markt)
    Update: 61057: Update to Eclipse JDT Compiler 4.6.3. (violetagg)
    Fix: 61065: Ensure that once the class is resolved by javax.el.ImportHandler#resolveClass it will be cached with the proper name. (violetagg)

WebSocket

    Fix: 61003: Ensure the flags for reading/writing in o.a.t.websocket.AsyncChannelWrapperSecure are correctly reset even if some exceptions occurred during processing. (markt/violetagg)

Web applications

    Add: Document test.threads option in BUILDING.txt. (kkolinko, rjung)
    Add: Add documents for maxIdleTime attribute to Channel Receiver docs. (kfujino)

jdbc-pool

    Code: Refactor the creating a constructor for a proxy class to reduce duplicate code. (kfujino)
    Fix: In StatementFacade, the method call on the statements that have been closed throw SQLException rather than NullPointerException. (kfujino)

Other

    Fix: Correct comments about Java 8 in Jre8Compat. Patch provided by fibbers via Github. (violetagg)
    Fix: 60932: Correctly escape single quotes when used in i18n messages. Based on a patch by Michael Osipov. (markt)
    Fix: Update the custom Ant task that integrates with the Symantec code signing service to use the now mandatory 2-factor authentication. (markt)


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/www/apache-tomcat8/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/apache-tomcat8/PLIST
cvs rdiff -u -r1.12 -r1.13 pkgsrc/www/apache-tomcat8/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/apache-tomcat8/Makefile
diff -u pkgsrc/www/apache-tomcat8/Makefile:1.11 pkgsrc/www/apache-tomcat8/Makefile:1.12
--- pkgsrc/www/apache-tomcat8/Makefile:1.11     Mon Apr 10 10:33:43 2017
+++ pkgsrc/www/apache-tomcat8/Makefile  Sat May 20 23:43:54 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2017/04/10 10:33:43 ryoon Exp $
+# $NetBSD: Makefile,v 1.12 2017/05/20 23:43:54 ryoon Exp $
 #
 
 DISTNAME=      apache-tomcat-${TOMCAT_VER}
@@ -21,7 +21,7 @@ USE_TOOLS+=   pax
 
 .include "../../mk/bsd.prefs.mk"
 
-TOMCAT_VER=            8.0.43
+TOMCAT_VER=            8.0.44
 TOMCAT_HOME=           ${PREFIX}/share/tomcat
 EGDIR=                 ${PREFIX}/share/examples/tomcat
 DOCDIR=                        ${PREFIX}/share/doc/tomcat

Index: pkgsrc/www/apache-tomcat8/PLIST
diff -u pkgsrc/www/apache-tomcat8/PLIST:1.8 pkgsrc/www/apache-tomcat8/PLIST:1.9
--- pkgsrc/www/apache-tomcat8/PLIST:1.8 Mon Apr 10 10:33:43 2017
+++ pkgsrc/www/apache-tomcat8/PLIST     Sat May 20 23:43:54 2017
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.8 2017/04/10 10:33:43 ryoon Exp $
+@comment $NetBSD: PLIST,v 1.9 2017/05/20 23:43:54 ryoon Exp $
 share/doc/tomcat/LICENSE
 share/doc/tomcat/NOTICE
 share/doc/tomcat/RELEASE-NOTES
@@ -32,7 +32,7 @@ share/tomcat/lib/catalina-ha.jar
 share/tomcat/lib/catalina-storeconfig.jar
 share/tomcat/lib/catalina-tribes.jar
 share/tomcat/lib/catalina.jar
-share/tomcat/lib/ecj-4.6.1.jar
+share/tomcat/lib/ecj-4.6.3.jar
 share/tomcat/lib/el-api.jar
 share/tomcat/lib/jasper-el.jar
 share/tomcat/lib/jasper.jar

Index: pkgsrc/www/apache-tomcat8/distinfo
diff -u pkgsrc/www/apache-tomcat8/distinfo:1.12 pkgsrc/www/apache-tomcat8/distinfo:1.13
--- pkgsrc/www/apache-tomcat8/distinfo:1.12     Mon Apr 10 10:33:43 2017
+++ pkgsrc/www/apache-tomcat8/distinfo  Sat May 20 23:43:54 2017
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.12 2017/04/10 10:33:43 ryoon Exp $
+$NetBSD: distinfo,v 1.13 2017/05/20 23:43:54 ryoon Exp $
 
-SHA1 (apache-tomcat-8.0.43.tar.gz) = 6ea0da3a37f641422e21b5e12572891157291e4a
-RMD160 (apache-tomcat-8.0.43.tar.gz) = 8080e91e89f27910bcc5878c371b31ad49e5f5ed
-SHA512 (apache-tomcat-8.0.43.tar.gz) = 1c891e3c9d7755c8361b2b6482da265153f7bec5db576be3406c04b0122d29418836826ad778264dfc9650dbef880b7a0750d7ac6ed6617793678203a0489081
-Size (apache-tomcat-8.0.43.tar.gz) = 9323896 bytes
+SHA1 (apache-tomcat-8.0.44.tar.gz) = 650d1435ebb07ee81ac8248b3a903de0c6719680
+RMD160 (apache-tomcat-8.0.44.tar.gz) = 2b74f141cfa897fe211a3b684d4d91d5426de2a3
+SHA512 (apache-tomcat-8.0.44.tar.gz) = 705b0fb3b5be84c820a875a9be7b5d79eca02782924d43d8f7141325f1258fa758e7c1e8aa4224975ee4a73fc65bad7cd4efa88c93da4099ce33f1729eec0634
+Size (apache-tomcat-8.0.44.tar.gz) = 9334254 bytes



Home | Main Index | Thread Index | Old Index