Skip to content

Commit 52981a2

Browse files
committed
Spring Web Flow 2.2.0.RC1 tag
1 parent 7b2ab75 commit 52981a2

File tree

13 files changed

+48
-27
lines changed

13 files changed

+48
-27
lines changed

build-spring-webflow/resources/changelog.txt

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,31 @@ SPRING WEB FLOW CHANGELOG
22
=========================
33
http://www.springframework.org/webflow
44

5-
Changes in version 2.2.0.RELEASE ()
5+
Changes in version 2.2.0.RC1 (Sep 22)
6+
-------------------------------------
7+
[SWF-1333] - Spring security tag support for JSF/Facelets
8+
[SWF-1368] - Build the Web Flow booking reference application with PrimeFaces components
9+
[SWF-1379] - Provide support for Portlet API 2.0 and JSF 1.2
10+
[SWF-1386] - Split org.springframework.js-[version].jar into two artifacts
11+
[SWF-1387] - Upgrade to dojo 1.5.0 and include dojox
12+
[SWF-1375] - Provide custom namespace element(s) to simplify configuration for JSF 2
13+
[SWF-1373] - Upgrade to Spring 3.0.4 and update the booking-mvc sample
14+
[SWF-1376] - Handle missing spring headers for ajax redirect
15+
[SWF-1388] - Move client-side resources (.js, .css) to META-INF/web-resources instead of META-INF
16+
[SWF-1381] - FlowExecutionImpl: handleException ignores result of another handleException
17+
[SWF-1383] - Spring Faces throws NPE when writing flow state
18+
[SWF-1385] - servletRelative redirects don't work with default-servlet-handler
19+
[SWF-1389] - MessageContextErrors doesn't obey the Errors contract
20+
[SWF-1378] - org.springframework.faces.webflow.FlowResourceResolver incompatible with JSF 1.2
21+
22+
Changes in version 2.2.0.M1 (Aug 5)
623
-----------------------------------
7-
* Add support for handling JSF 2 resource requests (SWF-1366)
8-
* Add support for JSF 2 Ajax requests (SWF-1367)
924

25+
[SWF-1365] - Add support for partial state saving in JSF 2
26+
[SWF-1366] - Add support for handling JSF 2 resource requests
27+
[SWF-1367] - Add support for JSF 2 Ajax requests
28+
[SWF-1313] - <sf:commandLink /> and <sf:commandButton />: "disabled" attribute not working
29+
[SWF-1364] - Changelog version typo
1030

1131
Changes in version 2.1.1.RELEASE (July 19, 2010)
1232
------------------------------------------------

build-spring-webflow/resources/readme.txt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ It is a powerful controller engine that addresses the "C" in MVC.
2020

2121
2. RELEASE NOTES
2222
----------------
23-
Spring Web Flow 2.1.x requires Java SE 1.5 and Spring Framework 3.0.0 or above to run.
23+
Spring Web Flow 2.2.x requires Java SE 1.5 and Spring Framework 3.0.0 or above to run.
2424

2525
Java SE 5.0 with Ant 1.7 is also required to build.
2626

@@ -49,21 +49,21 @@ The following jar files are included in the distribution.
4949
The contents of each jar and its dependencies are noted.
5050
Dependencies in [brackets] are optional, and are just necessary for certain functionality.
5151

52-
* org.springframework.webflow-2.2.0.RELEASE.jar
52+
* org.springframework.webflow-2.2.0.RC1.jar
5353
- Contents: The Spring Web Flow system
5454
- Dependencies: Commons Logging, spring-core, spring-beans, spring-context, spring-expression, spring-binding, spring-web, spring-webmvc-servlet, spring-js
5555
[Log4J, Xerces, XML APIs, OGNL, EL API, JPA API, Hibernate, Spring Security, Servlet API, Portlet API, JUnit]
5656

57-
* org.springframework.binding-2.2.0.RELEASE.jar
57+
* org.springframework.binding-2.2.0.RC1.jar
5858
- Contents: The Spring Data Binding framework, a utility library used by Web Flow
5959
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-expression
6060
[Log4J, OGNL, EL API]
6161

62-
* org.springframework.js-2.2.0.RELEASE.jar
62+
* org.springframework.js-2.2.0.RC1.jar
6363
- Contents: The Spring JavaScript module, containing Spring's Dojo integration and additional JavaScript functionality.
6464
- Dependencies: Dojo Toolkit
6565

66-
* org.springframework.faces-2.2.0.RELEASE.jar
66+
* org.springframework.faces-2.2.0.RC1.jar
6767
- Contents: The Spring Faces module, containing Spring's integration with Java Server Faces (JSF) and additional JSF functionality.
6868
- Dependencies: spring-webflow, spring-js, JSF API
6969

@@ -102,27 +102,27 @@ Then declare the following dependencies:
102102
<dependency>
103103
<groupId>org.springframework.webflow</groupId>
104104
<artifactId>org.springframework.binding</artifactId>
105-
<version>2.2.0.RELEASE</version>
105+
<version>2.2.0.RC1</version>
106106
</dependency>
107107

