From 25c907aaadedfddda81590e1efaff262c5df0486 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Pinto?= Date: Wed, 22 Jan 2025 14:06:18 +0000 Subject: [PATCH 1/2] fix: reverts urls orders changes, proper fix applied on django-sbomrepo that prevents template override --- surface/surface/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/surface/surface/urls.py b/surface/surface/urls.py index 0f5447a7..77e2ad70 100644 --- a/surface/surface/urls.py +++ b/surface/surface/urls.py @@ -19,7 +19,7 @@ urlpatterns = [ path("", include(("theme.urls", "theme"), namespace="surface_theme")), - path("", admin.site.urls), path("dkron/", include("dkron.urls")), path("sbomrepo/", include("sbomrepo.urls")), + path("", admin.site.urls), ] From 11f675ce84cc8db849a2a796033266245814efce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Pinto?= Date: Wed, 22 Jan 2025 14:10:21 +0000 Subject: [PATCH 2/2] bump sbomrepo --- surface/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/surface/requirements.txt b/surface/requirements.txt index 0c56f276..23bfbecf 100644 --- a/surface/requirements.txt +++ b/surface/requirements.txt @@ -24,7 +24,7 @@ django-olympus==0.0.5 django-environ-ppb[vault]==1.0.1 django-impersonator==0.0.2 django-apitokens==0.0.2 -django-sbomrepo==0.0.6 +django-sbomrepo==0.0.9 mysqlclient==2.2.4 tqdm==4.65.0 # for core_utils that is not really a app/package ..?