Release 2.61 (#5990)

This commit is contained in:
Kevin Papst
2026-06-17 07:27:57 +02:00
committed by GitHub
parent 7f716fa2d6
commit f8bc853d2f
14 changed files with 310 additions and 157 deletions

View File

@@ -17,11 +17,11 @@ final class Constants
/**
* The current release version
*/
public const VERSION = '2.60.0';
public const VERSION = '2.61.0';
/**
* The current release: major * 10000 + minor * 100 + patch
*/
public const VERSION_ID = 26000;
public const VERSION_ID = 26100;
/**
* The software name
*/

View File

@@ -23,6 +23,7 @@ final class Configuration
private array $options = [];
private bool $enabled = true;
private bool $required = true;
private ?string $formTheme = null;
/**
* @var Constraint[]
*/
@@ -149,4 +150,14 @@ final class Configuration
return $this;
}
public function getFormTheme(): ?string
{
return $this->formTheme;
}
public function setFormTheme(string $formTheme): void
{
$this->formTheme = $formTheme;
}
}

View File

@@ -16,7 +16,7 @@ final class SamlAuthenticationSuccessHandler extends DefaultAuthenticationSucces
{
protected $defaultOptions = [
'always_use_default_target_path' => false,
'default_target_path' => '/',
'default_target_path' => 'homepage',
'login_path' => 'saml_login',
'target_path_parameter' => '_target_path',
'use_referer' => false,