diff --git a/CHANGELOG.md b/CHANGELOG.md index 4af7542..43c3f5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.1.0.0039 — 2026-07-11 + +### Changed +- Modernized Authelia config format (fixes all deprecation warnings): + - `server.address: tcp://0.0.0.0:9091` (replaces `host` + `port`) + - `identity_validation.reset_password.jwt_secret` (replaces `jwt_secret`) + - `notifier.smtp.address: submission://...` (replaces `host` + `port`) + - `authentication_backend.file.watch: true` (auto-reload on user changes) + - `session.remember_me` (replaces `remember_me_duration`) + ## 0.1.0.0038 — 2026-07-11 ### Fixed diff --git a/VERSION b/VERSION index 46c4dee..be6a638 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0.0038 +0.1.0.0039 diff --git a/config/authelia/configuration.yml b/config/authelia/configuration.yml index a71b202..9b6c705 100644 --- a/config/authelia/configuration.yml +++ b/config/authelia/configuration.yml @@ -1,15 +1,17 @@ ############################################################### # Authelia configuration # ############################################################### -host: 0.0.0.0 -port: 9091 +server: + address: tcp://0.0.0.0:9091 log: level: info theme: dark -jwt_secret: {JWT_SECRET} +identity_validation: + reset_password: + jwt_secret: {JWT_SECRET} default_redirection_url: https://app.{DOMAIN}/ @@ -45,11 +47,11 @@ authentication_backend: session: name: nextworkspace_session secret: {SESSION_SECRET} - domain: {DOMAIN} + domain: "{DOMAIN}" same_site: lax expiration: 1h inactivity: 5m - remember_me_duration: 1M + remember_me: 1M regulation: max_retries: 5 @@ -63,8 +65,7 @@ storage: notifier: smtp: - host: "{SMTP_HOST}" - port: {SMTP_PORT} + address: "submission://{SMTP_HOST}:{SMTP_PORT}" username: "{SMTP_USER}" password: "{SMTP_PASS}" sender: "{SMTP_USER}"