From 2cb4312482f06cacf7b638bb3777e0ecad4d003a Mon Sep 17 00:00:00 2001 From: Thomas Mortagne <thomas.mortagne@gmail.com> Date: Mon, 26 Apr 2021 16:40:12 +0200 Subject: [PATCH] XDOCKER-188: Upgrade stable version to 13.3 --- 13/mysql-tomcat/.env | 2 +- 13/mysql-tomcat/Dockerfile | 4 ++-- 13/postgres-tomcat/.env | 2 +- 13/postgres-tomcat/Dockerfile | 4 ++-- build.gradle | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/13/mysql-tomcat/.env b/13/mysql-tomcat/.env index 2a1d474..f9d917b 100644 --- a/13/mysql-tomcat/.env +++ b/13/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=13.2 +XWIKI_VERSION=13.3 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/13/mysql-tomcat/Dockerfile b/13/mysql-tomcat/Dockerfile index f35c923..62cb90a 100644 --- a/13/mysql-tomcat/Dockerfile +++ b/13/mysql-tomcat/Dockerfile @@ -43,9 +43,9 @@ RUN apt-get update && \ # Install XWiki as the ROOT webapp context in Tomcat # Create the Tomcat temporary directory # Configure the XWiki permanent directory -ENV XWIKI_VERSION="13.2" +ENV XWIKI_VERSION="13.3" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 b4cb0c5db1ec216d24dbf3bcb11d467ec493c6a7674e35e75f68e9ecefae29dc +ENV XWIKI_DOWNLOAD_SHA256 fc832fe94defff52ac06f1f91408a6c349fc114c652e5413f529373ecdef13ad RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/13/postgres-tomcat/.env b/13/postgres-tomcat/.env index ee165b4..b8025e3 100644 --- a/13/postgres-tomcat/.env +++ b/13/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=13.2 +XWIKI_VERSION=13.3 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/13/postgres-tomcat/Dockerfile b/13/postgres-tomcat/Dockerfile index b7591e1..41bbf66 100644 --- a/13/postgres-tomcat/Dockerfile +++ b/13/postgres-tomcat/Dockerfile @@ -44,9 +44,9 @@ RUN apt-get update && \ # Install XWiki as the ROOT webapp context in Tomcat # Create the Tomcat temporary directory # Configure the XWiki permanent directory -ENV XWIKI_VERSION="13.2" +ENV XWIKI_VERSION="13.3" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 b4cb0c5db1ec216d24dbf3bcb11d467ec493c6a7674e35e75f68e9ecefae29dc +ENV XWIKI_DOWNLOAD_SHA256 fc832fe94defff52ac06f1f91408a6c349fc114c652e5413f529373ecdef13ad RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/build.gradle b/build.gradle index 460c07a..57ad101 100644 --- a/build.gradle +++ b/build.gradle @@ -35,8 +35,8 @@ def variants = ['mysql-tomcat', 'postgres-tomcat'] def tokens = [ '13': [ - xwikiVersion: '13.2', - xwikiSha256: 'b4cb0c5db1ec216d24dbf3bcb11d467ec493c6a7674e35e75f68e9ecefae29dc' + xwikiVersion: '13.3', + xwikiSha256: 'fc832fe94defff52ac06f1f91408a6c349fc114c652e5413f529373ecdef13ad' ], '12': [ xwikiVersion: '12.10.6', -- GitLab