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,40 @@
.. include:: /Includes.rst.txt
.. _breaking-72370:
=======================================================
Breaking: #72370 - Removed deprecated code from extbase
=======================================================
See :issue:`72370`
Description
===========
Remove deprecated code from extbase
The ChangeLog file has been removed.
`TYPO3\CMS\Extbase\DomainObject\AbstractDomainObject::__wakeup()` has been removed.
`TYPO3\CMS\Extbase\Utility\ExtensionUtility::configureModule()` has been removed.
Impact
======
Using the methods above directly in any third party extension will result in a fatal error.
Affected Installations
======================
Instances which use calls to the methods above.
Migration
=========
Use the according method in `\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::configureModule()` instead of the removed one from ext:extbase.
Objects are instantiated differently calling `parent::__wakeup()` is no longer necessary. No migration needed.
.. index:: PHP-API, ext:extbase