Feature #54521
closedmake beta-testing simpler
0%
Description
with version 6.2beta3 it is not possible to install versions that should be compatible
with 6.2. - like core extensions : tstemplate, filemetadata, aboutmodules, ...
the extension manager says "Your TYPO3 version is lower than necessary. You need at least TYPO3 version 6.2.0"
other extensions are only compatible to 6.1.999 which makes sense since 6.2 is not released yet.
but there should be a possibility for developers and testers to circumvent the dependency management
without changing code.
suggestion: add a switch into the extension manager to interpret betas as .0 versions (here 6.2beta3 as 6.2.0)
Updated by Alexander Opitz almost 11 years ago
- Category set to Extension Manager
Updated by Peter Niederlag almost 11 years ago
IMHO best/simplest solution would be to set TYPO3_version properly.
diff --git a/typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php b/typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php index ea6b0c4..a702d1d 100644 --- a/typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php +++ b/typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php @@ -75,7 +75,7 @@ class SystemEnvironmentBuilder { */ static protected function defineBaseConstants() { // This version, branch and copyright - define('TYPO3_version', '6.2-dev'); + define('TYPO3_version', '6.2.0-dev'); define('TYPO3_branch', '6.2');
Does anybody have a pointer to the release scripts that probably fiddle on this?
Updated by Gerrit Code Review almost 11 years ago
- Status changed from New to Under Review
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/27509
Updated by Gerrit Code Review almost 11 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/27509
Updated by Markus Klein almost 11 years ago
- Status changed from Under Review to Closed
Closing as duplicate of #23902