Skip to content

v0.10.1

Choose a tag to compare

@github-actions github-actions released this 21 Jul 11:18
v0.10.1
ae9e481

What changed

Hotfix for a backend-breaking logging misconfiguration: the passkey security audit log was written to the relative path typo3temp/var/log/passkey_auth.log, which resolves below the public web root. In containerized deployments that file/directory is often not writable by the PHP user (or gets created root-owned by CLI runs), and TYPO3's FileWriter then throws #1321804422 on every request that logs a warning — on typo3-demo this took the whole backend down (HTTP 500 on /typo3/) right after the 0.10.0 deploy. It was also a security-audit log in a web-reachable location.

The log now goes to Environment::getVarPath() . '/log/passkey_auth.log' — the canonical writable var path in composer mode (#82).

Also catches Documentation/guides.xml up to the real version (was left at 0.9.4 by the v0.10.0 release).

Full Changelog: v0.10.0...v0.10.1