From 94d26cb4cdee578ad5f2bbe31b6973f51474157a Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Thu, 16 Apr 2009 22:36:33 +0000 Subject: [PATCH] saveState improvement --- build-spring-webflow/resources/changelog.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-spring-webflow/resources/changelog.txt b/build-spring-webflow/resources/changelog.txt index 446d9ff6..7accc81e 100644 --- a/build-spring-webflow/resources/changelog.txt +++ b/build-spring-webflow/resources/changelog.txt @@ -2,7 +2,7 @@ SPRING WEB FLOW CHANGELOG ========================= http://www.springframework.org/webflow -Changes in version 2.0.7 (2009.04.16) +Changes in version 2.0.7 (2009.04.17) ------------------------------------- Bug Fixes * Fixed several issues with WebFlowMessageCodesResolver algorithm, including a JDK 1.4 compatibility issue (SWF-1064) @@ -23,6 +23,8 @@ Bug Fixes Improvements * Added userEventQueued and getUserEventState methods to View SPI, which simplified ViewState and View object interaction. Custom View implementations will need to be updated to implement these new operations. See View's API JavaDocs and ViewState's doEnter and resume implementations. +* Added saveState method to View SPI, allowing stateful views to save out their component state to support going back after exiting a ViewState with history preserved. + Required by Spring Faces for stateful JSF views. * Added org.springframework.webflow dm Server library definition for use in a dm Server deployment environment (SWF-1067) * Strengthened contract for response-related methods in ExternalContext. Specifically, calling any of the requestRedirect methods also now completes the response. If you attempt to complete a response more than once against an ExternalContext, an IllegalStateException is thrown.