Skip to content

Commit 1645efb

Browse files
committed
Fix #2660
1 parent 592872f commit 1645efb

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

release-notes/VERSION-2.x

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Project: jackson-databind
1717
#2658: Block one more gadget type (ignite-jta)
1818
#2659: Block one more gadget type (aries.transaction.jms)
1919
(reported by Srikanth Ramu)
20+
#2660: Block one more gadget type (caucho-quercus)
21+
(reported by threedr3am)
2022

2123
2.9.10.3 (23-Feb-2020)
2224

src/main/java/com/fasterxml/jackson/databind/jsontype/impl/SubTypeValidator.java

+4
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,11 @@ public class SubTypeValidator
149149

150150
// [databind#2659]: aries.transaction.jms
151151
s.add("org.apache.aries.transaction.jms.internal.XaPooledConnectionFactory");
152+
s.add("org.apache.aries.transaction.jms.RecoverablePooledConnectionFactory");
152153

154+
// [databind#2660]: caucho-quercus
155+
s.add("com.caucho.config.types.ResourceRef");
156+
153157
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
154158
}
155159

0 commit comments

Comments
 (0)