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,48 @@
.. include:: /Includes.rst.txt
.. _breaking-68186:
===========================================================
Breaking: #68186 - Adjusted and removed methods in eID area
===========================================================
See :issue:`68186`
Description
===========
eID scripts now use Request and Response objects to retrieve and output data.
Due to adjustments of the Core eID scripts a few methods have been adjusted.
`ExtDirectEidController::routeAction` is now protected and has a changed signature.
The following methods have been removed:
* `ExtDirectEidController::actionIsAllowed()`
* `ExtDirectEidController::render()`
* `EidUtility::isEidRequest()`
* `EidUtility::getEidScriptPath()`
Additionally calling an non-existent eID key will result in a fatal error.
Impact
======
All third party code using those methods will cause a fatal PHP error.
Affected Installations
======================
All installations using third party code accessing one of the adjusted (or removed) methods.
Migration
=========
No replacement for the mentioned methods is provided. Consider migrating your eID scripts to the new PSR-7 compliant model.
.. index:: PHP-API, Frontend, Backend