From e845df19fb821ee6d71c2857d3ce770b8251d677 Mon Sep 17 00:00:00 2001 From: Simon Urli <simon.urli@xwiki.com> Date: Mon, 29 Aug 2022 11:24:48 +0200 Subject: [PATCH] XDOCKER-246: Upgrade stable version to 14.7 --- 14/mariadb-tomcat/.env | 2 +- 14/mariadb-tomcat/Dockerfile | 4 ++-- 14/mysql-tomcat/.env | 2 +- 14/mysql-tomcat/Dockerfile | 4 ++-- 14/postgres-tomcat/.env | 2 +- 14/postgres-tomcat/Dockerfile | 4 ++-- build.gradle | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/14/mariadb-tomcat/.env b/14/mariadb-tomcat/.env index 01e53aa..7841686 100644 --- a/14/mariadb-tomcat/.env +++ b/14/mariadb-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=14.6 +XWIKI_VERSION=14.7 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/14/mariadb-tomcat/Dockerfile b/14/mariadb-tomcat/Dockerfile index f87de1f..ebe551b 100644 --- a/14/mariadb-tomcat/Dockerfile +++ b/14/mariadb-tomcat/Dockerfile @@ -48,9 +48,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="14.6" +ENV XWIKI_VERSION="14.7" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 9676cc9eeae3cf47bccae037bff67ce2468e3bec1d126f903b4d3fe61bff8723 +ENV XWIKI_DOWNLOAD_SHA256 3de00089af3af64929ccb39f5f36486d44dbb0e1181c42dc046f6db19c8a20f5 RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/14/mysql-tomcat/.env b/14/mysql-tomcat/.env index 01e53aa..7841686 100644 --- a/14/mysql-tomcat/.env +++ b/14/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=14.6 +XWIKI_VERSION=14.7 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/14/mysql-tomcat/Dockerfile b/14/mysql-tomcat/Dockerfile index 0cf89f1..10dd260 100644 --- a/14/mysql-tomcat/Dockerfile +++ b/14/mysql-tomcat/Dockerfile @@ -48,9 +48,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="14.6" +ENV XWIKI_VERSION="14.7" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 9676cc9eeae3cf47bccae037bff67ce2468e3bec1d126f903b4d3fe61bff8723 +ENV XWIKI_DOWNLOAD_SHA256 3de00089af3af64929ccb39f5f36486d44dbb0e1181c42dc046f6db19c8a20f5 RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/14/postgres-tomcat/.env b/14/postgres-tomcat/.env index e7357f2..e92bc23 100644 --- a/14/postgres-tomcat/.env +++ b/14/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=14.6 +XWIKI_VERSION=14.7 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/14/postgres-tomcat/Dockerfile b/14/postgres-tomcat/Dockerfile index 6462d4f..0d4d693 100644 --- a/14/postgres-tomcat/Dockerfile +++ b/14/postgres-tomcat/Dockerfile @@ -49,9 +49,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="14.6" +ENV XWIKI_VERSION="14.7" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 9676cc9eeae3cf47bccae037bff67ce2468e3bec1d126f903b4d3fe61bff8723 +ENV XWIKI_DOWNLOAD_SHA256 3de00089af3af64929ccb39f5f36486d44dbb0e1181c42dc046f6db19c8a20f5 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 931c54e..9eb5a04 100644 --- a/build.gradle +++ b/build.gradle @@ -43,8 +43,8 @@ def variants = ['mysql-tomcat', 'mariadb-tomcat', 'postgres-tomcat'] def tokens = [ '14': [ - xwikiVersion: '14.6', - xwikiSha256: '9676cc9eeae3cf47bccae037bff67ce2468e3bec1d126f903b4d3fe61bff8723', + xwikiVersion: '14.7', + xwikiSha256: '3de00089af3af64929ccb39f5f36486d44dbb0e1181c42dc046f6db19c8a20f5', mysqlJDBCVersion: '8.0.30', mysqlJDBCSha256: 'b5bf2f0987197c30adf74a9e419b89cda4c257da2d1142871f508416d5f2227a', mariadbJDBCVersion: '3.0.7', -- GitLab