Skip to content

Commit dd4c525

Browse files
committed
Merge branch '2.11'
2 parents 0298ac6 + 62de2d9 commit dd4c525

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
@@ -242,6 +242,8 @@ Project: jackson-databind
242242
#2658: Block one more gadget type (ignite-jta)
243243
#2659: Block one more gadget type (aries.transaction.jms)
244244
(reported by Srikanth Ramu)
245+
#2660: Block one more gadget type (caucho-quercus)
246+
(reported by threedr3am)
245247

246248
2.9.10.3 (23-Feb-2020)
247249

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)