Releases: derhansen/sf_yubikey
TYPO3 v13 compatibility
This release comes with support for TYPO3 v13. It contains only one breaking change, which is documented below.
[!!!][TASK] Remove devlog extension setting #63
The devlog setting has been removed without replacement. The extension still logs debug events, but a logfile must now be configured manually in additional.php
if required.
$GLOBALS['TYPO3_CONF_VARS']['LOG']['Derhansen']['SfYubikey']['writerConfiguration'] = [
\TYPO3\CMS\Core\Log\LogLevel::DEBUG => [
\TYPO3\CMS\Core\Log\Writer\FileWriter::class => [
'logFile' => 'typo3temp/var/log/sf_yubikey.log',
],
],
];
Maintenance release
Maintenance release
[TASK] Require TYPO3 12.4 minimum #59
Maintenance release
[TASK] Migrate legacy items usage for select fields in TCA #58
TYPO3 12 compatibility
This is the first version of the extension compatible with TYPO3 12. No new features or breaking changes have been added.
Bugfix release
4.0.2
Require TYPO3 11.5
[TASK] Require TYPO3 11.5 as minimum version
[TASK] Updated build config
TYPO3 11 compatible version
Breaking changes
[!!!][TASK] Remove setting "disableSslVerification"
The extension setting disableSslVerification
has been removed, since it is possible to disable SSL verification in TYPO3 HTTP client settings.
[!!!][TASK] Rename extension setting "yubikeyApiUrl" to "yubikeyApiUrls"
The extension setting yubikeyApiUrl
has been renamed to yubikeyApiUrl
. If you used a custom setting in previous version of the extension, ensure to migrate this setting manually
[!!!][TASK] Rename namespace from "DERHANSEN" to "Derhansen"
[!!!][TASK] Added TYPO3 11 compatibility
Other changes
[RELEASE] Release of version 4.0.0
[DOC] Added versions to README.md
[TASK] Fixed unit tests
[TASK] Include PHP 8.0 in builds
[TASK] Render checkboxToggle for be_user setting
[TASK] Update login template to TYPO3 v11 standard
[DOC] Updated documentation
[TASK] Set debug logger only if enabled
[TASK] Use checkboxToggle inb fe_users YubiKey setting
[TASK] Remove dependency to ext-curl
[TASK] Replace constant TYPO3_MODE with TYPO3
[TASK] Rename function to render user settings textarea
[TASK] Updated CI config
[TASK] Make check command use new YubikeyService
[TASK] Updated copyright headers of UserSettings.php
[TASK] Added new YubiKeyService which uses psr/http-client
[TAKS] Minor CGL changes
[TASK] Replaced copyright header in YubikeyLoginProvider.php
[TASK] Added Services.yaml
[TASK] Removed .styleci.yml
[TASK] Move extension icon
Minor update
Minor update, so YubiKey auth service is not used by TYPO3 sudo mode.