Skip to content

Commit f4ce9dc

Browse files
committed
Merge branch '2.8' into 2.9
2 parents a55c4a9 + 4c93566 commit f4ce9dc

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

release-notes/VERSION-2.x

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Project: jackson-databind
44
=== Releases ===
55
------------------------------------------------------------------------
66

7+
2.9.9.1 (not yet released)
8+
9+
#2326: Block one more gadget type (CVE-2019-12384)
10+
711
2.9.9 (16-May-2019)
812

913
#1408: Call to `TypeVariable.getBounds()` without synchronization unsafe on some platforms

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,12 @@ public class SubTypeValidator
8080
s.add("org.apache.openjpa.ee.JNDIManagedRuntime");
8181
s.add("org.apache.axis2.transport.jms.JMSOutTransportInfo");
8282

83-
// [databind#2326] (2.9.9): one more 3rd party gadget
83+
// [databind#2326] (2.9.9)
8484
s.add("com.mysql.cj.jdbc.admin.MiniAdmin");
8585

86+
// [databind#2334] (2.9.9.1)
87+
s.add("ch.qos.logback.core.db.DriverManagerConnectionSource");
88+
8689
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
8790
}
8891

0 commit comments

Comments
 (0)