108108
<dependency>
109109
<groupId>org.springframework.webflow</groupId>
110110
<artifactId>org.springframework.js</artifactId>
111-
<version>2.2.0.RELEASE</version>
111+
<version>2.2.0.RC1</version>
112112
</dependency>
113113

114114
<dependency>
115115
<groupId>org.springframework.webflow</groupId>
116116
<artifactId>org.springframework.webflow</artifactId>
117-
<version>2.2.0.RELEASE</version>
117+
<version>2.2.0.RC1</version>
118118
</dependency>
119119

120120
If using JavaServerFaces:
121121

122122
<dependency>
123123
<groupId>org.springframework.webflow</groupId>
124124
<artifactId>org.springframework.faces</artifactId>
125-
<version>2.2.0.RELEASE</version>
125+
<version>2.2.0.RC1</version>
126126
</dependency>
127127

128128
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:
139139

140140
Then declare the following dependencies in your ivy.xml:
141141

142-
<dependency org="org.springframework.webflow" name="org.springframework.binding" rev="2.2.0.RELEASE" conf="compile->runtime" />
143-
<dependency org="org.springframework.webflow" name="org.springframework.js" rev="2.2.0.RELEASE" conf="compile->runtime" />
144-
<dependency org="org.springframework.webflow" name="org.springframework.webflow" rev="2.2.0.RELEASE" conf="compile->runtime" />
142+
<dependency org="org.springframework.webflow" name="org.springframework.binding" rev="2.2.0.RC1" conf="compile->runtime" />
143+
<dependency org="org.springframework.webflow" name="org.springframework.js" rev="2.2.0.RC1" conf="compile->runtime" />
144+
<dependency org="org.springframework.webflow" name="org.springframework.webflow" rev="2.2.0.RC1" conf="compile->runtime" />
145145

146146
If using JavaServerFaces:
147147

148-
<dependency org="org.springframework.webflow" name="org.springframework.faces" rev="2.2.0.RELEASE" conf="compile->runtime" />
148+
<dependency org="org.springframework.webflow" name="org.springframework.faces" rev="2.2.0.RC1" conf="compile->runtime" />
149149

150150
Refer to the reference documentation for more coverage on obtaining Web Flow jars using Maven or Ivy.
151151

build.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
version=2.2.0
2-
release.type=integration
2+
release.type=milestone
3+
build.stamp=RC1
34
natural.name=spring-webflow
45
project.key=SWF
56
ivy.cache.dir=${basedir}/../ivy-cache

spring-binding/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>spring-binding</artifactId>
66
<packaging>jar</packaging>
77
<name>Spring Binding</name>
8-
<version>2.2.0.BUILD-SNAPSHOT</version>
8+
<version>2.2.0.RC1</version>
99
<dependencies>
1010
<dependency>
1111
<groupId>commons-logging</groupId>

spring-faces/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>spring-faces</artifactId>
66
<packaging>jar</packaging>
77
<name>Spring Faces</name>
8-
<version>2.2.0.BUILD-SNAPSHOT</version>
8+
<version>2.2.0.RC1</version>
99
<dependencies>
1010
<dependency>
1111
<groupId>commons-logging</groupId>

spring-js-resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
<artifactId>spring-js-resources</artifactId>
66
<packaging>jar</packaging>
77
<name>Spring JavaScript Resources</name>
8-
<version>2.2.0.BUILD-SNAPSHOT</version>
8+
<version>2.2.0.RC1</version>
99
</project>

spring-js/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>spring-js</artifactId>
66
<packaging>jar</packaging>
77
<name>Spring JavaScript</name>
8-
<version>2.2.0.BUILD-SNAPSHOT</version>
8+
<version>2.2.0.RC1</version>
99
<dependencies>
1010
<dependency>
1111
<groupId>commons-logging</groupId>

spring-webflow-samples/booking-faces/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>org.springframework.webflow.samples</groupId>
66
<artifactId>booking-faces</artifactId>
77
<packaging>war</packaging>
8-
<version>2.2.0.BUILD-SNAPSHOT</version>
8+
<version>2.2.0.RC1</version>
99
<dependencies>
1010
<dependency>
1111
<groupId>javax.persistence</groupId>

spring-webflow-samples/booking-mvc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>org.springframework.webflow.samples</groupId>
66
<artifactId>booking-mvc</artifactId>
77
<packaging>war</packaging>
8-
<version>2.2.0.BUILD-SNAPSHOT</version>
8+
<version>2.2.0.RC1</version>
99
<dependencies>
1010
<dependency>
1111
<groupId>javax.persistence</groupId>

spring-webflow-samples/booking-portlet-faces/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>org.springframework.webflow.samples</groupId>
66
<artifactId>booking-portlet-faces</artifactId>
77
<packaging>war</packaging>
8-
<version>2.2.0.BUILD-SNAPSHOT</version>
8+
<version>2.2.0.RC1</version>
99
<dependencies>
1010
<dependency>
1111
<groupId>com.sun.facelets</groupId>

0 commit comments

Comments
 (0)