Skip to content

Commit 43005f8

Browse files
committed
Release 2.0 RC1
1 parent 9932f9f commit 43005f8

File tree

9 files changed

+101
-31
lines changed

9 files changed

+101
-31
lines changed

archetype/src/main/resources/archetype-resources/pom.xml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,10 @@
1212
<finalName>${artifactId}</finalName>
1313
</build>
1414
<dependencies>
15-
<dependency>
16-
<groupId>org.springframework.ws</groupId>
17-
<artifactId>spring-oxm</artifactId>
18-
<version>2.0.0-M1</version>
19-
</dependency>
2015
<dependency>
2116
<groupId>org.springframework.ws</groupId>
2217
<artifactId>spring-ws-core</artifactId>
23-
<version>2.0.0-M1</version>
18+
<version>2.0.0-RC1</version>
2419
</dependency>
2520
</dependencies>
2621
</project>

changelog.txt

Lines changed: 60 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,65 @@ SPRING WEB SERVICES CHANGELOG
22
=============================
33
http://www.springframework.org/spring-ws
44

5+
Changes in version 2.0 Release Candidate 1
6+
----------------------------------
7+
8+
** Sub-task
9+
* [SWS-631] - Create Client-Side testing framework
10+
* [SWS-632] - Create Server-Side testing framework
11+
* [SWS-651] - Add documentation for testing framework
12+
13+
** Bug
14+
* [SWS-640] - evaluateAsBoolean returns true for node with text content "false"
15+
16+
** Improvement
17+
* [SWS-544] - Add test framework for Spring WS
18+
* [SWS-635] - handleUsernameTokenUnknown() should attach root cause
19+
* [SWS-641] - Make sentMessageTracingLogger independent from receivedMessageTracingLogger
20+
* [SWS-648] - Document Spring-WS Security exception handling
21+
* [SWS-650] - AxiomSoapMessageFactory does not provide way to set properties on XMLInputFactory
22+
23+
** New Feature
24+
* [SWS-352] - Full streaming WebServiceMessage/SoapMessage
25+
* [SWS-642] - Support resolving SOAP header elements in @Endpoint method parameters
26+
* [SWS-643] - Create TransformerHelper class
27+
28+
** Task
29+
* [SWS-639] - Deprecate redundant XML classes
30+
31+
Changes in version 2.0 Milestone 3
32+
----------------------------------
33+
34+
** Sub-task
35+
* [SWS-631] - Create Client-Side testing framework
36+
37+
** Improvement
38+
* [SWS-610] - Incompatibility with WS-I requirement R2750
39+
40+
** Task
41+
* [SWS-620] - Add the Spring-OXM jar to the "with dependencies" distribution
42+
* [SWS-624] - Documentation- explain that WSDL generation should better not be used in production
43+
44+
Changes in version 2.0 Milestone 2
45+
----------------------------------
46+
47+
** Bug
48+
* [SWS-613] - Jaxp13XPathTemplate uses thread-unsafe XPathFactory as field
49+
50+
** Improvement
51+
* [SWS-538] - Add support for XWSS 3.1
52+
53+
** New Feature
54+
* [SWS-193] - XwsSecurityInterceptor : funtionality for skipping the validate of a SOAP message when there are no WSSE headers in SOAP envelope.
55+
* [SWS-349] - Support @PayloadRoot annotation on methods with DOM, JDOM, DOM4J and XOM type method signatures
56+
* [SWS-351] - Arbitrary parameter injection for @Endpoints
57+
* [SWS-428] - XMPP support
58+
* [SWS-540] - Adding XML declaration to a response
59+
60+
** Task
61+
* [SWS-559] - Upgrade Spring Security to 3.0.2
62+
* [SWS-603] - Drop OXM chapter from ref docs
63+
* [SWS-604] - Upgrade XSD schemas
564

665
Changes in version 2.0 Milestone 1
766
------------------------
@@ -432,4 +491,4 @@ Changes in version 1.5.0 Milestone 1
432491
* [SWS-121] - Spring Namespace support
433492
* [SWS-139] - Mail transport support
434493
* [SWS-187] - SOAP 1.2 Compatible WSDL descriptor generation
435-
* [SWS-228] - Support Spring 2.5
494+
* [SWS-228] - Support Spring 2.5

notes.txt

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,31 @@
11
Dear Spring community,
22

3-
I'm pleased to announce that Spring Web Services 2.0 Milestone 1 has been
4-
released!
3+
I'm pleased to announce that Spring Web Services 2.0 Release Candidate 1 has
4+
been released!
55

6-
This is the first milestone release in the 2.0 release cycle. It does not
7-
introduce any new features (yet), but does add the following:
6+
This is the first release candidate in the 2.0 release cycle. The most
7+
important new feature in this release is the completion of our integration test
8+
facilities with the inclusion of the server-side Web service testing framework.
9+
The testing framework is documented here:
810

9-
- Usage of Spring's OXM
10-
- Java 5 API (including generics, varargs, etc)
11+
http://static.springsource.org/spring-ws/sites/2.0/reference/html/client.html#d0e3596
12+
and
13+
http://static.springsource.org/spring-ws/sites/2.0/reference/html/server.html#d0e3126
1114

12-
Please see the changelog for details.
15+
Note that we did have to make some changes in the client-side testing code, as
16+
compared to 2.0-M1. I suggest you try out the new testing module today! Please
17+
leave feedback through JIRA or on the forums.
1318

14-
Spring Web Services 2.0 is due in the second quarter of 2010.
19+
While we have documented the new testing module, there are still other new
20+
features that need to be documented. These are scheduled for RC2, but RC1 is
21+
'code complete'. Unless we (or you!) find any issues, of course.
1522

