From 5384037f6f8cee294b1d40e3affaaefcb0f218dc Mon Sep 17 00:00:00 2001 From: Eduard Moraru <Enygma2002@gmail.com> Date: Mon, 24 May 2021 20:30:08 +0300 Subject: [PATCH] XDOCKER-190: Upgrade stable version to 13.4 --- 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 f9d917b..843a6d7 100644 --- a/13/mysql-tomcat/.env +++ b/13/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=13.3 +XWIKI_VERSION=13.4 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/13/mysql-tomcat/Dockerfile b/13/mysql-tomcat/Dockerfile index 62cb90a..a79c73b 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.3" +ENV XWIKI_VERSION="13.4" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 fc832fe94defff52ac06f1f91408a6c349fc114c652e5413f529373ecdef13ad +ENV XWIKI_DOWNLOAD_SHA256 b9fcf40879203b6237fa1e88a45cec8cd681e5b1bf11949f03daa19b762d5765 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 b8025e3..89d4d89 100644 --- a/13/postgres-tomcat/.env +++ b/13/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=13.3 +XWIKI_VERSION=13.4 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/13/postgres-tomcat/Dockerfile b/13/postgres-tomcat/Dockerfile index 41bbf66..8b4e548 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.3" +ENV XWIKI_VERSION="13.4" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 fc832fe94defff52ac06f1f91408a6c349fc114c652e5413f529373ecdef13ad +ENV XWIKI_DOWNLOAD_SHA256 b9fcf40879203b6237fa1e88a45cec8cd681e5b1bf11949f03daa19b762d5765 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 6ef527f..60cc426 100644 --- a/build.gradle +++ b/build.gradle @@ -35,8 +35,8 @@ def variants = ['mysql-tomcat', 'postgres-tomcat'] def tokens = [ '13': [ - xwikiVersion: '13.3', - xwikiSha256: 'fc832fe94defff52ac06f1f91408a6c349fc114c652e5413f529373ecdef13ad' + xwikiVersion: '13.4', + xwikiSha256: 'b9fcf40879203b6237fa1e88a45cec8cd681e5b1bf11949f03daa19b762d5765' ], '12': [ xwikiVersion: '12.10.7', -- GitLab