{% trans "Configure settings relevant to your user profile." %}
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a397ed004..37340a01d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -31,6 +31,6 @@ values = [bumpversion:file:authentik/__init__.py] -[bumpversion:file:proxy/pkg/version.go] +[bumpversion:file:outpost/pkg/version.go] [bumpversion:file:web/src/constants.ts] diff --git a/authentik/admin/tests/test_tasks.py b/authentik/admin/tests/test_tasks.py index b4e34b8e0..17e3630de 100644 --- a/authentik/admin/tests/test_tasks.py +++ b/authentik/admin/tests/test_tasks.py @@ -32,7 +32,7 @@ REQUEST_MOCK_VALID = Mock( return_value=MockResponse( 200, """{ - "tag_name": "version/1.2.3" + "tag_name": "version/99999999.9999999" }""", ) ) @@ -47,10 +47,10 @@ class TestAdminTasks(TestCase): def test_version_valid_response(self): """Test Update checker with valid response""" update_latest_version.delay().get() - self.assertEqual(cache.get(VERSION_CACHE_KEY), "1.2.3") + self.assertEqual(cache.get(VERSION_CACHE_KEY), "99999999.9999999") self.assertTrue( Event.objects.filter( - action=EventAction.UPDATE_AVAILABLE, context__new_version="1.2.3" + action=EventAction.UPDATE_AVAILABLE, context__new_version="99999999.9999999" ).exists() ) # test that a consecutive check doesn't create a duplicate event @@ -58,7 +58,7 @@ class TestAdminTasks(TestCase): self.assertEqual( len( Event.objects.filter( - action=EventAction.UPDATE_AVAILABLE, context__new_version="1.2.3" + action=EventAction.UPDATE_AVAILABLE, context__new_version="99999999.9999999" ) ), 1, diff --git a/authentik/core/templates/user/settings.html b/authentik/core/templates/user/settings.html index 49ee9b2b0..047288c59 100644 --- a/authentik/core/templates/user/settings.html +++ b/authentik/core/templates/user/settings.html @@ -1,5 +1,6 @@ {% load i18n %} {% load authentik_user_settings %} +{% load authentik_utils %}
{% trans "Configure settings relevant to your user profile." %}