File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
src/main/java/com/fasterxml/jackson/databind/jsontype/impl Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 10
10
11
11
<groupId >com.fasterxml.jackson.core</groupId >
12
12
<artifactId >jackson-databind</artifactId >
13
- <version >2.9.10 -SNAPSHOT</version >
13
+ <version >2.9.9.2 -SNAPSHOT</version >
14
14
<name >jackson-databind</name >
15
15
<packaging >bundle</packaging >
16
16
<description >General data-binding functionality for Jackson: works on core streaming API</description >
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ Project: jackson-databind
4
4
=== Releases ===
5
5
------------------------------------------------------------------------
6
6
7
+ 2.9.9.2 (not yet released)
8
+
9
+ #2387 : Block yet another deserialization gadget (EHCache, CVE-2019 -xxxxx?)
10
+ #2389 : Block yet another deserialization gadget (Logback, CVE-2019 -xxxxx?)
11
+
7
12
2.9.9.1 (03 -Jul-2019 )
8
13
9
14
#2331 : `JsonMappingException` through nested getter with generic wildcard return type
@@ -29,6 +34,7 @@ Project: jackson-databind
29
34
#2324 : `StringCollectionDeserializer` fails with custom collection
30
35
(reported byb Daniil B)
31
36
#2326 : Block one more gadget type (CVE-2019 -12086 )
37
+ <<<<<<< HEAD:release-notes/VERSION-2.x
32
38
- Prevent String coercion of `null` in `WritableObjectId` when calling `JsonGenerator.writeObjectId()`,
33
39
mostly relevant for formats like YAML that have native Object Ids
34
40
Original file line number Diff line number Diff line change @@ -90,6 +90,12 @@ public class SubTypeValidator
90
90
s .add ("org.jdom.transform.XSLTransformer" );
91
91
s .add ("org.jdom2.transform.XSLTransformer" );
92
92
93
+ // [databind#2387]: EHCache
94
+ s .add ("net.sf.ehcache.transaction.manager.DefaultTransactionManagerLookup" );
95
+
96
+ // [databind#2389]: logback/jndi
97
+ s .add ("ch.qos.logback.core.db.JNDIConnectionSource" );
98
+
93
99
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
94
100
}
95
101
You can’t perform that action at this time.
0 commit comments