Skip to content

Commit e239b0d

Browse files
committed
Merge branch '2.8' into 2.9
2 parents a498dd8 + 73c1c2c commit e239b0d

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
@@ -13,13 +13,15 @@ Project: jackson-databind
1313
#2387: Block yet another deserialization gadget (CVE-2019-14379)
1414
#2389: Block yet another deserialization gadget (CVE-2019-14439)
1515
(reported by xiexq)
16+
#2404: FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY setting ignored when
17+
creator properties are buffered
18+
(contributed by Joe B)
1619
#2410: Block one more gadget type (CVE-2019-14540)
1720
(reported by iSafeBlue@github / [email protected])
1821
#2420: Block one more gadget type (no CVE allocated yet)
1922
(reported by [email protected])
20-
#2404: FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY setting ignored when
21-
creator properties are buffered
22-
(contributed by Joe B)
23+
#2449: Block one more gadget type (no CVE allocated yet)
24+
(reported by Kaki K)
2325

2426
2.9.9 (16-May-2019)
2527

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)