[struts] branch dependabot/maven/org.testng-testng-7.8.0 created (now 220d116f0)

2023-07-30 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/maven/org.testng-testng-7.8.0
in repository https://gitbox.apache.org/repos/asf/struts.git


  at 220d116f0 Bump org.testng:testng from 7.5.1 to 7.8.0

No new revisions were added by this update.



[struts] branch dependabot/maven/javax.enterprise-cdi-api-2.0 created (now 4925a3b45)

2023-07-30 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/javax.enterprise-cdi-api-2.0
in repository https://gitbox.apache.org/repos/asf/struts.git


  at 4925a3b45 Bump javax.enterprise:cdi-api from 1.2 to 2.0

No new revisions were added by this update.



[struts] branch dependabot/maven/opensymphony-sitemesh-2.4.3 created (now e988a46a6)

2023-07-30 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/opensymphony-sitemesh-2.4.3
in repository https://gitbox.apache.org/repos/asf/struts.git


  at e988a46a6 Bump opensymphony:sitemesh from 2.4.2 to 2.4.3

No new revisions were added by this update.



[struts] branch dependabot/maven/org.mortbay.jetty-jsp-2.1-7.0.0pre2 created (now d0844e29b)

2023-07-30 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/org.mortbay.jetty-jsp-2.1-7.0.0pre2
in repository https://gitbox.apache.org/repos/asf/struts.git


  at d0844e29b Bump org.mortbay.jetty:jsp-2.1 from 6.1.26 to 7.0.0pre2

No new revisions were added by this update.



[struts] branch dependabot/maven/io.github.x-stream-mxparser-1.2.2 created (now e13c132ec)

2023-07-30 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/io.github.x-stream-mxparser-1.2.2
in repository https://gitbox.apache.org/repos/asf/struts.git


  at e13c132ec Bump io.github.x-stream:mxparser from 1.2.1 to 1.2.2

No new revisions were added by this update.



[struts] branch WW-5327-non-java-beans updated: Excludes BeanMap

2023-07-30 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch WW-5327-non-java-beans
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/WW-5327-non-java-beans by this 
push:
 new bc141267c Excludes BeanMap
bc141267c is described below

commit bc141267c64c88f9718ecd0745c816e9bc760780
Author: Lukasz Lenart 
AuthorDate: Mon Jul 31 07:34:55 2023 +0200

Excludes BeanMap
---
 core/src/main/resources/struts-excluded-classes.xml | 12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/core/src/main/resources/struts-excluded-classes.xml 
b/core/src/main/resources/struts-excluded-classes.xml
index 524194af9..2c8c6cdb5 100644
--- a/core/src/main/resources/struts-excluded-classes.xml
+++ b/core/src/main/resources/struts-excluded-classes.xml
@@ -2,19 +2,19 @@
 

[struts] branch WW-5327-non-java-beans updated: Ignores class existence

2023-07-30 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch WW-5327-non-java-beans
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/WW-5327-non-java-beans by this 
push:
 new 2533d3177 Ignores class existence
2533d3177 is described below

commit 2533d3177c9f086ab875ca175a603a24283e6748
Author: Lukasz Lenart 
AuthorDate: Mon Jul 31 08:51:14 2023 +0200

Ignores class existence
---
 core/src/main/java/com/opensymphony/xwork2/ognl/OgnlUtil.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/com/opensymphony/xwork2/ognl/OgnlUtil.java 
b/core/src/main/java/com/opensymphony/xwork2/ognl/OgnlUtil.java
index 8c1790229..ecd226d39 100644
--- a/core/src/main/java/com/opensymphony/xwork2/ognl/OgnlUtil.java
+++ b/core/src/main/java/com/opensymphony/xwork2/ognl/OgnlUtil.java
@@ -194,7 +194,7 @@ public class OgnlUtil {
 try {
 classes.add(Class.forName(className));
 } catch (ClassNotFoundException e) {
-throw new ConfigurationException("Cannot load class for 
exclusion/exemption configuration: " + className, e);
+LOG.warn("Class: {} doesn't exist, ignoring it!", className);
 }
 }