diff --git a/authentik/core/templates/login/base_full.html b/authentik/core/templates/login/base_full.html
index c88692a632..a9d199ba62 100644
--- a/authentik/core/templates/login/base_full.html
+++ b/authentik/core/templates/login/base_full.html
@@ -71,7 +71,7 @@
{% endfor %}
-
+
{% trans 'Powered by authentik' %}
diff --git a/authentik/core/templatetags/authentik_core.py b/authentik/core/templatetags/authentik_core.py
index c6f0c58437..7f8a80a5fa 100644
--- a/authentik/core/templatetags/authentik_core.py
+++ b/authentik/core/templatetags/authentik_core.py
@@ -17,11 +17,5 @@ def versioned_script(path: str) -> str:
f''
),
- # Legacy method of loading scripts used as a fallback, without the version in the filename
- # TODO: Remove after 2024.6 or later
- (
- f''
- ),
]
return mark_safe("".join(returned_lines)) # nosec
diff --git a/authentik/providers/scim/clients/base.py b/authentik/providers/scim/clients/base.py
index 19d55a4dfe..d6d20f1e37 100644
--- a/authentik/providers/scim/clients/base.py
+++ b/authentik/providers/scim/clients/base.py
@@ -89,6 +89,6 @@ class SCIMClient[TModel: "Model", TConnection: "Model", TSchema: "BaseModel"](
return ServiceProviderConfiguration.model_validate(
self._request("GET", "/ServiceProviderConfig")
)
- except (ValidationError, SCIMRequestException) as exc:
+ except (ValidationError, SCIMRequestException, NotFoundSyncException) as exc:
self.logger.warning("failed to get ServiceProviderConfig", exc=exc)
return default_config
diff --git a/authentik/stages/email/templates/email/base.html b/authentik/stages/email/templates/email/base.html
index 1b3dfc84b5..08a60107a0 100644
--- a/authentik/stages/email/templates/email/base.html
+++ b/authentik/stages/email/templates/email/base.html
@@ -120,7 +120,7 @@
- Powered by authentik.
+ Powered by authentik.
|
diff --git a/internal/outpost/proxyv2/templates/error.html b/internal/outpost/proxyv2/templates/error.html
index 94df097145..95a554d3db 100644
--- a/internal/outpost/proxyv2/templates/error.html
+++ b/internal/outpost/proxyv2/templates/error.html
@@ -48,7 +48,7 @@