Actions
Task #92196
closedDo not render all changelogs for all versions
Start date:
2020-09-04
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
The changelogs are used in the extension scanner etc. so older changelogs must also exist in newer versions.
That does not mean they have to be rendered for every version.
The current practice of rendering all available changelogs has 2 disadvantages:
- the rendering takes very long (currently causing it to timeout on the docs server). This makes it more difficult to test changes because you have to wait for the rendering to finish.
- changelogs are being rendered multiple times which is not really necessary and results in duplicated content:
- `https://docs.typo3.org/c/typo3/cms-core/master/en-us/Changelog/7.6.x/Breaking-72931-SearchFormControllerpi_list_browseresultsHasBeenRenamed.html`
- `https://docs.typo3.org/c/typo3/cms-core/master/en-us/Changelog/8.1/Breaking-72931-SearchFormControllerpi_list_browseresultsHasBeenRenamed.html`
Excluding specific .rst files from rendering can be handled by specifying a jobfile, see https://github.com/t3docs/docker-render-documentation/issues/86
Actions