This is an automated email from the ASF dual-hosted git repository.
reschke pushed a commit to branch 1.22
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
The following commit(s) were added to refs/heads/1.22 by this push:
new ada295cc97 OAK-10390: Update commons-io dependency to 2.13.0 (#1059)
ada295cc97 is described below
commit ada295cc97c82e7745fee26288f2d94417e9b4ef
Author: Julian Reschke <[email protected]>
AuthorDate: Fri Aug 11 19:19:45 2023 +0200
OAK-10390: Update commons-io dependency to 2.13.0 (#1059)
* OAK-10390: Update commons-io dependency to 2.13.0
* OAK-10390: Update commons-io dependency to 2.13.0 - accept NPE for null
arguments in filters (change in commons-io API)
---
.../jackrabbit/oak/plugins/blob/datastore/SharedDataStoreTest.java | 2 +-
oak-parent/pom.xml | 2 +-
oak-search-mt/pom.xml | 1 -
3 files changed, 2 insertions(+), 3 deletions(-)
diff --git
a/oak-blob-plugins/src/test/java/org/apache/jackrabbit/oak/plugins/blob/datastore/SharedDataStoreTest.java
b/oak-blob-plugins/src/test/java/org/apache/jackrabbit/oak/plugins/blob/datastore/SharedDataStoreTest.java
index fb3ca6ed6e..26b7c140a7 100644
---
a/oak-blob-plugins/src/test/java/org/apache/jackrabbit/oak/plugins/blob/datastore/SharedDataStoreTest.java
+++
b/oak-blob-plugins/src/test/java/org/apache/jackrabbit/oak/plugins/blob/datastore/SharedDataStoreTest.java
@@ -397,7 +397,7 @@ public class SharedDataStoreTest {
try {
fds.metadataRecordExists(name);
}
- catch (IllegalArgumentException e) { }
+ catch (IllegalArgumentException | NullPointerException e) { }
}
else {
assertFalse(fds.metadataRecordExists(name));
diff --git a/oak-parent/pom.xml b/oak-parent/pom.xml
index fa88982c44..a53d47fad0 100644
--- a/oak-parent/pom.xml
+++ b/oak-parent/pom.xml
@@ -604,7 +604,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
- <version>2.11.0</version>
+ <version>2.13.0</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
diff --git a/oak-search-mt/pom.xml b/oak-search-mt/pom.xml
index d7972f9642..8b6e5d2055 100644
--- a/oak-search-mt/pom.xml
+++ b/oak-search-mt/pom.xml
@@ -163,7 +163,6 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
- <version>2.4</version>
<scope>test</scope>
</dependency>
<dependency>