mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:56:13 +02:00

[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
This commit is contained in:
Stefan Bürk 2024-05-07 11:23:48 +02:00 committed by GitHub
parent f8ff931431
commit 760d009dad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View file

@ -72,7 +72,7 @@ handleDbmsOptions() {
exit 1 exit 1
fi fi
[ -z "${DBMS_VERSION}" ] && DBMS_VERSION="10" [ -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 "Invalid combination -d ${DBMS} -i ${DBMS_VERSION}" >&2
echo >&2 echo >&2
echo "Use \".Build/Scripts/runTests.sh -h\" to display help and valid options" >&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) - 8.0 maintained until 2026-04 (default)
With "-d postgres": With "-d postgres":
- 10 unmaintained since 2022-11-10 (default) - 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 - 12 maintained until 2024-11-14
- 13 maintained until 2025-11-13 - 13 maintained until 2025-11-13
- 14 maintained until 2026-11-12 - 14 maintained until 2026-11-12
- 15 maintained until 2027-11-11 - 15 maintained until 2027-11-11
- 16 maintained until 2028-11-09
-t <11.5|12.4> -t <11.5|12.4>
Only with -s composerInstall|composerInstallMin|composerInstallMax Only with -s composerInstall|composerInstallMin|composerInstallMax

View file

@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
## x.y.z ## x.y.z
### Added ### Added
- Add support for PostgreSQL 16 (#1271)
### Changed ### Changed
- !!! Require a storage PID for the tea list (#1223) - !!! Require a storage PID for the tea list (#1223)