v4.28.1
4.28.1 (2021-04-16)
Important Note
This change removed or renamed several configuration options. See the configuration changes section below.
Bug Fixes
- removed deprecated smtp/ldap options (#1912) (cc4f47f)
- suites: ensure k8s suite utilises the registry cache (#1921) (db55325)
- validator: misleading warning for empty acl domains (#1898) (1e30b00)
Docker Container
docker pull authelia/authelia:4.28.1
docker pull ghcr.io/authelia/authelia:4.28.1
Configuration Changes
LDAP
Specific note about the users/groups filter. The part that changed are the placeholders, nothing else.
Old
authentication_backend:
ldap:
minimum_tls_version: "TLS1.2"
skip_verify: true
users_filter: (&({username_attribute}={0})(objectClass=person))
groups_filter: (&(|(member={0})(member={1}))(objectclass=groupOfNames))
New
authentication_backend:
ldap:
tls:
minimum_version: "TLS1.2"
skip_verify: true
users_filter: (&({username_attribute}={input})(objectClass=person))
groups_filter: (&(|(member={input})(member={username}))(objectclass=groupOfNames))
SMTP
Specific note about trusted_cert
. The option was completely removed and is replaced by a global option called certificates_directory which is instead a directory of certificates Authelia should trust.
Old
notifier:
smtp:
trusted_cert: /certificates/mycert.pem
disable_verify_cert: true
New
certificates_directory: /certificates
notifier:
smtp:
tls:
skip_verify: true