This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a change to branch action-context-boost in repository https://gitbox.apache.org/repos/asf/struts.git.
from 2f27e45 WW-4789 WW-3788 Marks LOCALE as deprecated on behalf using helper methods add 269af57 Adds nicer email messages add 03a609c Switchs StrutsException by TypeConversionException in DateConverter, DateConverterTest added for unit testing add a11291d Removes unnecessary import StrutsException add b6586c7 Switches StrutsException by TypeConversionException in NumberConverter; The respective unit tests are added to the NumberConverterTest add a9802a6 Switches StrutsException by TypeConversionException in XWorkBasicConverter; necessary Tests added to XWorkBasicConverterTest add 2453cdb Switchs StrutsException by TypeConversionException in DateConverter, DateConverterTest added for unit testing add ec157c0 Removes unnecessary import StrutsException add 686e069 Switches StrutsException by TypeConversionException in NumberConverter; The respective unit tests are added to the NumberConverterTest add cd9cc53 Switches StrutsException by TypeConversionException in XWorkBasicConverter; necessary Tests added to XWorkBasicConverterTest add 7c92fdd Merge branch 'WW5052-TypeConversionException' of https://github.com/santosr09/struts into WW5052-TypeConversionException add 1ef2985 Corrects formatting defects add 5239aa4 License info added add 2c2b1af Modifies the expected result in DateConverter validation, ignores the TimeZone add 3e0473a Adequates the strings for date formatting due to erros with JDK8 add 9e1a554 Fixes error with Formatting Date when Java is 9 or greater due to the JEP 252 add bf267ad Moves TypeConversionException into org.apache.struts2.conversion add e8ce2c7 Merge pull request #399 from santosr09/WW5052-TypeConversionException add 9d0a6a8 Proposed WW-5068 change. ------ Proposed list of library version updates: --- cdi-api 1.0-SP4 -> 1.2 weld-core 1.0.1-SP4 -> 2.2.16.SP1 weld-se 1.0.1-Final -> weld-se-core 2.2.16.SP1 htmlunit 2.27.0 and 2.37.0 -> 2.39.0 slf4j-api 1.7.29 -> 1.7.30 slf4j-simple 1.7.29 -> 1.7.30 log4j2 2.12.1 - > 2.13.1 jackson 2.10.1 -> 2.10.3 ognl 3.2.12 -> 3.2.14 asm 7.2 -> 7.3.1 spring 4.3.25.RELEASE -> 4.3.26.RELEASE fluido-skin 1.8 -> 1.9 [...] add a5728a2 Merge pull request #403 from JCgH4164838Gh792C124B5/WW-5068-26x add 963fd90 Adds required distributionManagement section to allow publish the site add 230a300 Fixes url used to generate the website new f071c9d Reverse merges master The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: Jenkinsfile | 63 ++++++--- apps/rest-showcase/pom.xml | 2 +- apps/showcase/pom.xml | 6 +- .../xwork2/conversion/impl/DateConverter.java | 6 +- .../xwork2/conversion/impl/NumberConverter.java | 18 +-- .../conversion/impl/XWorkBasicConverter.java | 16 +-- .../conversion/TypeConversionException.java | 2 +- .../xwork2/conversion/impl/DateConverterTest.java | 118 +++++++++++++++++ .../conversion/impl/NumberConverterTest.java | 143 +++++++++++++++++++++ .../conversion/impl/XWorkBasicConverterTest.java | 90 ++++++++++++- plugins/bean-validation/pom.xml | 6 +- plugins/cdi/pom.xml | 2 +- pom.xml | 88 +++++++------ 13 files changed, 472 insertions(+), 88 deletions(-) rename core/src/main/java/{com/opensymphony/xwork2 => org/apache/struts2}/conversion/TypeConversionException.java (97%) create mode 100644 core/src/test/java/com/opensymphony/xwork2/conversion/impl/DateConverterTest.java