From 1044c672273d10c174d64be5919a9e94101c7ec3 Mon Sep 17 00:00:00 2001 From: Simon Urli <simon.urli@xwiki.com> Date: Wed, 13 Nov 2019 13:52:25 +0100 Subject: [PATCH] XDOCKER-122: Upgrade LTS version to 10.11.10 --- 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 8874b59..81fcb6f 100644 --- a/10/mysql-tomcat/.env +++ b/10/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=10.11.9 +XWIKI_VERSION=10.11.10 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/10/mysql-tomcat/Dockerfile b/10/mysql-tomcat/Dockerfile index 9feee5d..172e1c8 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.9 +ENV XWIKI_VERSION=10.11.10 ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 299fe60d5b32ee1a363ba48ff2346e78eea5f713a0174c20fe9d7531be426a58 +ENV XWIKI_DOWNLOAD_SHA256 e1feedd24f0a27ba4e36464913a2fcb43a60f9310283a8a6be017a1979618bb7 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 4e9bd74..1255e5b 100644 --- a/10/postgres-tomcat/.env +++ b/10/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=10.11.9 +XWIKI_VERSION=10.11.10 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/10/postgres-tomcat/Dockerfile b/10/postgres-tomcat/Dockerfile index 7125c66..c526c0e 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.9 +ENV XWIKI_VERSION=10.11.10 ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 299fe60d5b32ee1a363ba48ff2346e78eea5f713a0174c20fe9d7531be426a58 +ENV XWIKI_DOWNLOAD_SHA256 e1feedd24f0a27ba4e36464913a2fcb43a60f9310283a8a6be017a1979618bb7 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 dcb117c..170abe9 100644 --- a/build.gradle +++ b/build.gradle @@ -35,8 +35,8 @@ def variants = ['mysql-tomcat', 'postgres-tomcat'] def tokens = [ '10' : [ - xwikiVersion: '10.11.9', - xwikiSha256: '299fe60d5b32ee1a363ba48ff2346e78eea5f713a0174c20fe9d7531be426a58' + xwikiVersion: '10.11.10', + xwikiSha256: 'e1feedd24f0a27ba4e36464913a2fcb43a60f9310283a8a6be017a1979618bb7' ], '11': [ xwikiVersion: '11.9', -- GitLab