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

[BUGFIX] Raise typo3/cms-* to 11.5.4 to be stable with minimum deps (#643)

This change raises the minimum versions for TYPO3 core packages up
to 11.5.4 as minimum version, which contains needed fixes directly
or through raised core package dependencies to avoid corresponding
php deprecation and return type hint issues with symfony/routing
during composer minimum tests with PHP8.1. Beside this, we need at
least this version as core ships with QueryBuilder forward combat
methods `executeQuery()` and `executeStatement()` only since this
version.

See: https://review.typo3.org/c/Packages/TYPO3.CMS/+/72430

Fixes #635
This commit is contained in:
Oliver Klee 2022-10-16 17:46:20 +02:00 committed by GitHub
parent 98fc40b38d
commit 122f61fe13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 9 deletions

View file

@ -25,6 +25,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- Drop support for PHP 7.2 and 7.3 (#581)
### Fixed
- Require TYPO3 >= 11.5.4 (#643)
- Stop relying on transitive dependencies for `psr/http-message` (#613)
## 2.0.1

View file

@ -29,10 +29,10 @@
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0",
"psr/http-message": "^1.0.1",
"typo3/cms-core": "^11.5.2",
"typo3/cms-extbase": "^11.5.2",
"typo3/cms-fluid": "^11.5.2",
"typo3/cms-frontend": "^11.5.2"
"typo3/cms-core": "^11.5.4",
"typo3/cms-extbase": "^11.5.4",
"typo3/cms-fluid": "^11.5.4",
"typo3/cms-frontend": "^11.5.4"
},
"require-dev": {
"doctrine/dbal": "^2.13.8 || ^3.3.7",
@ -53,7 +53,7 @@
"seld/jsonlint": "^1.9.0",
"squizlabs/php_codesniffer": "^3.7.1",
"symfony/yaml": "^5.4 || ^6.1",
"typo3/cms-fluid-styled-content": "^11.5.2",
"typo3/cms-fluid-styled-content": "^11.5.4",
"typo3/coding-standards": "^0.5.5",
"typo3/testing-framework": "^7.0@dev"
},

View file

@ -8,10 +8,10 @@ $EM_CONF[$_EXTKEY] = [
'constraints' => [
'depends' => [
'php' => '7.4.0-8.1.99',
'typo3' => '11.5.2-11.5.99',
'extbase' => '11.5.2-11.5.99',
'fluid' => '11.5.2-11.5.99',
'frontend' => '11.5.2-11.5.99',
'typo3' => '11.5.4-11.5.99',
'extbase' => '11.5.4-11.5.99',
'fluid' => '11.5.4-11.5.99',
'frontend' => '11.5.4-11.5.99',
],
],
'state' => 'stable',