Skip to content

Commit d5d042e

Browse files
committed
TIKA-4488: update sis, microsoft-graph, google cloud, azure
1 parent c64ca13 commit d5d042e

3 files changed

Lines changed: 7 additions & 8 deletions

File tree

tika-parent/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -309,16 +309,16 @@
309309

310310
<!-- dependency versions -->
311311
<!-- change threetenbp exclusion version -->
312-
<google.cloud.version>2.58.0</google.cloud.version>
312+
<google.cloud.version>2.58.1</google.cloud.version>
313313
<aws.version>1.12.792</aws.version>
314314
<aws2.version>2.35.0</aws2.version>
315315
<!-- WARNING: when you upgrade asm make sure that you update the
316316
OpCode in the initializer in org.apache.tika.parser.asm.XHTMLClassVisitor
317317
See TIKA-2992.
318318
-->
319319
<asm.version>9.9</asm.version>
320-
<azure.core.version>1.56.1</azure.core.version>
321-
<azure.core.http.netty.version>1.16.1</azure.core.http.netty.version>
320+
<azure.core.version>1.57.0</azure.core.version>
321+
<azure.core.http.netty.version>1.16.2</azure.core.http.netty.version>
322322
<azure.storage.blob.version>12.31.2</azure.storage.blob.version>
323323
<azure.storage.common>12.30.2</azure.storage.common>
324324
<azure-identity.version>1.18.0</azure-identity.version>
@@ -431,7 +431,7 @@
431431
<rome.version>2.1.0</rome.version>
432432
<scm.version>2.2.1</scm.version>
433433
<slf4j.version>2.0.17</slf4j.version>
434-
<sis.version>1.4</sis.version>
434+
<sis.version>1.5</sis.version>
435435
<snappy.version>1.1.10.8</snappy.version>
436436
<solrj.version>8.11.4</solrj.version>
437437
<!-- NOTE: Spring 6 requires jdk17 -->

tika-parsers/tika-parsers-extended/tika-parser-scientific-module/src/main/java/org/apache/tika/parser/geoinfo/GeographicInformationParser.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
import org.apache.sis.storage.DataStores;
4040
import org.apache.sis.storage.UnsupportedStorageException;
4141
import org.apache.sis.util.collection.CodeListSet;
42-
import org.apache.sis.util.internal.CheckedArrayList;
4342
import org.opengis.metadata.Identifier;
4443
import org.opengis.metadata.citation.Citation;
4544
import org.opengis.metadata.citation.CitationDate;
@@ -219,8 +218,8 @@ private void getMetaDataCharacterSet(Metadata metadata, DefaultMetadata defaultM
219218

220219

221220
private void getMetaDataContact(Metadata metadata, DefaultMetadata defaultMetaData) {
222-
CheckedArrayList<ResponsibleParty> contactSet =
223-
(CheckedArrayList<ResponsibleParty>) defaultMetaData.getContacts();
221+
Collection<ResponsibleParty> contactSet =
222+
(Collection<ResponsibleParty>) defaultMetaData.getContacts();
224223
for (ResponsibleParty rparty : contactSet) {
225224
if (rparty.getRole() != null) {
226225
metadata.add("ContactRole", rparty.getRole().name());

tika-pipes/tika-fetchers/tika-fetcher-microsoft-graph/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<name>Apache Tika Microsoft Graph Pipes Fetcher</name>
3030

3131
<properties>
32-
<microsoft-graph.version>6.53.0</microsoft-graph.version>
32+
<microsoft-graph.version>6.54.0</microsoft-graph.version>
3333
<wiremock.version>3.3.1</wiremock.version>
3434
<msal4j.version>1.20.1</msal4j.version>
3535
<kotlin-stdlib.version>2.2.20</kotlin-stdlib.version>

0 commit comments

Comments
 (0)