From 28d1df9d0a31f798b93e973523b1fc55bb726c7f Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Thu, 12 Mar 2009 21:56:16 +0000 Subject: [PATCH] polish --- build-spring-webflow/resources/changelog.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-spring-webflow/resources/changelog.txt b/build-spring-webflow/resources/changelog.txt index 428afd37..8ed9ae58 100644 --- a/build-spring-webflow/resources/changelog.txt +++ b/build-spring-webflow/resources/changelog.txt @@ -25,6 +25,9 @@ Bug Fixes * Made FlowHandlerAdapter#sendRedirect method protected, allowing overriding of web flow system redirect behavior; for example, to redirect to a SSL channel. * Made DefaultFlowUrlHandler consistent with Spring MVC RedirectView behavior for URL encoding of flow URL parameters; URL encoding scheme is also now pluggable. * Introduced createDefaultFlowHandler hook in FlowHandlerMapping, allowing for customizing the Default FlowHandler implementation application wide (SWF-994) +* Fixed bug where Hibernate and JPA flow execution listeners performed their commits against the flow-managed PersistenceContext after the flow had ended (SWF-1010). + This prevented exceptions such as optimistic locking failures from being handled by the flow. + Commit processing is now performed in the sessionEnding listener callback now, which is called before the flow actually terminates. Improvements * Improved FlowExecution test documentation