mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 17:36:12 +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
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

View file

@ -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)