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,33 @@
.. include:: /Includes.rst.txt
.. _breaking-67402:
==========================================================
Breaking: #67402 - Extbase AbstractDomainObject __wakeup()
==========================================================
See :issue:`67402`
Description
===========
Method `__wakeup()` in classes extending `TYPO3\CMS\Extbase\DomainObject\AbstractDomainObject`
is no longer called if objects are created when fetched from persistence.
Affected Installations
======================
An instance is affected if own domain objects extending AbstractDomainObject
implement own `__wakeup()` methods. Those methods are no longer called.
Migration
=========
Move initialization code from `__wakeup()` to `initializeObject()`. As a bonus, dependencies have been injection at
this point already.
.. index:: PHP-API, ext:extbase