Skip to content

Commit e2ba12d

Browse files
committed
Fix #2670
1 parent 666753b commit e2ba12d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

release-notes/VERSION-2.x

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Project: jackson-databind
2626
(reported by Srikanth Ramu)
2727
#2666: Block one more gadget type (apache/commons-proxy)
2828
(reported by Yiting Fan)
29+
#2670: Block one more gadget type (openjpa)
30+
(reported by XuYuanzhen)
2931

3032
2.9.10.3 (23-Feb-2020)
3133

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,11 @@ public class SubTypeValidator
7474
s.add("com.sun.deploy.security.ruleset.DRSHelper");
7575
s.add("org.apache.axis2.jaxws.spi.handler.HandlerResolverImpl");
7676

77-
// [databind#2186]: yet more 3rd party gadgets
77+
// [databind#2186], [databind#2670]: yet more 3rd party gadgets
7878
s.add("org.jboss.util.propertyeditor.DocumentEditor");
7979
s.add("org.apache.openjpa.ee.RegistryManagedRuntime");
8080
s.add("org.apache.openjpa.ee.JNDIManagedRuntime");
81+
s.add("org.apache.openjpa.ee.WASRegistryManagedRuntime"); // [#2670] addition
8182
s.add("org.apache.axis2.transport.jms.JMSOutTransportInfo");
8283

8384
// [databind#2326] (2.9.9)

0 commit comments

Comments
 (0)