File tree 3 files changed +14
-5
lines changed
src/main/java/com/fasterxml/jackson/databind/ext
3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -664,10 +664,6 @@ svarzee@github
664
664
* Reported #2109 , suggested fix: Canonical string for reference type is built incorrectly
665
665
(2.8.11.3 / 2.9.7 )
666
666
667
- Kaki King (kingkk9279@g)
668
- * Reported #2449 : Block one more gadget type (cve CVE-2019 -14540 )
669
- (2.9.10 )
670
-
671
667
Connor Kuhn (ckuhn@github)
672
668
* Contributed #1341 : FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY
673
669
(2.9.0 )
@@ -890,6 +886,14 @@ Joe Barnett (josephlbarnett@github)
890
886
ignored when creator properties are buffered
891
887
(2.9.10 )
892
888
889
+ Kaki King (kingkk9279@g)
890
+ * Reported #2449 : Block one more gadget type (cve CVE-2019 -14540 )
891
+ (2.9.10 )
892
+
893
+ Jon Anderson (Jon901@github)
894
+ * Reported #2544 : java.lang.NoClassDefFoundError Thrown for compact profile1
895
+ (2.9.10.2 )
896
+
893
897
Zihui Ren (renzihui@github)
894
898
* Suggested #2129 : Add `SerializationFeature.WRITE_ENUM_KEYS_USING_INDEX`, separate from value setting
895
899
(2.10.0 )
Original file line number Diff line number Diff line change @@ -22,6 +22,11 @@ Project: jackson-databind
22
22
#2525: Incorrect `JsonStreamContext` for `TokenBuffer` and `TreeTraversingParser`
23
23
- Add `SerializerProvider.findContentValueSerializer()` methods
24
24
25
+ 2.10.2 (not yet released)
26
+
27
+ #2544: java.lang.NoClassDefFoundError Thrown for compact profile1
28
+ (reported by Jon A)
29
+
25
30
2.10.1 (09-Nov-2019)
26
31
27
32
#2457: Extended enum values are not handled as enums when used as Map keys
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ public class OptionalHandlerFactory implements java.io.Serializable
51
51
try {
52
52
node = org .w3c .dom .Node .class ;
53
53
doc = org .w3c .dom .Document .class ;
54
- } catch (Exception e ) {
54
+ } catch (Throwable e ) {
55
55
// not optimal but will do
56
56
Logger .getLogger (OptionalHandlerFactory .class .getName ())
57
57
.log (Level .INFO , "Could not load DOM `Node` and/or `Document` classes: no DOM support" );
You can’t perform that action at this time.
0 commit comments