16-
For more information, see http://static.springframework.org/spring-ws/site/
23+
We're also interested in any regression that come up when upgrading. While we
24+
did make some changes, Spring-WS 2.0 should be a drop-in replacement for 1.5.
25+
Please file a JIRA issue if you find any.
26+
27+
Please see the changelog for more details.
28+
29+
Spring Web Services 2.0 is due in Q4 2010/Q1 2011.
30+
31+
For more information, see http://static.springframework.org/spring-ws/sites/2.0

parent/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
<distributionManagement>
1010
<downloadUrl>http://static.springframework.org/spring-ws/site/downloads/releases.html</downloadUrl>
1111
<repository>
12-
<id>local</id>
13-
<url>file:///Users/arjen/Projects/Spring/repos/repo</url>
12+
<id>spring-milestone</id>
13+
<name>Spring Milestone Repository</name>
14+
<url>s3://maven.springframework.org/milestone</url>
1415
</repository>
1516
<snapshotRepository>
1617
<id>spring-snapshot</id>

readme.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SPRING WEB SERVICES 2.0 M1 (March 2010)
1+
SPRING WEB SERVICES 2.0 RC1 (November 2010)
22
-------------------------------
33
http://www.springframework.org/spring-ws
44
http://forum.springframework.org/forumdisplay.php?f=39
@@ -36,27 +36,27 @@ The following distinct jar files are included in the distribution. This list spe
3636
third-party dependencies. Libraries in [brackets] are optional, i.e. just necessary for certain functionality. For an
3737
exact list of Spring-WS project dependencies see the respective Maven2 pom.xml files.
3838

39-
* spring-ws-core-2.0.0-M1.jar
39+
* spring-ws-core-2.0.0-RC1.jar
4040
- Contents: The Spring-WS Core
4141
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-oxm
4242
[Log4J, spring-web, spring-webmvc, SAAJ, JDOM, StAX, Servlet API, JAF, Axiom, DOM4J, XOM, WSDL4J]
4343

44-
* spring-ws-support-2.0.0-M1.jar
44+
* spring-ws-support-2.0.0-RC1.jar
4545
- Contents: The Spring-WS Support
4646
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-core
4747
[JMS, JavaMail]
4848

49-
* spring-ws-security-2.0.0-M1.jar
49+
* spring-ws-security-2.0.0-RC1.jar
5050
- Contents: Spring-WS Security integration
5151
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-ws-core
5252
[Log4J, xmlsdig, xmlsec, XWS-security, Acegi, WSS4J]
5353

54-
* spring-xml-2.0.0-M1.jar
54+
* spring-xml-2.0.0-RC1.jar
5555
- Contents: Spring XML utility framework
5656
- Dependencies: Commons Logging, spring-beans, spring-core
5757
[StAX, Xalan, Jaxen]
5858

59-
* spring-ws-2.0.0-M1.jar
59+
* spring-ws-2.0.0-RC1.jar
6060
- Contents: Convenient al-in-one jar containing all of the jars described above
6161

6262

sandbox/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>spring-ws-parent</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.0-RC1-SNAPSHOT</version>
6+
<version>2.0.0-RC1</version>
77
<relativePath>../parent/pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

src/docbkx/tutorial.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@
474474
</para>
475475
<screen>mvn archetype:create -DarchetypeGroupId=org.springframework.ws \
476476
-DarchetypeArtifactId=spring-ws-archetype \
477-
-DarchetypeVersion=2.0.0-M1 \
477+
-DarchetypeVersion=2.0.0-RC1 \
478478
-DgroupId=com.mycompany.hr \
479479
-DartifactId=holidayService
480480
</screen>
@@ -634,7 +634,7 @@ public class HolidayEndpoint extends AbstractJDomPayloadEndpoint {
634634
<dependency>
635635
<groupId>org.springframework.ws</groupId>
636636
<artifactId>spring-ws-core</artifactId>
637-
<version>2.0.0-M1</version>
637+
<version>2.0.0-RC1</version>
638638
</dependency>
639639
<dependency>
640640
<groupId>jdom</groupId>

src/site/apt/downloads/releases.apt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Downloads
66

77
* Get the latest Spring Web Services releases here
88

9-
* <<Spring-WS 2.0.0 M1 is the current development release (JDK 1.5+)>>
9+
* <<Spring-WS 2.0.0 RC1 is the current development release (JDK 1.5+)>>
1010

11-
* {{{http://www.springsource.com/download/community?project=Spring%20Web%20Services}Download}} | {{{http://static.springframework.org/spring-ws/docs/2.0.0-m1/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=85421}Announcement}}
11+
* {{{http://www.springsource.com/download/community?project=Spring%20Web%20Services}Download}} | {{{http://static.springframework.org/spring-ws/docs/2.0.0-rc1/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=98065}Announcement}}
1212

1313

1414
* <<Spring-WS 1.5.9 is the current production release (JDK 1.4+)>>

src/site/apt/downloads/snapshots.apt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Snapshot Builds
77
These builds are provided for testing and development purposes only. They are built by a Bamboo process
88
automatically using the latest snapshot from Subversion.
99

10-
The snapshots are deloyed to a Maven2 snapshot repository. To use it, just add the following repository to the POM:
10+
The snapshots are deployed to a Maven2 snapshot repository. To use it, just add the following repository to the POM:
1111

1212
+---------------
1313
<repository>
@@ -23,7 +23,7 @@ Snapshot Builds
2323
<dependency>
2424
<groupId>org.springframework.ws</groupId>
2525
<artifactId>spring-ws-core</artifactId>
26-
<version>2.0.0-M2-SNAPSHOT</version>
26+
<version>2.0.0-RC2-SNAPSHOT</version>
2727
</dependency>
2828
+---------------
2929

0 commit comments

Comments
 (0)