[!!!][TASK] Configure main branch for 2.x.x development#19
Merged
Conversation
68cc2f5 to
1c40e3b
Compare
This change prepares the main branch for the `2.0.x` development, which includes: * Set `dev-main` branch alias to `2.0.x-dev`. * Update `COMPOSER_ROOT_VERSION` in `runTests.sh` to `2.0.x-dev`. * Align version matrix information in `README.md`. * Remove TYPO3 v12 support as composer dependency, `runTests.sh` and CI pipelines. * Remove PHP8.1 support from composer, `runTests.sh` and CI pipelines to align with lowest supported TYPO3 version. * Add PHP8.5 support from composer, `runTests.sh` and CI pipelines to align with lowest supported TYPO3 version. * Make `core tests 12` a dummy not executing anything but keep the file to allow possible badges for older branches to still work. > [!NOTE] > Removing and cleaning up TYPO3 v12 related code > will be done in follow up changes to document > them more properly. Used command(s): ```bash Build/Scripts/runTests.sh -s composer -- config \ "extra"."branch-alias"."dev-main" 2.0.x-dev \ && Build/Scripts/runTests.sh -s composer -- require \ --no-update \ 'php':'^8.2 || ^8.3 || ^8.4 || ^8.5' \ 'typo3/cms-backend':'^13.4' \ 'typo3/cms-core':'^13.4' \ 'typo3/cms-fluid':'^13.4' \ && Build/Scripts/runTests.sh -s composer -- require \ --dev --no-update \ 'typo3/cms-belog':'^13.4' \ 'typo3/cms-dashboard':'^13.4' \ 'typo3/cms-extbase':'^13.4' \ 'typo3/cms-extensionmanager':'^13.4' \ 'typo3/cms-filelist':'^13.4' \ 'typo3/cms-fluid-styled-content':'^13.4' \ 'typo3/cms-frontend':'^13.4' \ 'typo3/cms-info':'^13.4' \ 'typo3/cms-install':'^13.4' \ 'typo3/cms-lowlevel':'^13.4' \ 'typo3/cms-rte-ckeditor':'^13.4' \ 'typo3/cms-styleguide':'^13.4' \ 'typo3/cms-tstemplate':'^13.4' \ 'typo3/cms-workspaces':'^13.4' ```
1c40e3b to
b385ee9
Compare
calien666
reviewed
Feb 13, 2026
Member
calien666
left a comment
There was a problem hiding this comment.
Checked the code, looks okay. This is an after-merge Approval
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 prepares the main branch for the
2.0.xdevelopment, which includes:dev-mainbranch alias to2.0.x-dev.COMPOSER_ROOT_VERSIONinrunTests.shto
2.0.x-dev.README.md.runTests.shand CI pipelines.runTests.shand CI pipelines to align with lowest supported
TYPO3 version.
runTests.shand CI pipelines to align with lowest supported
TYPO3 version.
core tests 12a dummy not executing anythingbut keep the file to allow possible badges for older
branches to still work.
Note
Removing and cleaning up TYPO3 v12 related code
will be done in follow up changes to document
them more properly.
Used command(s):