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,39 @@
.. include:: /Includes.rst.txt
.. _deprecation-85960:
================================================================================================================
Deprecation: #85960 - AbstractUserAuthentication::compareUident and AbstractAuthenticationService->compareUident
================================================================================================================
See :issue:`85960`
Description
===========
Two methods related to old plain text or simple md5 related password checking have
been marked as deprecated after those have been unused or overridden for a while already:
* :php:`TYPO3\CMS\Core\Authentication\AbstractUserAuthentication->compareUident()`
* :php:`TYPO3\CMS\Core\Authentication\AbstractAuthenticationService->compareUident()`
Impact
======
Calling the above methods will trigger a PHP :php:`E_USER_DEPRECATED` error.
Affected Installations
======================
Instances using special authentication extensions might be
affected. The extension scanner should find usages.
Migration
=========
Do not use plain text or simple md5 based password comparison in authentication services.
.. index:: PHP-API, FullyScanned