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-77379:
===============================================
Breaking: #77379 - Doctrine: Typo3DbQueryParser
===============================================
See :issue:`77379`
Description
===========
While migrating the database endpoint for the persistence functionality of Extbase to Doctrine DBAL, the `Typo3DbQueryParser` class
has been completely rewritten to work on a `QueryBuilder` object instead of plain arrays and strings. The PHP method
:php:`Typo3DbQueryParser->parseQuery()` has been removed, instead the new equivalent
:php:`Typo3DbQueryParser->convertQueryToDoctrineQueryBuilder()` has been introduced.
Additionally, the PHP method :php:`Typo3DBBackend->injectQueryParser()` has been removed, as the `Typo3DbQueryParser` class is not a
singleton instance anymore but always rebuilt when needed.
Impact
======
Calling one of the methods above will result in a fatal PHP error.
Affected Installations
======================
TYPO3 instances with custom Extbase database backend and parsing functionality.
Migration
=========
Switch to Doctrine DBAL and :php:`Typo3DbQueryParser->convertQueryToDoctrineQueryBuilder()` which results in the same behaviour.
.. index:: PHP-API, Database