Update changelog for 2.2.0.RC1 release

This commit is contained in:
Rossen Stoyanchev
2010-09-22 09:55:16 +00:00
parent 7b2ab7587c
commit d18971b61e
2 changed files with 37 additions and 17 deletions

View File

@@ -2,11 +2,31 @@ SPRING WEB FLOW CHANGELOG
=========================
http://www.springframework.org/webflow
Changes in version 2.2.0.RELEASE ()
-----------------------------------
* Add support for handling JSF 2 resource requests (SWF-1366)
* Add support for JSF 2 Ajax requests (SWF-1367)
Changes in version 2.2.0.RC1 (Sep 22)
-------------------------------------
[SWF-1333] - Spring security tag support for JSF/Facelets
[SWF-1368] - Build the Web Flow booking reference application with PrimeFaces components
[SWF-1379] - Provide support for Portlet API 2.0 and JSF 1.2
[SWF-1386] - Split org.springframework.js-[version].jar into two artifacts
[SWF-1387] - Upgrade to dojo 1.5.0 and include dojox
[SWF-1375] - Provide custom namespace element(s) to simplify configuration for JSF 2
[SWF-1373] - Upgrade to Spring 3.0.4 and update the booking-mvc sample
[SWF-1376] - Handle missing spring headers for ajax redirect
[SWF-1388] - Move client-side resources (.js, .css) to META-INF/web-resources instead of META-INF
[SWF-1381] - FlowExecutionImpl: handleException ignores result of another handleException
[SWF-1383] - Spring Faces throws NPE when writing flow state
[SWF-1385] - servletRelative redirects don't work with default-servlet-handler
[SWF-1389] - MessageContextErrors doesn't obey the Errors contract
[SWF-1378] - org.springframework.faces.webflow.FlowResourceResolver incompatible with JSF 1.2
Changes in version 2.2.0.M1 (Aug 5)
-----------------------------------
[SWF-1365] - Add support for partial state saving in JSF 2
[SWF-1366] - Add support for handling JSF 2 resource requests
[SWF-1367] - Add support for JSF 2 Ajax requests
[SWF-1313] - <sf:commandLink /> and <sf:commandButton />: "disabled" attribute not working
[SWF-1364] - Changelog version typo
Changes in version 2.1.1.RELEASE (July 19, 2010)
------------------------------------------------

View File

@@ -20,7 +20,7 @@ It is a powerful controller engine that addresses the "C" in MVC.
2. RELEASE NOTES
----------------
Spring Web Flow 2.1.x requires Java SE 1.5 and Spring Framework 3.0.0 or above to run.
Spring Web Flow 2.2.x requires Java SE 1.5 and Spring Framework 3.0.0 or above to run.
Java SE 5.0 with Ant 1.7 is also required to build.
@@ -49,21 +49,21 @@ The following jar files are included in the distribution.
The contents of each jar and its dependencies are noted.
Dependencies in [brackets] are optional, and are just necessary for certain functionality.
* org.springframework.webflow-2.2.0.RELEASE.jar
* org.springframework.webflow-2.2.0.RC1.jar
- Contents: The Spring Web Flow system
- Dependencies: Commons Logging, spring-core, spring-beans, spring-context, spring-expression, spring-binding, spring-web, spring-webmvc-servlet, spring-js
[Log4J, Xerces, XML APIs, OGNL, EL API, JPA API, Hibernate, Spring Security, Servlet API, Portlet API, JUnit]
* org.springframework.binding-2.2.0.RELEASE.jar
* org.springframework.binding-2.2.0.RC1.jar
- Contents: The Spring Data Binding framework, a utility library used by Web Flow
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-expression
[Log4J, OGNL, EL API]
* org.springframework.js-2.2.0.RELEASE.jar
* org.springframework.js-2.2.0.RC1.jar
- Contents: The Spring JavaScript module, containing Spring's Dojo integration and additional JavaScript functionality.
- Dependencies: Dojo Toolkit
* org.springframework.faces-2.2.0.RELEASE.jar
* org.springframework.faces-2.2.0.RC1.jar
- Contents: The Spring Faces module, containing Spring's integration with Java Server Faces (JSF) and additional JSF functionality.
- Dependencies: spring-webflow, spring-js, JSF API
@@ -102,19 +102,19 @@ Then declare the following dependencies:
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>org.springframework.binding</artifactId>
<version>2.2.0.RELEASE</version>
<version>2.2.0.RC1</version>
</dependency>
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>org.springframework.js</artifactId>
<version>2.2.0.RELEASE</version>
<version>2.2.0.RC1</version>
</dependency>
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>org.springframework.webflow</artifactId>
<version>2.2.0.RELEASE</version>
<version>2.2.0.RC1</version>
</dependency>
If using JavaServerFaces:
@@ -122,7 +122,7 @@ If using JavaServerFaces:
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>org.springframework.faces</artifactId>
<version>2.2.0.RELEASE</version>
<version>2.2.0.RC1</version>
</dependency>
To access jars using Ivy, add the following repositories to your Ivy config:
@@ -139,13 +139,13 @@ To access jars using Ivy, add the following repositories to your Ivy config:
Then declare the following dependencies in your ivy.xml:
<dependency org="org.springframework.webflow" name="org.springframework.binding" rev="2.2.0.RELEASE" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.js" rev="2.2.0.RELEASE" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.webflow" rev="2.2.0.RELEASE" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.binding" rev="2.2.0.RC1" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.js" rev="2.2.0.RC1" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.webflow" rev="2.2.0.RC1" conf="compile->runtime" />
If using JavaServerFaces:
<dependency org="org.springframework.webflow" name="org.springframework.faces" rev="2.2.0.RELEASE" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.faces" rev="2.2.0.RC1" conf="compile->runtime" />
Refer to the reference documentation for more coverage on obtaining Web Flow jars using Maven or Ivy.