From 9add052235a3cfa9b41770ef2ff0072772ae8a7e Mon Sep 17 00:00:00 2001 From: Simon Urli <simon.urli@xwiki.com> Date: Thu, 21 Feb 2019 16:09:59 +0100 Subject: [PATCH] XDOCKER-99: Upgrade stable version to 10.11.3 --- 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 1f9c125..4dced7b 100644 --- a/10/mysql-tomcat/.env +++ b/10/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=10.11.2 +XWIKI_VERSION=10.11.3 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/10/mysql-tomcat/Dockerfile b/10/mysql-tomcat/Dockerfile index b5dd082..c8b4d4d 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.2 +ENV XWIKI_VERSION=10.11.3 ENV XWIKI_URL_PREFIX "http://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 d2a65cbd8f4aea8fb8feae7d5778343b8f6ca88003b4c11b67915fb856b432af +ENV XWIKI_DOWNLOAD_SHA256 5b544d8786b71cc51b150a3623efa17aea1dfafda429776caeb97d5a3d2c5343 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 4e44d78..930c6f7 100644 --- a/10/postgres-tomcat/.env +++ b/10/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=10.11.2 +XWIKI_VERSION=10.11.3 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/10/postgres-tomcat/Dockerfile b/10/postgres-tomcat/Dockerfile index 3a32022..1097fad 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.2 +ENV XWIKI_VERSION=10.11.3 ENV XWIKI_URL_PREFIX "http://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 d2a65cbd8f4aea8fb8feae7d5778343b8f6ca88003b4c11b67915fb856b432af +ENV XWIKI_DOWNLOAD_SHA256 5b544d8786b71cc51b150a3623efa17aea1dfafda429776caeb97d5a3d2c5343 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 e4abefb..fc27831 100644 --- a/build.gradle +++ b/build.gradle @@ -35,8 +35,8 @@ def variants = ['mysql-tomcat', 'postgres-tomcat'] def tokens = [ '10' : [ - xwikiVersion: '10.11.2', - xwikiSha256: 'd2a65cbd8f4aea8fb8feae7d5778343b8f6ca88003b4c11b67915fb856b432af' + xwikiVersion: '10.11.3', + xwikiSha256: '5b544d8786b71cc51b150a3623efa17aea1dfafda429776caeb97d5a3d2c5343' ], '11': [ xwikiVersion: '11.0.3', -- GitLab