Skip to content

Commit 4e827a7

Browse files
committed
Merge branch '2.9' into 2.10
2 parents e736541 + 4d038c9 commit 4e827a7

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

release-notes/VERSION-2.x

+4-2
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,12 @@ Project: jackson-databind
184184

185185
2.9.10.4 (not yet released)
186186

187-
#2631: Block one more gadget type (shaded-hikari-config, CVE-to-be-allocated)
187+
#2631: Block one more gadget type (shaded-hikari-config, CVE-2020-9546)
188188
(reported by threedr3am & LFY)
189-
#2634: Block two more gadget types (ibatis-sqlmap, anteros-core; CVE-to-be-allocated)
189+
#2634: Block two more gadget types (ibatis-sqlmap, anteros-core; CVE-2020-9547 / CVE-2020-9548)
190190
(reported by threedr3am & V1ZkRA)
191+
#2642: Block one more gadget type (javax.swing, CVE-to-be-allocated) #2642
192+
(reported by threedr3am)
191193

192194
2.9.10.3 (23-Feb-2020)
193195

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

+3
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,9 @@ public class SubTypeValidator
135135
s.add("com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig");
136136
s.add("br.com.anteros.dbcp.AnterosDBCPConfig");
137137

138+
// [databind#2642]: javax.swing (jdk)
139+
s.add("javax.swing.JEditorPane");
140+
138141
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
139142
}
140143

0 commit comments

Comments
 (0)