From beed20b75ae4c952be757cec1502151d2d2a7939 Mon Sep 17 00:00:00 2001 From: Thomas Mortagne Date: Thu, 26 Dec 2024 15:50:58 +0100 Subject: [PATCH] XDOCKER-350: Upgrade LTS version to 16.10.2 --- 16/mariadb-tomcat/.env | 2 +- 16/mariadb-tomcat/Dockerfile | 4 ++-- 16/mysql-tomcat/.env | 2 +- 16/mysql-tomcat/Dockerfile | 4 ++-- 16/postgres-tomcat/.env | 2 +- 16/postgres-tomcat/Dockerfile | 4 ++-- build.gradle | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/16/mariadb-tomcat/.env b/16/mariadb-tomcat/.env index 9d99eaa..fda0dd9 100644 --- a/16/mariadb-tomcat/.env +++ b/16/mariadb-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=16.10.1 +XWIKI_VERSION=16.10.2 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/16/mariadb-tomcat/Dockerfile b/16/mariadb-tomcat/Dockerfile index 9969450..f655d49 100644 --- a/16/mariadb-tomcat/Dockerfile +++ b/16/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="16.10.1" +ENV XWIKI_VERSION="16.10.2" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 f9f365da951626711ec44aebd0276517d8fe1522b1c209c0d3af9c302071ee6e +ENV XWIKI_DOWNLOAD_SHA256 1a6287416db4243e3d40939e19509ca4ebe9e4f46f8fcf7204f223bcfff8b6e2 RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/16/mysql-tomcat/.env b/16/mysql-tomcat/.env index 9d99eaa..fda0dd9 100644 --- a/16/mysql-tomcat/.env +++ b/16/mysql-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=16.10.1 +XWIKI_VERSION=16.10.2 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/16/mysql-tomcat/Dockerfile b/16/mysql-tomcat/Dockerfile index 90d6904..9181848 100644 --- a/16/mysql-tomcat/Dockerfile +++ b/16/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="16.10.1" +ENV XWIKI_VERSION="16.10.2" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 f9f365da951626711ec44aebd0276517d8fe1522b1c209c0d3af9c302071ee6e +ENV XWIKI_DOWNLOAD_SHA256 1a6287416db4243e3d40939e19509ca4ebe9e4f46f8fcf7204f223bcfff8b6e2 RUN rm -rf /usr/local/tomcat/webapps/* && \ mkdir -p /usr/local/tomcat/temp && \ mkdir -p /usr/local/xwiki/data && \ diff --git a/16/postgres-tomcat/.env b/16/postgres-tomcat/.env index 5b2f023..04708fd 100644 --- a/16/postgres-tomcat/.env +++ b/16/postgres-tomcat/.env @@ -1,5 +1,5 @@ # Default environment values -XWIKI_VERSION=16.10.1 +XWIKI_VERSION=16.10.2 DB_USER=xwiki DB_PASSWORD=xwiki DB_DATABASE=xwiki diff --git a/16/postgres-tomcat/Dockerfile b/16/postgres-tomcat/Dockerfile index f4912f7..06c0e0c 100644 --- a/16/postgres-tomcat/Dockerfile +++ b/16/postgres-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="16.10.1" +ENV XWIKI_VERSION="16.10.2" ENV XWIKI_URL_PREFIX "https://maven.xwiki.org/releases/org/xwiki/platform/xwiki-platform-distribution-war/${XWIKI_VERSION}" -ENV XWIKI_DOWNLOAD_SHA256 f9f365da951626711ec44aebd0276517d8fe1522b1c209c0d3af9c302071ee6e +ENV XWIKI_DOWNLOAD_SHA256 1a6287416db4243e3d40939e19509ca4ebe9e4f46f8fcf7204f223bcfff8b6e2 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 4214898..03f4665 100644 --- a/build.gradle +++ b/build.gradle @@ -47,8 +47,8 @@ def variants = ['mysql-tomcat', 'mariadb-tomcat', 'postgres-tomcat'] def tokens = [ '16': [ - xwikiVersion: '16.10.1', - xwikiSha256: 'f9f365da951626711ec44aebd0276517d8fe1522b1c209c0d3af9c302071ee6e', + xwikiVersion: '16.10.2', + xwikiSha256: '1a6287416db4243e3d40939e19509ca4ebe9e4f46f8fcf7204f223bcfff8b6e2', mysqlJDBCVersion: '9.1.0', mysqlJDBCSha256: '8776e2ebc46072c9a47ea59d98298c4273bd9f16a7b26b5dfa4744535aa26c62', mariadbJDBCVersion: '3.5.1',