From 04908a81e7342a15ffd881fa6981ef60e555e76c Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Thu, 5 Jan 2023 21:51:45 +0100 Subject: [PATCH 1/4] Add change log URL --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aea1fe86a..19e2596d4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,6 +57,8 @@ jobs: ### Bug fixes - [#743 - Character encoding errors](https://github.com/WebGoat/WebGoat/issues/743) + + Full change log: https://github.com/WebGoat/WebGoat/compare/${{ steps.tag.outputs.tag }}...${{ steps.tag.outputs.tag }} ## Contributors From 683b6296639ff73da20fa2c001b35ea94aab2ccd Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Thu, 5 Jan 2023 21:52:40 +0100 Subject: [PATCH 2/4] Back to snapshot --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e620f0f25..ffa73ef40 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ org.owasp.webgoat webgoat - 2023.2 + 2023.3-SNAPSHOT jar WebGoat From 5c2bbd1227623b6f88b10a1ee31008dcd17657e1 Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Thu, 5 Jan 2023 21:57:08 +0100 Subject: [PATCH 3/4] Fix jar path while creating a release --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 19e2596d4..12db40ac6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: with: draft: false files: | - webgoat/target/webgoat-${{ env.WEBGOAT_MAVEN_VERSION }}.jar + target/webgoat-${{ env.WEBGOAT_MAVEN_VERSION }}.jar body: | ## Version ${{ steps.tag.outputs.tag }} From 27fe1850dee8127d49ec364b81b5fc58a3a5f3f5 Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Thu, 5 Jan 2023 21:59:01 +0100 Subject: [PATCH 4/4] Preparing new release --- README.md | 4 ++-- RELEASE_NOTES.md | 4 ++-- pom.xml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1ab458a87..84391b8c6 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ This way, you can start where you left off. If you remove the container, you nee Download the latest WebGoat release from [https://github.com/WebGoat/WebGoat/releases](https://github.com/WebGoat/WebGoat/releases) ```shell -java -Dfile.encoding=UTF-8 -Dwebgoat.port=8080 -Dwebwolf.port=9090 -jar webgoat-2023.2.jar +java -Dfile.encoding=UTF-8 -Dwebgoat.port=8080 -Dwebwolf.port=9090 -jar webgoat-2023.3.jar ``` Click the link in the log to start WebGoat. @@ -125,7 +125,7 @@ For instance running as a jar on a Linux/macOS it will look like this: ```Shell export EXCLUDE_CATEGORIES="CLIENT_SIDE,GENERAL,CHALLENGE" export EXCLUDE_LESSONS="SqlInjectionAdvanced,SqlInjectionMitigations" -java -jar target/webgoat-2023.2-SNAPSHOT.jar +java -jar target/webgoat-2023.3-SNAPSHOT.jar ``` Or in a docker run it would (once this version is pushed into docker hub) look like this: diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index e310f4033..44ad88e44 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,8 +1,8 @@ # WebGoat release notes -## Version 2023.2 +## Version 2023.3 -With great pleasure, we present you with a new release of WebGoat **2023.2**. Finally, it has been a while. This year starts with a new release of WebGoat. This year we will undoubtedly release more often. From this release on, we began to use a new versioning scheme (https://calver.org/#scheme). +With great pleasure, we present you with a new release of WebGoat **2023.3**. Finally, it has been a while. This year starts with a new release of WebGoat. This year we will undoubtedly release more often. From this release on, we began to use a new versioning scheme (https://calver.org/#scheme). A big thanks to René Zubcevic and Àngel Ollé Blázquez for keeping the project alive this last year, and hopefully, we can make many more releases this year. diff --git a/pom.xml b/pom.xml index ffa73ef40..15851ec3b 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ org.owasp.webgoat webgoat - 2023.3-SNAPSHOT + 2023.3 jar WebGoat