File tree 3 files changed +11
-5
lines changed
src/main/java/com/fasterxml/jackson/databind/ext
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -661,10 +661,6 @@ svarzee@github
661
661
* Reported #2109 , suggested fix: Canonical string for reference type is built incorrectly
662
662
(2.8.11.3 / 2.9.7 )
663
663
664
- Kaki King (kingkk9279@g)
665
- * Reported #2449 : Block one more gadget type (cve CVE-2019 -14540 )
666
- (2.9.10 )
667
-
668
664
Connor Kuhn (ckuhn@github)
669
665
* Contributed #1341 : FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY
670
666
(2.9.0 )
@@ -868,3 +864,11 @@ Joe Barnett (josephlbarnett@github)
868
864
* Reported, contributed fix for #2404 : FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY setting
869
865
ignored when creator properties are buffered
870
866
(2.9.10 )
867
+
868
+ Kaki King (kingkk9279@g)
869
+ * Reported #2449 : Block one more gadget type (cve CVE-2019 -14540 )
870
+ (2.9.10 )
871
+
872
+ Jon Anderson (Jon901@github)
873
+ * Reported #2544 : java.lang.NoClassDefFoundError Thrown for compact profile1
874
+ (2.9.10.2 )
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ Project: jackson-databind
8
8
9
9
#2526 : Block two more gadget types (ehcache/JNDI - CVEs to be allocated)
10
10
(repoerted by UltramanGaia)
11
+ #2544 : java.lang.NoClassDefFoundError Thrown for compact profile1
12
+ (reported by Jon A)
11
13
12
14
2.9.10.1 (20 -Oct-2019 )
13
15
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