We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41b7f9b commit 998efd7Copy full SHA for 998efd7
release-notes/VERSION
@@ -13,6 +13,7 @@ Unreleased but backported
13
(reported by kingkk)
14
#2460: Block one more gadget type (ehcache, no CVE allocated yet)
15
#2462: Block two more gadget types (commons-configuration)
16
+#2469: Block one more gadget type (xalan2)
17
18
2.8.11.4 (25-Jul-2019)
19
src/main/java/com/fasterxml/jackson/databind/jsontype/impl/SubTypeValidator.java
@@ -111,6 +111,9 @@ public class SubTypeValidator
111
s.add("org.apache.commons.configuration.JNDIConfiguration");
112
s.add("org.apache.commons.configuration2.JNDIConfiguration");
113
114
+ // [databind#2469]: xalan2
115
+ s.add("org.apache.xalan.lib.sql.JNDIConnectionPool");
116
+
117
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
118
}
119
0 commit comments