TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,47 @@
.. include:: /Includes.rst.txt
.. _breaking-102583-1701510037:
=====================================================
Breaking: #102583 - Removed context aspect typoscript
=====================================================
See :issue:`102583`
Description
===========
The :php:`\TYPO3\CMS\Core\Context\Context` aspect :php:`typoscript` has been
removed without direct substitution. This aspect was implemented by now removed
class :php:`\TYPO3\CMS\Core\Context\TypoScriptAspect`, handling the
EXT:adminpanel-related property :php:`forcedTemplateParsing`.
Impact
======
The following calls will throw PHP exceptions:
.. code-block:: php
/** @var \TYPO3\CMS\Core\Context\Context $context */
$context->getPropertyFromAspect('typoscript', 'forcedTemplateParsing');
$context->getAspect('typoscript');
// Returns false
$context->hasAspect('typoscript');
Affected installations
======================
Extensions typically do not use this context aspect since it only carried an
EXT:adminpanel-related information.
Migration
=========
No direct migration possible. There should be little reason for extensions to
work with this EXT:adminpanel related detail.
.. index:: Frontend, PHP-API, PartiallyScanned, ext:core