Merged
Conversation
This change allows the usage with TYPO3 v14
and marks the starting point for developing
the support for that version.
GitHub action pipelines are also put in place
next to making `Build/Scripts/runTests.sh` to
allow and handle TYPO3 v14 to execute all of
the required toolchain.
Minor adjustment on unit and functional tests
are done along the way to improve the cross
TYPO3 version support, ensuring that expected
version is really executed at least for unit
and functional tests.
We need to allow minim-stability dev for now
due to the ongoing development of TYPO3 CMS.
For TYPO3 v14 excludes for TYPO3 v13 related
classes has been added to the configuration
file. All of them except one are not required
and used with TYPO3 v14. The excamption is
the `InjectVariablesViewHelper` requiring to
be adopted for FLUID changes and excluded
meanwhile and needs to be fixed or deprecated
in case usage is still required, which needs
to be checked.
Used command(s):
```bash
Build/Scripts/runTests.sh -s composer -- \
config minimum-stability dev \
&& Build/Scripts/runTests.sh -s composer -- \
config prefer-stable true \
&& Build/Scripts/runTests.sh -s composer -- \
remove \
'ext-pdo' \
'ext-curl' \
&& Build/Scripts/runTests.sh -s composer -- \
require --dev --no-update \
'typo3/cms-belog':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-dashboard':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-extbase':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-extensionmanager':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-filelist':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-fluid-styled-content':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-frontend':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-info':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-install':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-lowlevel':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-rte-ckeditor':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-styleguide':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-tstemplate':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-workspaces':'^13.4.10 || 14.2.*@dev' \
&& Build/Scripts/runTests.sh -s composer -- \
require \
'typo3/cms-backend':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-core':'^13.4.10 || 14.2.*@dev' \
'typo3/cms-fluid':'^13.4.10 || 14.2.*@dev'
```
calien666
reviewed
Mar 13, 2026
Tests/Functional/Core13/Controller/Backend/LocalizationControllerTest.php
Show resolved
Hide resolved
calien666
approved these changes
Mar 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This change allows the usage with TYPO3 v14
and marks the starting point for developing
the support for that version.
GitHub action pipelines are also put in place
next to making
Build/Scripts/runTests.shtoallow and handle TYPO3 v14 to execute all of
the required toolchain.
Minor adjustment on unit and functional tests
are done along the way to improve the cross
TYPO3 version support, ensuring that expected
version is really executed at least for unit
and functional tests.
We need to allow minim-stability dev for now
due to the ongoing development of TYPO3 CMS.
For TYPO3 v14 excludes for TYPO3 v13 related
classes has been added to the configuration
file. All of them except one are not required
and used with TYPO3 v14. The excamption is
the
InjectVariablesViewHelperrequiring tobe adopted for FLUID changes and excluded
meanwhile and needs to be fixed or deprecated
in case usage is still required, which needs
to be checked.
Used command(s):