Skip to content

Commit 921a48c

Browse files
authored
Targeting Struts version 2.5.33 (#39)
1 parent d7871f2 commit 921a48c

10 files changed

Lines changed: 22 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
[Download and/or Installation instructions](https://github.com/wet-boew/cdts-JavaTemplates/wiki/Installation)
44

5+
## v4.0.1
6+
7+
- Now targeting Struts version 2.5.33
8+
59
## v4.0.0
610

711
- **SECURITY FIX** Removal of default redirect handlers for "leaving secure site" feature. Leaving secure site feature now relies solely on WET functionality. Unless these redirect handlers were explicitely referenced by client application there should be no impact. (Spring version: removal of endpoint "/gocwebtemplate_leavesecuresiteredirect"; JSP version: removal of action "leavesecuresiteredirect.action")

builds/build.properties

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# The file build.properties is generated from build.properties.in by
2-
# Ant script build-setprojectversion.xml.
3-
#
4-
# DO NOT EDIT build.properties DIRECTLY!
5-
#
6-
gocwebtemplate.build.version=4.0.0-SNAPSHOT
1+
# The file build.properties is generated from build.properties.in by
2+
# Ant script build-setprojectversion.xml.
3+
#
4+
# DO NOT EDIT build.properties DIRECTLY!
5+
#
6+
gocwebtemplate.build.version=4.0.1-SNAPSHOT

gocwebtemplate-core/gocwebtemplate-core-base/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>ca.gc.gocwebtemplate</groupId>
1212
<artifactId>gocwebtemplate-core</artifactId>
13-
<version>4.0.0-SNAPSHOT</version>
13+
<version>4.0.1-SNAPSHOT</version>
1414
<relativePath>..</relativePath>
1515
</parent>
1616

gocwebtemplate-core/gocwebtemplate-core-base/src/main/java/goc/webtemplate/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public abstract class Constants {
1313

1414
public static final String CACHE_KEY_STATICFILES_PREFIX = "GoC.Template.CacheKey";
1515

16-
public static final String WEB_TEMPLATE_DISTRIBUTION_VERSION = "4.0.0";
16+
public static final String WEB_TEMPLATE_DISTRIBUTION_VERSION = "4.0.1";
1717

1818
public static final String CDTS_DEFAULT_VERSION = "v5_0_0";
1919

gocwebtemplate-core/gocwebtemplate-core-jsp/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>ca.gc.gocwebtemplate</groupId>
1212
<artifactId>gocwebtemplate-core</artifactId>
13-
<version>4.0.0-SNAPSHOT</version>
13+
<version>4.0.1-SNAPSHOT</version>
1414
<relativePath>..</relativePath>
1515
</parent>
1616

@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>org.apache.struts</groupId>
4444
<artifactId>struts2-core</artifactId>
45-
<version>2.5.30</version>
45+
<version>2.5.33</version>
4646
</dependency>
4747
</dependencies>
4848
</project>

gocwebtemplate-core/gocwebtemplate-core-spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>ca.gc.gocwebtemplate</groupId>
1212
<artifactId>gocwebtemplate-core</artifactId>
13-
<version>4.0.0-SNAPSHOT</version>
13+
<version>4.0.1-SNAPSHOT</version>
1414
<relativePath>..</relativePath>
1515
</parent>
1616

gocwebtemplate-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>ca.gc.gocwebtemplate</groupId>
44
<artifactId>gocwebtemplate-core</artifactId>
5-
<version>4.0.0-SNAPSHOT</version>
5+
<version>4.0.1-SNAPSHOT</version>
66
<packaging>pom</packaging>
77

88
<name>gocwebtemplate-core</name>

gocwebtemplate-sample-jsp/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>ca.gc.gocwebtemplate</groupId>
55
<artifactId>gocwebtemplate-sample-jsp</artifactId>
6-
<version>4.0.0-SNAPSHOT</version>
6+
<version>4.0.1-SNAPSHOT</version>
77
<packaging>war</packaging>
88

99
<name>gocwebtemplate-sample-jsp</name>
@@ -14,7 +14,7 @@
1414
<m2eclipse.wtp.contextRoot>GoCWebTemplateSampleJSP</m2eclipse.wtp.contextRoot> <!-- Set the context root for running locally here! This will keep Eclipse from overriding weblogic.xml with the project's name on every Maven Update operations -->
1515

1616
<java.version>1.8</java.version>
17-
<webtemplate.version>4.0.0-SNAPSHOT</webtemplate.version>
17+
<webtemplate.version>4.0.1-SNAPSHOT</webtemplate.version>
1818

1919
<build_number>local</build_number>
2020
<maven.build.timestamp.format>yyyy/MM/dd HH:mm:ss</maven.build.timestamp.format>
@@ -95,7 +95,7 @@
9595
<dependency>
9696
<groupId>org.apache.struts</groupId>
9797
<artifactId>struts2-tiles-plugin</artifactId>
98-
<version>2.5.30</version>
98+
<version>2.5.33</version>
9999
<scope>runtime</scope>
100100
</dependency>
101101

gocwebtemplate-sample-spring/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33

44
<groupId>ca.gc.gocwebtemplate</groupId>
55
<artifactId>gocwebtemplate-sample-spring</artifactId>
6-
<version>4.0.0-SNAPSHOT</version>
6+
<version>4.0.1-SNAPSHOT</version>
77
<!--Change packaging type to "war" if your application must be deployable in a web container-->
88
<packaging>jar</packaging>
99

1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1212
<java.version>1.8</java.version>
1313
<springboot.version>2.6.6</springboot.version>
14-
<webtemplate.version>4.0.0-SNAPSHOT</webtemplate.version>
14+
<webtemplate.version>4.0.1-SNAPSHOT</webtemplate.version>
1515

1616
<build_number>local</build_number>
1717
<timestamp>${maven.build.timestamp}</timestamp>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>ca.gc.gocwebtemplate</groupId>
44
<artifactId>gocwebtemplate</artifactId>
5-
<version>4.0.0-SNAPSHOT</version>
5+
<version>4.0.1-SNAPSHOT</version>
66
<packaging>pom</packaging>
77

88
<name>gocwebtemplate</name>

0 commit comments

Comments
 (0)