chore: upgrade Node.js runtime to v24 across codebase #419

Merged
jason.woltje merged 438 commits from fix/auth-frontend-remediation into main 2026-02-17 01:04:47 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 3e2c1b69ea - Show all commits

View File

@@ -61,7 +61,7 @@ KNOWLEDGE_CACHE_TTL=300
# Authentication (Authentik OIDC) # Authentication (Authentik OIDC)
# ====================== # ======================
# Set to 'true' to enable OIDC authentication with Authentik # Set to 'true' to enable OIDC authentication with Authentik
# When enabled, OIDC_ISSUER, OIDC_CLIENT_ID, and OIDC_CLIENT_SECRET are required # When enabled, OIDC_ISSUER, OIDC_CLIENT_ID, OIDC_CLIENT_SECRET, and OIDC_REDIRECT_URI are required
OIDC_ENABLED=false OIDC_ENABLED=false
# Authentik Server URLs (required when OIDC_ENABLED=true) # Authentik Server URLs (required when OIDC_ENABLED=true)

View File

@@ -96,7 +96,7 @@ describe("signInWithCredentials", (): void => {
expect.objectContaining({ expect.objectContaining({
method: "POST", method: "POST",
credentials: "include", credentials: "include",
body: JSON.stringify({ username: "alice", password: "password123" }), body: JSON.stringify({ email: "alice", password: "password123" }),
}) })
); );
}); });