From 1642b75fa5a3f51306e7a385d07f7d28fd822c18 Mon Sep 17 00:00:00 2001 From: Simon Urli <simon.urli@xwiki.com> Date: Fri, 19 Jul 2019 10:18:16 +0200 Subject: [PATCH] XDOCKER-113: Upgrade LTS version to 10.11.9 --- 10/mysql-tomcat/.env | 2 +- 10/mysql-tomcat/Dockerfile | 4 ++-- 10/postgres-tomcat/.env | 2 +- 10/postgres-tomcat/Dockerfile | 4 ++-- build.gradle | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/10/mysql-tomcat/.env b/10/mysql-tomcat/.env index 4572701..8874b59 100644 --- a/10/mysql-tomcat/.env +++ b/10/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=10.11.8 +XWIKI_VERSION=10.11.9 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/10/mysql-tomcat/Dockerfile b/10/mysql-tomcat/Dockerfile index 82c4f0b..9feee5d 100644 --- a/10/mysql-tomcat/Dockerfile +++ b/10/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=10.11.8 +ENV XWIKI_VERSION=10.11.9 ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 d3ac801e156966b1e5729a5251aa13662262460edcbf903ec8b5e5d98563bf7e +ENV XWIKI_DOWNLOAD_SHA256 299fe60d5b32ee1a363ba48ff2346e78eea5f713a0174c20fe9d7531be426a58 RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/10/postgres-tomcat/.env b/10/postgres-tomcat/.env index e449a4f..4e9bd74 100644 --- a/10/postgres-tomcat/.env +++ b/10/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=10.11.8 +XWIKI_VERSION=10.11.9 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/10/postgres-tomcat/Dockerfile b/10/postgres-tomcat/Dockerfile index bdc2567..7125c66 100644 --- a/10/postgres-tomcat/Dockerfile +++ b/10/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=10.11.8 +ENV XWIKI_VERSION=10.11.9 ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 d3ac801e156966b1e5729a5251aa13662262460edcbf903ec8b5e5d98563bf7e +ENV XWIKI_DOWNLOAD_SHA256 299fe60d5b32ee1a363ba48ff2346e78eea5f713a0174c20fe9d7531be426a58 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 86a2b34..e53a843 100644 --- a/build.gradle +++ b/build.gradle @@ -35,8 +35,8 @@ def variants = ['mysql-tomcat', 'postgres-tomcat'] def tokens = [ '10' : [ - xwikiVersion: '10.11.8', - xwikiSha256: 'd3ac801e156966b1e5729a5251aa13662262460edcbf903ec8b5e5d98563bf7e' + xwikiVersion: '10.11.9', + xwikiSha256: '299fe60d5b32ee1a363ba48ff2346e78eea5f713a0174c20fe9d7531be426a58' ], '11': [ xwikiVersion: '11.5', -- GitLab