diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index a7d49f10b16..712d671a895 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -28,6 +28,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
This release also includes changes from prior 3.7.x releases.
* Add missing `Configuring` interface to `GraphStepPlaceholder` and `VertexStepPlaceholder`
+* Bumped `commons-configuration2` to 2.15.0.
[[release-3-8-1]]
=== TinkerPop 3.8.1 (Release Date: April 1, 2026)
diff --git a/gremlin-core/pom.xml b/gremlin-core/pom.xml
index 6bdca4a6dc6..a853a95e892 100644
--- a/gremlin-core/pom.xml
+++ b/gremlin-core/pom.xml
@@ -46,6 +46,12 @@ limitations under the License.
org.apache.commons
commons-configuration2
+
+
+ commons-logging
+ commons-logging
+
+
commons-beanutils
diff --git a/hadoop-gremlin/pom.xml b/hadoop-gremlin/pom.xml
index 1e4c251e4c9..f4f236681b5 100644
--- a/hadoop-gremlin/pom.xml
+++ b/hadoop-gremlin/pom.xml
@@ -33,6 +33,12 @@ limitations under the License.
netty
3.10.6.Final
+
+
+ org.apache.commons
+ commons-configuration2
+ ${commons.configuration.version}
+
diff --git a/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/structure/HadoopConfiguration.java b/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/structure/HadoopConfiguration.java
index f39a503183c..a09ad8ce345 100644
--- a/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/structure/HadoopConfiguration.java
+++ b/hadoop-gremlin/src/main/java/org/apache/tinkerpop/gremlin/hadoop/structure/HadoopConfiguration.java
@@ -65,6 +65,11 @@ protected boolean containsKeyInternal(String s) {
return properties.containsKey(s);
}
+ @Override
+ protected boolean containsValueInternal(final Object value) {
+ return properties.containsValue(value);
+ }
+
@Override
protected void addPropertyDirect(final String key, final Object value) {
this.properties.put(key, value);
diff --git a/pom.xml b/pom.xml
index aaef1b2fdea..116be566823 100644
--- a/pom.xml
+++ b/pom.xml
@@ -155,9 +155,9 @@ limitations under the License.
4.9.1
2.3.1
3.2.2
- 2.9.0
+ 2.15.0
2.6
- 2.8.0
+ 2.22.0
3.12.0
1.10.0
7.21.1
@@ -775,6 +775,12 @@ limitations under the License.
org.apache.commons
commons-configuration2
${commons.configuration.version}
+
+
+ commons-logging
+ commons-logging
+
+
org.apache.commons