This is an automated email from the ASF dual-hosted git repository.
tilman pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/main by this push:
new 91761a078 TIKA-4327: update sis, microsoft-graph, google cloud, azure
91761a078 is described below
commit 91761a07817ed6519fc95b64b9a861d03d90b4ee
Author: Tilman Hausherr <[email protected]>
AuthorDate: Tue Oct 7 11:01:30 2025 +0200
TIKA-4327: update sis, microsoft-graph, google cloud, azure
---
tika-parent/pom.xml | 8 ++++----
.../apache/tika/parser/geoinfo/GeographicInformationParser.java | 5 ++---
tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/pom.xml | 2 +-
3 files changed, 7 insertions(+), 8 deletions(-)
diff --git a/tika-parent/pom.xml b/tika-parent/pom.xml
index 9a67fdf6f..ddcfbbf81 100644
--- a/tika-parent/pom.xml
+++ b/tika-parent/pom.xml
@@ -310,7 +310,7 @@
<!-- dependency versions -->
<!-- change threetenbp exclusion version -->
- <google.cloud.version>2.58.0</google.cloud.version>
+ <google.cloud.version>2.58.1</google.cloud.version>
<aws.version>1.12.792</aws.version>
<aws2.version>2.35.0</aws2.version>
<!-- WARNING: when you upgrade asm make sure that you update the
@@ -318,8 +318,8 @@
See TIKA-2992.
-->
<asm.version>9.9</asm.version>
- <azure.core.version>1.56.1</azure.core.version>
- <azure.core.http.netty.version>1.16.1</azure.core.http.netty.version>
+ <azure.core.version>1.57.0</azure.core.version>
+ <azure.core.http.netty.version>1.16.2</azure.core.http.netty.version>
<azure.storage.blob.version>12.32.0-beta.1</azure.storage.blob.version>
<azure.storage.common>12.31.0-beta.1</azure.storage.common>
<azure-identity.version>1.18.0</azure-identity.version>
@@ -435,7 +435,7 @@
<reactor.netty.version>1.3.0-M7</reactor.netty.version>
<rome.version>2.1.0</rome.version>
<slf4j.version>2.0.17</slf4j.version>
- <sis.version>1.4</sis.version>
+ <sis.version>1.5</sis.version>
<snappy.version>1.1.10.8</snappy.version>
<solrj.version>9.9.0</solrj.version>
<spring.version>6.2.11</spring.version>
diff --git
a/tika-parsers/tika-parsers-extended/tika-parser-scientific-module/src/main/java/org/apache/tika/parser/geoinfo/GeographicInformationParser.java
b/tika-parsers/tika-parsers-extended/tika-parser-scientific-module/src/main/java/org/apache/tika/parser/geoinfo/GeographicInformationParser.java
index bc3a16257..beabe6593 100644
---
a/tika-parsers/tika-parsers-extended/tika-parser-scientific-module/src/main/java/org/apache/tika/parser/geoinfo/GeographicInformationParser.java
+++
b/tika-parsers/tika-parsers-extended/tika-parser-scientific-module/src/main/java/org/apache/tika/parser/geoinfo/GeographicInformationParser.java
@@ -39,7 +39,6 @@ import org.apache.sis.storage.DataStoreException;
import org.apache.sis.storage.DataStores;
import org.apache.sis.storage.UnsupportedStorageException;
import org.apache.sis.util.collection.CodeListSet;
-import org.apache.sis.util.internal.CheckedArrayList;
import org.opengis.metadata.Identifier;
import org.opengis.metadata.citation.Citation;
import org.opengis.metadata.citation.CitationDate;
@@ -219,8 +218,8 @@ public class GeographicInformationParser implements Parser {
private void getMetaDataContact(Metadata metadata, DefaultMetadata
defaultMetaData) {
- CheckedArrayList<ResponsibleParty> contactSet =
- (CheckedArrayList<ResponsibleParty>)
defaultMetaData.getContacts();
+ Collection<ResponsibleParty> contactSet =
+ (Collection<ResponsibleParty>) defaultMetaData.getContacts();
for (ResponsibleParty rparty : contactSet) {
if (rparty.getRole() != null) {
metadata.add("ContactRole", rparty.getRole().name());
diff --git a/tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/pom.xml
b/tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/pom.xml
index c9665924c..3fbf0020b 100644
--- a/tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/pom.xml
+++ b/tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/pom.xml
@@ -29,7 +29,7 @@
<name>Apache Tika Microsoft Graph Pipes Fetcher</name>
<properties>
- <microsoft-graph.version>6.53.0</microsoft-graph.version>
+ <microsoft-graph.version>6.54.0</microsoft-graph.version>
<wiremock.version>3.3.1</wiremock.version>
<msal4j.version>1.30.0-beta</msal4j.version>
<kotlin-stdlib.version>2.2.20</kotlin-stdlib.version>