From 85e6e9b40365d2c2bca902f4697500343f16c749 Mon Sep 17 00:00:00 2001 From: Thomas Mortagne <thomas.mortagne@gmail.com> Date: Tue, 15 Dec 2020 16:48:01 +0100 Subject: [PATCH] XDOCKER-170: Upgrade stable version to 12.10.1 --- 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 0422b77..30f32dd 100644 --- a/12/mysql-tomcat/.env +++ b/12/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=12.10 +XWIKI_VERSION=12.10.1 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/12/mysql-tomcat/Dockerfile b/12/mysql-tomcat/Dockerfile index 0e743b8..f1a64ee 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" +ENV XWIKI_VERSION="12.10.1" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 d86ad5b58697ef35a968165798de539615bc27f9f3cc7644528128e51e62b4c8 +ENV XWIKI_DOWNLOAD_SHA256 34799ea52ef4d38e10ed64d54f36679aaf9c098feab1f8b614bc1fac857138ea 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 f6bc9a3..9620789 100644 --- a/12/postgres-tomcat/.env +++ b/12/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=12.10 +XWIKI_VERSION=12.10.1 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/12/postgres-tomcat/Dockerfile b/12/postgres-tomcat/Dockerfile index 585e74a..fab2268 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" +ENV XWIKI_VERSION="12.10.1" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 d86ad5b58697ef35a968165798de539615bc27f9f3cc7644528128e51e62b4c8 +ENV XWIKI_DOWNLOAD_SHA256 34799ea52ef4d38e10ed64d54f36679aaf9c098feab1f8b614bc1fac857138ea 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 02cad3d..070455e 100644 --- a/build.gradle +++ b/build.gradle @@ -39,8 +39,8 @@ def tokens = [ xwikiSha256: '472d7bb0d1ff8a7c3a5addf69e5c7b844edaa631d6df8e7b86d42c6b32cd3368' ], '12': [ - xwikiVersion: '12.10', - xwikiSha256: 'd86ad5b58697ef35a968165798de539615bc27f9f3cc7644528128e51e62b4c8' + xwikiVersion: '12.10.1', + xwikiSha256: '34799ea52ef4d38e10ed64d54f36679aaf9c098feab1f8b614bc1fac857138ea' ] ] -- GitLab