mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-22 08:16:13 +01: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:
parent
f8ff931431
commit
760d009dad
2 changed files with 4 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue