Skip to content

Commit 01816ab

Browse files
committed
Merge branch '2.10' into 2.11
2 parents e124860 + 628ef42 commit 01816ab

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

release-notes/CREDITS-2.x

+8-4
Original file line numberDiff line numberDiff line change
@@ -664,10 +664,6 @@ svarzee@github
664664
* Reported #2109, suggested fix: Canonical string for reference type is built incorrectly
665665
(2.8.11.3 / 2.9.7)
666666

667-
Kaki King (kingkk9279@g)
668-
* Reported #2449: Block one more gadget type (cve CVE-2019-14540)
669-
(2.9.10)
670-
671667
Connor Kuhn (ckuhn@github)
672668
* Contributed #1341: FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY
673669
(2.9.0)
@@ -890,6 +886,14 @@ Joe Barnett (josephlbarnett@github)
890886
ignored when creator properties are buffered
891887
(2.9.10)
892888

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+
893897
Zihui Ren (renzihui@github)
894898
* Suggested #2129: Add `SerializationFeature.WRITE_ENUM_KEYS_USING_INDEX`, separate from value setting
895899
(2.10.0)

release-notes/VERSION-2.x

+5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ Project: jackson-databind
2222
#2525: Incorrect `JsonStreamContext` for `TokenBuffer` and `TreeTraversingParser`
2323
- Add `SerializerProvider.findContentValueSerializer()` methods
2424
25+
2.10.2 (not yet released)
26+
27+
#2544: java.lang.NoClassDefFoundError Thrown for compact profile1
28+
(reported by Jon A)
29+
2530
2.10.1 (09-Nov-2019)
2631
2732
#2457: Extended enum values are not handled as enums when used as Map keys

src/main/java/com/fasterxml/jackson/databind/ext/OptionalHandlerFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class OptionalHandlerFactory implements java.io.Serializable
5151
try {
5252
node = org.w3c.dom.Node.class;
5353
doc = org.w3c.dom.Document.class;
54-
} catch (Exception e) {
54+
} catch (Throwable e) {
5555
// not optimal but will do
5656
Logger.getLogger(OptionalHandlerFactory.class.getName())
5757
.log(Level.INFO, "Could not load DOM `Node` and/or `Document` classes: no DOM support");

0 commit comments

Comments
 (0)