From 760d009dad14d0feacd30d77ee3507f35ba1f7a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BCrk?= Date: Tue, 7 May 2024 11:23:48 +0200 Subject: [PATCH] [TASK] Add support for Postgres 16 to `runTests.sh` (#1271) This change adds support for Postres 16 to the `Build/Scripts/runTests.sh` execution wrapper. [1] https://review.typo3.org/c/Packages/TYPO3.CMS/+/82761 Resolves: #1147 Related: #94 --- Build/Scripts/runTests.sh | 5 +++-- CHANGELOG.md | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Build/Scripts/runTests.sh b/Build/Scripts/runTests.sh index 0a6164f..0ab78f2 100755 --- a/Build/Scripts/runTests.sh +++ b/Build/Scripts/runTests.sh @@ -72,7 +72,7 @@ handleDbmsOptions() { exit 1 fi [ -z "${DBMS_VERSION}" ] && DBMS_VERSION="10" - if ! [[ ${DBMS_VERSION} =~ ^(10|11|12|13|14|15)$ ]]; then + if ! [[ ${DBMS_VERSION} =~ ^(10|11|12|13|14|15|16)$ ]]; then echo "Invalid combination -d ${DBMS} -i ${DBMS_VERSION}" >&2 echo >&2 echo "Use \".Build/Scripts/runTests.sh -h\" to display help and valid options" >&2 @@ -201,11 +201,12 @@ Options: - 8.0 maintained until 2026-04 (default) With "-d postgres": - 10 unmaintained since 2022-11-10 (default) - - 11 maintained until 2023-11-09 + - 11 unmaintained since 2023-11-09 - 12 maintained until 2024-11-14 - 13 maintained until 2025-11-13 - 14 maintained until 2026-11-12 - 15 maintained until 2027-11-11 + - 16 maintained until 2028-11-09 -t <11.5|12.4> Only with -s composerInstall|composerInstallMin|composerInstallMax diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fd90be..319ffb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). ## x.y.z ### Added +- Add support for PostgreSQL 16 (#1271) ### Changed - !!! Require a storage PID for the tea list (#1223)