Skip to content

Commit 06cf17d

Browse files
committed
Merge branch '2.9' into 2.10
2 parents 0238e9d + e239b0d commit 06cf17d

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

release-notes/CREDITS-2.x

+4
Original file line numberDiff line numberDiff line change
@@ -661,6 +661,10 @@ svarzee@github
661661
* Reported #2109, suggested fix: Canonical string for reference type is built incorrectly
662662
(2.8.11.3 / 2.9.7)
663663

664+
Kaki King (kingkk9279@g)
665+
* Reported #2449: Block one more gadget type (cve CVE-2019-14540)
666+
(2.9.10)
667+
664668
Connor Kuhn (ckuhn@github)
665669
* Contributed #1341: FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY
666670
(2.9.0)

release-notes/VERSION-2.x

+5-3
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,15 @@ Project: jackson-databind
115115
#2387: Block yet another deserialization gadget (CVE-2019-14379)
116116
#2389: Block yet another deserialization gadget (CVE-2019-14439)
117117
(reported by xiexq)
118+
#2404: FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY setting ignored when
119+
creator properties are buffered
120+
(contributed by Joe B)
118121
#2410: Block one more gadget type (CVE-2019-14540)
119122
(reported by iSafeBlue@github / [email protected])
120123
#2420: Block one more gadget type (no CVE allocated yet)
121124
(reported by [email protected])
122-
#2404: FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY setting ignored when
123-
creator properties are buffered
124-
(contributed by Joe B)
125+
#2449: Block one more gadget type (no CVE allocated yet)
126+
(reported by Kaki K)
125127

126128
2.9.9 (16-May-2019)
127129

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

+2
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ public class SubTypeValidator
9898

9999
// [databind#2410]: HikariCP/metricRegistry config
100100
s.add("com.zaxxer.hikari.HikariConfig");
101+
// [databind#2449]: and sub-class thereof
102+
s.add("com.zaxxer.hikari.HikariDataSource");
101103

102104
// [databind#2420]: CXF/JAX-RS provider/XSLT
103105
s.add("org.apache.cxf.jaxrs.provider.XSLTJaxbProvider");

0 commit comments

Comments
 (0)