From be6a716da83415a667296f8b28706bd59adc9c8b Mon Sep 17 00:00:00 2001 From: Simon Urli <simon.urli@xwiki.com> Date: Fri, 22 Jan 2021 10:06:15 +0100 Subject: [PATCH] XDOCKER-174: Upgrade LTS version to 12.10.3 --- 12/mysql-tomcat/.env | 2 +- 12/mysql-tomcat/Dockerfile | 4 ++-- 12/postgres-tomcat/.env | 2 +- 12/postgres-tomcat/Dockerfile | 4 ++-- build.gradle | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/12/mysql-tomcat/.env b/12/mysql-tomcat/.env index 983244e..5506d4e 100644 --- a/12/mysql-tomcat/.env +++ b/12/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=12.10.2 +XWIKI_VERSION=12.10.3 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/12/mysql-tomcat/Dockerfile b/12/mysql-tomcat/Dockerfile index 55589f1..6d13535 100644 --- a/12/mysql-tomcat/Dockerfile +++ b/12/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="12.10.2" +ENV XWIKI_VERSION="12.10.3" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 148984aa1503a65d6648d2a375b141fd5ae5f7948c93355c8ff67ab265d0a7f7 +ENV XWIKI_DOWNLOAD_SHA256 402d97322fa9234a844b03630324bbd9a2152ff320e3c27c8ec3fc12a082223f RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/12/postgres-tomcat/.env b/12/postgres-tomcat/.env index cc4d179..522a61d 100644 --- a/12/postgres-tomcat/.env +++ b/12/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=12.10.2 +XWIKI_VERSION=12.10.3 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/12/postgres-tomcat/Dockerfile b/12/postgres-tomcat/Dockerfile index a30e3d9..91b81f1 100644 --- a/12/postgres-tomcat/Dockerfile +++ b/12/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="12.10.2" +ENV XWIKI_VERSION="12.10.3" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 148984aa1503a65d6648d2a375b141fd5ae5f7948c93355c8ff67ab265d0a7f7 +ENV XWIKI_DOWNLOAD_SHA256 402d97322fa9234a844b03630324bbd9a2152ff320e3c27c8ec3fc12a082223f 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 a741607..5203d06 100644 --- a/build.gradle +++ b/build.gradle @@ -35,8 +35,8 @@ def variants = ['mysql-tomcat', 'postgres-tomcat'] def tokens = [ '12': [ - xwikiVersion: '12.10.2', - xwikiSha256: '148984aa1503a65d6648d2a375b141fd5ae5f7948c93355c8ff67ab265d0a7f7' + xwikiVersion: '12.10.3', + xwikiSha256: '402d97322fa9234a844b03630324bbd9a2152ff320e3c27c8ec3fc12a082223f' ] ] -- GitLab