Skip to content

Commit

Permalink
Updating version to 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
plup2 committed Nov 8, 2023
1 parent bbd4ea4 commit 148e3e2
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

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

## v4.0.0

- **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")
- Bug fixes

## v3.0.0

- **IMPORTANT** ALL LAYOUT DEFINITIONS UPDATED - All inline scripts and occurences of `document.write` were removed.
Expand Down
2 changes: 1 addition & 1 deletion builds/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
#
# DO NOT EDIT build.properties DIRECTLY!
#
gocwebtemplate.build.version=3.0.0-SNAPSHOT
gocwebtemplate.build.version=4.0.0-SNAPSHOT
2 changes: 1 addition & 1 deletion gocwebtemplate-core/gocwebtemplate-core-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>ca.gc.gocwebtemplate</groupId>
<artifactId>gocwebtemplate-core</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>4.0.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public abstract class Constants {

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

public static final String WEB_TEMPLATE_DISTRIBUTION_VERSION = "3.0.0";
public static final String WEB_TEMPLATE_DISTRIBUTION_VERSION = "4.0.0";

public static final String CDTS_DEFAULT_VERSION = "v4_1_0";

Expand Down
2 changes: 1 addition & 1 deletion gocwebtemplate-core/gocwebtemplate-core-jsp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>ca.gc.gocwebtemplate</groupId>
<artifactId>gocwebtemplate-core</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>4.0.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion gocwebtemplate-core/gocwebtemplate-core-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>ca.gc.gocwebtemplate</groupId>
<artifactId>gocwebtemplate-core</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>4.0.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion gocwebtemplate-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ca.gc.gocwebtemplate</groupId>
<artifactId>gocwebtemplate-core</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>gocwebtemplate-core</name>
Expand Down
4 changes: 2 additions & 2 deletions gocwebtemplate-sample-jsp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>ca.gc.gocwebtemplate</groupId>
<artifactId>gocwebtemplate-sample-jsp</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>4.0.0-SNAPSHOT</version>
<packaging>war</packaging>

<name>gocwebtemplate-sample-jsp</name>
Expand All @@ -14,7 +14,7 @@
<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 -->

<java.version>1.8</java.version>
<webtemplate.version>3.0.0-SNAPSHOT</webtemplate.version>
<webtemplate.version>4.0.0-SNAPSHOT</webtemplate.version>

<build_number>local</build_number>
<maven.build.timestamp.format>yyyy/MM/dd HH:mm:ss</maven.build.timestamp.format>
Expand Down
4 changes: 2 additions & 2 deletions gocwebtemplate-sample-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@

<groupId>ca.gc.gocwebtemplate</groupId>
<artifactId>gocwebtemplate-sample-spring</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>4.0.0-SNAPSHOT</version>
<!--Change packaging type to "war" if your application must be deployable in a web container-->
<packaging>jar</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<springboot.version>2.6.6</springboot.version>
<webtemplate.version>3.0.0-SNAPSHOT</webtemplate.version>
<webtemplate.version>4.0.0-SNAPSHOT</webtemplate.version>

<build_number>local</build_number>
<timestamp>${maven.build.timestamp}</timestamp>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ca.gc.gocwebtemplate</groupId>
<artifactId>gocwebtemplate</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>gocwebtemplate</name>
Expand Down

0 comments on commit 148e3e2

Please sign in to comment.