This is an automated email from the ASF dual-hosted git repository. thiagohp pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
from 50eef37fa TAP5-2742: fixing ComponentDependencyGraphvizGeneratorImpl new 06e1c00dc TAP5-1733: Gracefully deal with FormsRequirePostException in prod mode. new 166ade9bc TAP5-1733: some adjustments to avoid tapestry-core stuff in tapestry-ioc The 2 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: .../tapestry5/commons/util/ExceptionUtils.java | 31 ++++++++++- .../apache/tapestry5/corelib/components/Form.java | 2 +- .../internal}/FormsRequirePostException.java | 4 +- .../FormsRequirePostExceptionHandlerAssistant.java | 61 +++++++++++++++++++++ .../apache/tapestry5/modules/TapestryModule.java | 13 ++++- ...msRequirePostExceptionHandlerAssistantTest.java | 63 ++++++++++++++++++++++ .../org/apache/tapestry5/ioc/OperationTracker.java | 16 ++++++ .../ioc/internal/OperationTrackerImpl.java | 16 ++++-- 8 files changed, 199 insertions(+), 7 deletions(-) rename {commons/src/main/java/org/apache/tapestry5/commons/util => tapestry-core/src/main/java/org/apache/tapestry5/internal}/FormsRequirePostException.java (90%) create mode 100644 tapestry-core/src/main/java/org/apache/tapestry5/internal/FormsRequirePostExceptionHandlerAssistant.java create mode 100644 tapestry-core/src/test/java/org/apache/tapestry5/internal/FormsRequirePostExceptionHandlerAssistantTest.java