Skip to content

Commit 6b46b59

Browse files
committed
Merge branch '2.9' into 2.10
2 parents 02179c6 + a424c03 commit 6b46b59

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

release-notes/VERSION-2.x

+1
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ Project: jackson-databind
196196
(reported by threedr3am)
197197
#2648: Block one more gadget type (shiro-core)
198198
#2653: Block one more gadget type (shiro-core)
199+
#2658: Block one more gadget type (ignite-jta)
199200

200201
2.9.10.3 (23-Feb-2020)
201202

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

+5
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,11 @@ public class SubTypeValidator
142142
s.add("org.apache.shiro.realm.jndi.JndiRealmFactory");
143143
s.add("org.apache.shiro.jndi.JndiObjectFactory");
144144

145+
// [databind#2658]: ignite-jta (, quartz-core)
146+
s.add("org.apache.ignite.cache.jta.jndi.CacheJndiTmLookup");
147+
s.add("org.apache.ignite.cache.jta.jndi.CacheJndiTmFactory");
148+
s.add("org.quartz.utils.JNDIConnectionProvider");
149+
145150
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
146151
}
147152

0 commit comments

Comments
 (0)