From 29265a687809c6c7ab8a6d350eabae8c782ad5c8 Mon Sep 17 00:00:00 2001 From: Guillaume Delhumeau <guillaume.delhumeau@xwiki.com> Date: Mon, 25 Jun 2018 11:44:59 +0200 Subject: [PATCH] XDOCKER-63: Upgrade LTS version to 9.11.6. --- 9/mysql-tomcat/.env | 2 +- 9/mysql-tomcat/Dockerfile | 4 ++-- 9/postgres-tomcat/.env | 2 +- 9/postgres-tomcat/Dockerfile | 4 ++-- build.gradle | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/9/mysql-tomcat/.env b/9/mysql-tomcat/.env index a7ba4b7..4b434ca 100644 --- a/9/mysql-tomcat/.env +++ b/9/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=9.11.5 +XWIKI_VERSION=9.11.6 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/9/mysql-tomcat/Dockerfile b/9/mysql-tomcat/Dockerfile index 4cb9188..de4012f 100644 --- a/9/mysql-tomcat/Dockerfile +++ b/9/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=9.11.5 +ENV XWIKI_VERSION=9.11.6 ENV XWIKI_URL_PREFIX "http://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 177fd372acf0006e3899fb6d116b885f01fc0fb71f7426d139435f6d07872192 +ENV XWIKI_DOWNLOAD_SHA256 56e61b53d75bdac6dfb4460033746cbbadb8af4be5c6789921a7221c55e031a1 RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/9/postgres-tomcat/.env b/9/postgres-tomcat/.env index 0d50608..1467923 100644 --- a/9/postgres-tomcat/.env +++ b/9/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=9.11.5 +XWIKI_VERSION=9.11.6 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/9/postgres-tomcat/Dockerfile b/9/postgres-tomcat/Dockerfile index 9b9a7a9..c7e85f2 100644 --- a/9/postgres-tomcat/Dockerfile +++ b/9/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=9.11.5 +ENV XWIKI_VERSION=9.11.6 ENV XWIKI_URL_PREFIX "http://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 177fd372acf0006e3899fb6d116b885f01fc0fb71f7426d139435f6d07872192 +ENV XWIKI_DOWNLOAD_SHA256 56e61b53d75bdac6dfb4460033746cbbadb8af4be5c6789921a7221c55e031a1 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 702d212..573ea3f 100644 --- a/build.gradle +++ b/build.gradle @@ -35,8 +35,8 @@ def variants = ['mysql-tomcat', 'postgres-tomcat'] def tokens = [ '9' : [ - xwikiVersion: '9.11.5', - xwikiSha256: '177fd372acf0006e3899fb6d116b885f01fc0fb71f7426d139435f6d07872192' + xwikiVersion: '9.11.6', + xwikiSha256: '56e61b53d75bdac6dfb4460033746cbbadb8af4be5c6789921a7221c55e031a1' ], '10': [ xwikiVersion: '10.5', -- GitLab