Skip to content

Commit 73c1c2c

Browse files
committed
Fix #2449
1 parent 06bfdea commit 73c1c2c

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

release-notes/CREDITS

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

649+
Kaki King (kingkk9279@g)
650+
* Reported #2449: Block one more gadget type (cve CVE-2019-14540)
651+
(2.9.10)
652+
649653
Connor Kuhn (ckuhn@github)
650654
* Contributed #1341: FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY
651655
(2.9.0)

release-notes/VERSION

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Unreleased but backported
99
(reported by iSafeBlue@github / [email protected])
1010
#2420: Block one more gadget type (no CVE allocated yet)
1111
(reported by [email protected])
12+
#2449: Block one more gadget type (cve CVE-2019-14540)
13+
(reported by Kaki K)
1214

1315
2.8.11.4 (25-Jul-2019)
1416

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

+2
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ public class SubTypeValidator
100100

101101
// [databind#2410]: HikariCP/metricRegistry config
102102
s.add("com.zaxxer.hikari.HikariConfig");
103+
// [databind#2449]: and sub-class thereof
104+
s.add("com.zaxxer.hikari.HikariDataSource");
103105

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

0 commit comments

Comments
 (0)