Skip to content

Commit 592872f

Browse files
committed
Fix #2659
1 parent a424c03 commit 592872f

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

release-notes/VERSION-2.x

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ Project: jackson-databind
1515
#2648: Block one more gadget type (shiro-core)
1616
#2653: Block one more gadget type (shiro-core)
1717
#2658: Block one more gadget type (ignite-jta)
18+
#2659: Block one more gadget type (aries.transaction.jms)
19+
(reported by Srikanth Ramu)
1820

1921
2.9.10.3 (23-Feb-2020)
2022

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

+3
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,9 @@ public class SubTypeValidator
147147
s.add("org.apache.ignite.cache.jta.jndi.CacheJndiTmFactory");
148148
s.add("org.quartz.utils.JNDIConnectionProvider");
149149

150+
// [databind#2659]: aries.transaction.jms
151+
s.add("org.apache.aries.transaction.jms.internal.XaPooledConnectionFactory");
152+
150153
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
151154
}
152155

0 commit comments

Comments
 (0)