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-68890:
=======================================================================================
Breaking: #68890 - Remove dual-use of auth_timeout_field in AbstractUserAuthentication
=======================================================================================
See :issue:`68890`
Description
===========
In `AbstractUserAuthentication` class the property `auth_timeout_field` could
previously either contain the name of a field or a timeout-value in seconds. To
specify a field name the property can be used as before.
To specify a timeout-value, a new property called `sessionTimeout` is introduced
that can be set to an integer >= 0.
Impact
======
If some extension reads the value, the default is changed from an integer (0) to an empty string.
Migration
=========
Extensions modifying `auth_timeout_field` to a numeric value should switch to using `sessionTimeout`.
.. index:: PHP-API