You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ta...@apache.org on 2023/09/15 15:27:14 UTC

[tika] branch branch_2x updated (703139e04 -> 1a0c33254)

This is an automated email from the ASF dual-hosted git repository.

tallison pushed a change to branch branch_2x
in repository https://gitbox.apache.org/repos/asf/tika.git


    from 703139e04 Merge pull request #1332 from apache/dependabot/maven/io.projectreactor-reactor-core-3.5.10
     new 9915cc014 TIKA-4120 -- comment out test that breaks with recent version of gdalinfo
     new 1a0c33254 TIKA-4123 -- general updates for 3.0.0-BETA -- upgrade commons-compress

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 tika-parent/pom.xml                                                 | 2 +-
 .../src/test/java/org/apache/tika/parser/gdal/TestGDALParser.java   | 6 ++++--
 2 files changed, 5 insertions(+), 3 deletions(-)


[tika] 01/02: TIKA-4120 -- comment out test that breaks with recent version of gdalinfo

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

tallison pushed a commit to branch branch_2x
in repository https://gitbox.apache.org/repos/asf/tika.git

commit 9915cc01482e035d88c5d61893b3c527810dfd4d
Author: tballison <ta...@apache.org>
AuthorDate: Fri Sep 15 11:03:45 2023 -0400

    TIKA-4120 -- comment out test that breaks with recent version of gdalinfo
---
 .../src/test/java/org/apache/tika/parser/gdal/TestGDALParser.java   | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tika-parsers/tika-parsers-extended/tika-parser-scientific-module/src/test/java/org/apache/tika/parser/gdal/TestGDALParser.java b/tika-parsers/tika-parsers-extended/tika-parser-scientific-module/src/test/java/org/apache/tika/parser/gdal/TestGDALParser.java
index 557d11bdb..456e9be10 100644
--- a/tika-parsers/tika-parsers-extended/tika-parser-scientific-module/src/test/java/org/apache/tika/parser/gdal/TestGDALParser.java
+++ b/tika-parsers/tika-parsers-extended/tika-parser-scientific-module/src/test/java/org/apache/tika/parser/gdal/TestGDALParser.java
@@ -71,8 +71,10 @@ public class TestGDALParser extends TikaTest {
         assertNotNull(met.get("Driver"));
         assertEquals(expectedDriver, met.get("Driver"));
         assumeTrue(met.get("Files") != null);
-        assertNotNull(met.get("Coordinate System"));
-        assertEquals(expectedCoordinateSystem, met.get("Coordinate System"));
+        //recent version of gdalinfo doesn't include "Coordinate System":
+        // GDAL 3.7.1, released 2023/07/06
+        //assertNotNull(met.get("Coordinate System"));
+        //assertEquals(expectedCoordinateSystem, met.get("Coordinate System"));
         assertNotNull(met.get("Size"));
         assertEquals(expectedSize, met.get("Size"));
         assertNotNull(met.get("Upper Right"));


[tika] 02/02: TIKA-4123 -- general updates for 3.0.0-BETA -- upgrade commons-compress

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

tallison pushed a commit to branch branch_2x
in repository https://gitbox.apache.org/repos/asf/tika.git

commit 1a0c33254dff76306b935ba45c2e76aec11de4c1
Author: tballison <ta...@apache.org>
AuthorDate: Fri Sep 15 11:04:47 2023 -0400

    TIKA-4123 -- general updates for 3.0.0-BETA -- upgrade commons-compress
---
 tika-parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tika-parent/pom.xml b/tika-parent/pom.xml
index 26eedca51..e21cbb159 100644
--- a/tika-parent/pom.xml
+++ b/tika-parent/pom.xml
@@ -316,7 +316,7 @@
     <commons.cli.version>1.5.0</commons.cli.version>
     <commons.codec.version>1.16.0</commons.codec.version>
     <commons.collections4.version>4.4</commons.collections4.version>
-    <commons.compress.version>1.23.0</commons.compress.version>
+    <commons.compress.version>1.24.0</commons.compress.version>
     <commons.csv.version>1.10.0</commons.csv.version>
     <commons.exec.version>1.3</commons.exec.version>
     <commons.io.version>2.13.0</commons.io.version>