File tree 2 files changed +5
-0
lines changed
src/main/java/com/fasterxml/jackson/databind/jsontype/impl
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ Unreleased but backported
14
14
#2460: Block one more gadget type (ehcache, no CVE allocated yet)
15
15
#2462: Block two more gadget types (commons-configuration)
16
16
#2469: Block one more gadget type (xalan2)
17
+ #2478: Block two more gadget types (commons-dbcp, p6spy)
17
18
18
19
2.8.11.4 (25-Jul-2019)
19
20
Original file line number Diff line number Diff line change @@ -114,6 +114,10 @@ public class SubTypeValidator
114
114
// [databind#2469]: xalan2
115
115
s .add ("org.apache.xalan.lib.sql.JNDIConnectionPool" );
116
116
117
+ // [databind#2478]: comons-dbcp, p6spy
118
+ s .add ("org.apache.commons.dbcp.datasources.SharedPoolDataSource" );
119
+ s .add ("com.p6spy.engine.spy.P6DataSource" );
120
+
117
121
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
118
122
}
119
123
You can’t perform that action at this time.
0 commit comments