From f6c69a5d6c525829713209cb2a0d8ce14b8a5038 Mon Sep 17 00:00:00 2001 From: Simon Urli <simon.urli@xwiki.com> Date: Fri, 15 May 2020 17:53:22 +0200 Subject: [PATCH] XDOCKER-139: Upgrade LTS version to 11.10.5 --- 11/mysql-tomcat/.env | 2 +- 11/mysql-tomcat/Dockerfile | 4 ++-- 11/postgres-tomcat/.env | 2 +- 11/postgres-tomcat/Dockerfile | 4 ++-- build.gradle | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/11/mysql-tomcat/.env b/11/mysql-tomcat/.env index 4ab7752..f51c38e 100644 --- a/11/mysql-tomcat/.env +++ b/11/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=11.10.4 +XWIKI_VERSION=11.10.5 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/11/mysql-tomcat/Dockerfile b/11/mysql-tomcat/Dockerfile index e6fcbfd..67c823a 100644 --- a/11/mysql-tomcat/Dockerfile +++ b/11/mysql-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=11.10.4 +ENV XWIKI_VERSION=11.10.5 ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 3cd14319c5161ab7cea5dab3c4d1b3f8b7f745c3a1d13d65583361755adb262a +ENV XWIKI_DOWNLOAD_SHA256 b08c8a9f0abbbf2bef5c61852688165dd4b2a9a7217da29047647e81c1ec3058 RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/11/postgres-tomcat/.env b/11/postgres-tomcat/.env index 776ed72..3d0add3 100644 --- a/11/postgres-tomcat/.env +++ b/11/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=11.10.4 +XWIKI_VERSION=11.10.5 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/11/postgres-tomcat/Dockerfile b/11/postgres-tomcat/Dockerfile index 5100739..7161cdb 100644 --- a/11/postgres-tomcat/Dockerfile +++ b/11/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=11.10.4 +ENV XWIKI_VERSION=11.10.5 ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 3cd14319c5161ab7cea5dab3c4d1b3f8b7f745c3a1d13d65583361755adb262a +ENV XWIKI_DOWNLOAD_SHA256 b08c8a9f0abbbf2bef5c61852688165dd4b2a9a7217da29047647e81c1ec3058 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 000e58e..d7c03cf 100644 --- a/build.gradle +++ b/build.gradle @@ -35,8 +35,8 @@ def variants = ['mysql-tomcat', 'postgres-tomcat'] def tokens = [ '11': [ - xwikiVersion: '11.10.4', - xwikiSha256: '3cd14319c5161ab7cea5dab3c4d1b3f8b7f745c3a1d13d65583361755adb262a' + xwikiVersion: '11.10.5', + xwikiSha256: 'b08c8a9f0abbbf2bef5c61852688165dd4b2a9a7217da29047647e81c1ec3058' ], '12': [ xwikiVersion: '12.3', -- GitLab