From aad779028a6f54d9821560d01d6a03633e180a8b Mon Sep 17 00:00:00 2001 From: Marius Dumitru Florea <marius@xwiki.com> Date: Tue, 30 Mar 2021 16:50:05 +0300 Subject: [PATCH] XDOCKER-185: Upgrade stable version to 13.2 --- 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 8d0abbf..2a1d474 100644 --- a/13/mysql-tomcat/.env +++ b/13/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=13.1 +XWIKI_VERSION=13.2 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/13/mysql-tomcat/Dockerfile b/13/mysql-tomcat/Dockerfile index b08a8bc..f35c923 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.1" +ENV XWIKI_VERSION="13.2" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 885e41640d11cf8a3bb86333f0eb9c7836c138f346a632029402e388694dfa94 +ENV XWIKI_DOWNLOAD_SHA256 b4cb0c5db1ec216d24dbf3bcb11d467ec493c6a7674e35e75f68e9ecefae29dc 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 95b9a3a..ee165b4 100644 --- a/13/postgres-tomcat/.env +++ b/13/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=13.1 +XWIKI_VERSION=13.2 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/13/postgres-tomcat/Dockerfile b/13/postgres-tomcat/Dockerfile index e315029..b7591e1 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.1" +ENV XWIKI_VERSION="13.2" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 885e41640d11cf8a3bb86333f0eb9c7836c138f346a632029402e388694dfa94 +ENV XWIKI_DOWNLOAD_SHA256 b4cb0c5db1ec216d24dbf3bcb11d467ec493c6a7674e35e75f68e9ecefae29dc 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 8581dad..ff93bb5 100644 --- a/build.gradle +++ b/build.gradle @@ -35,8 +35,8 @@ def variants = ['mysql-tomcat', 'postgres-tomcat'] def tokens = [ '13': [ - xwikiVersion: '13.1', - xwikiSha256: '885e41640d11cf8a3bb86333f0eb9c7836c138f346a632029402e388694dfa94' + xwikiVersion: '13.2', + xwikiSha256: 'b4cb0c5db1ec216d24dbf3bcb11d467ec493c6a7674e35e75f68e9ecefae29dc' ], '12': [ xwikiVersion: '12.10.5', -- GitLab