From 1afaf2de0650404fa356db214d651056bba285fd Mon Sep 17 00:00:00 2001 From: Martin Hauser Date: Wed, 2 Sep 2026 17:35:37 +0200 Subject: [PATCH] fix(templates): Update PostgreSQL version requirement to 15 Updates exception message to reflect PostgreSQL 15 as the minimum supported version instead of version 14. --- netbox/templates/exceptions/programming_error.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/templates/exceptions/programming_error.html b/netbox/templates/exceptions/programming_error.html index 3cf9e2cd0..41189da2b 100644 --- a/netbox/templates/exceptions/programming_error.html +++ b/netbox/templates/exceptions/programming_error.html @@ -17,7 +17,7 @@ {% trans "Unsupported PostgreSQL version" %}. {% blocktrans trimmed with sql_query="SELECT VERSION()" %} - Ensure that PostgreSQL version 14 or later is in use. You can check this by connecting to the database using + Ensure that PostgreSQL version 15 or later is in use. You can check this by connecting to the database using NetBox's credentials and issuing a query for {{ sql_query }}. {% endblocktrans %}