Skip to content

Commit 819cdbc

Browse files
committed
Merge branch '2.8' into 2.9 (fix #2462)
2 parents f4f4a4e + 41b7f9b commit 819cdbc

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

release-notes/VERSION-2.x

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Project: jackson-databind
2424
(reported by kingkk)
2525
#2460: Block one mode gadget type (ehcache, no CVE allocated yet)
2626
(reported by Fei Lu)
27+
#2462: Block two more gadget types (commons-configuration)
2728

2829
2.9.9 (16-May-2019)
2930

src/main/java/com/fasterxml/jackson/databind/jsontype/impl/SubTypeValidator.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,11 @@ public class SubTypeValidator
104104

105105
// [databind#2420]: CXF/JAX-RS provider/XSLT
106106
s.add("org.apache.cxf.jaxrs.provider.XSLTJaxbProvider");
107-
107+
108+
// [databind#2462]: commons-configuration / -2
109+
s.add("org.apache.commons.configuration.JNDIConfiguration");
110+
s.add("org.apache.commons.configuration2.JNDIConfiguration");
111+
108112
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
109113
}
110114

0 commit comments

Comments
 (0)