Skip to content

Commit 0b887a0

Browse files
committed
Merge branch '2.8' into 2.9
2 parents 1d3d3f4 + d4983c7 commit 0b887a0

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

release-notes/VERSION-2.x

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

7+
2.9.10 (not yet released)
8+
9+
#2410: Block one more gadget type (CVE-2019-14540)
10+
(reported by iSafeBlue@github / [email protected])
11+
#2420: Block one more gadget type (no CVE allocated yet)
12+
(reported by [email protected])
13+
714
2.9.9.3 (06-Aug-2019)
815

916
#2395: `NullPointerException` from `ResolvedRecursiveType` (regression due to fix for #2331)

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,12 @@ public class SubTypeValidator
9696
// [databind#2389]: logback/jndi
9797
s.add("ch.qos.logback.core.db.JNDIConnectionSource");
9898

99+
// [databind#2410]: HikariCP/metricRegistry config
100+
s.add("com.zaxxer.hikari.HikariConfig");
101+
102+
// [databind#2420]: CXF/JAX-RS provider/XSLT
103+
s.add("org.apache.cxf.jaxrs.provider.XSLTJaxbProvider");
104+
99105
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
100106
}
101107

0 commit comments

Comments
 (0)