[ofbiz-framework] branch release17.12 updated: Fixed: Secure the uploads (OFBIZ-12080)

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[ofbiz-framework] branch release17.12 updated: Fixed: Secure the uploads (OFBIZ-12080)

jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch release17.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/release17.12 by this push:
     new 983f4b9  Fixed: Secure the uploads (OFBIZ-12080)
983f4b9 is described below

commit 983f4b95ae06f6c5cf97acaecd2c9d71539770c6
Author: Jacques Le Roux <[hidden email]>
AuthorDate: Wed Dec 2 10:03:35 2020 +0100

    Fixed: Secure the uploads (OFBIZ-12080)
   
    org.apache.xmlgraphics:batik:1.13 does not include batik-svg-dom it's in
    batik:batik-svg-dom:1.6-1.
   
    It's also in org.eclipse.birt.runtime:viewservlets:4.5.0 that's why it worked
    only with plugins
---
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index ed6d6a4..bd6c3ca 100644
--- a/build.gradle
+++ b/build.gradle
@@ -161,7 +161,7 @@ dependencies {
     compile 'net.lingala.zip4j:zip4j:2.6.4'
     compile 'org.apache.commons:commons-imaging:1.0-alpha2' // Alpha but OK, "Imaging was working and was used by a number of projects in production even before reaching its initial release as an Apache Commons component."
     compile 'org.apache.tika:tika-core:1.24.1'
-    compile 'org.apache.xmlgraphics:batik:1.13'
+    compile 'batik:batik-svg-dom:1.6-1'
 
     // ofbiz unit-test compile libs
     testCompile 'org.mockito:mockito-core:2.+'