File tree 3 files changed +14
-6
lines changed
src/main/java/com/fasterxml/jackson/databind/ext
3 files changed +14
-6
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 )
@@ -998,4 +1002,3 @@ Richard Wise (Woodz@github)
998
1002
Mark Schäfer (mark--@github)
999
1003
* Reported #2520: Sub-optimal exception message when failing to deserialize non-static inner classes
1000
1004
(2.10.1)
1001
-
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.10.2 (not yet released)
8
+
9
+ #2544 : java.lang.NoClassDefFoundError Thrown for compact profile1
10
+ (reported by Jon A)
11
+
7
12
2.10.1 (09 -Nov-2019 )
8
13
9
14
#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