Skip to content

Commit 0076883

Browse files
committed
Merge branch '2.9' into 2.10
2 parents 06d5b72 + bc67eb1 commit 0076883

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

release-notes/VERSION-2.x

+5
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,11 @@ Project: jackson-databind
117117
deserialize as "null value"
118118
(contributed by Martin C)
119119
120+
2.9.10.1 (not yet released)
121+
122+
#2478: Block two more gadget types (commons-dbcp, p6spy)
123+
(reported by b5mali4 / [email protected])
124+
120125
2.9.10 (21-Sep-2019)
121126
122127
#2331: `JsonMappingException` through nested getter with generic wildcard return type

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

+4
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@ public class SubTypeValidator
112112
// [databind#2469]: xalan2
113113
s.add("org.apache.xalan.lib.sql.JNDIConnectionPool");
114114

115+
// [databind#2478]: comons-dbcp, p6spy
116+
s.add("org.apache.commons.dbcp.datasources.SharedPoolDataSource");
117+
s.add("com.p6spy.engine.spy.P6DataSource");
118+
115119
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
116120
}
117121

0 commit comments

Comments
 (0)