From d1303f49e6f25e5efa5f5a443f500f733676d17c Mon Sep 17 00:00:00 2001 From: Martin Hauser Date: Fri, 9 May 2025 16:38:47 +0200 Subject: [PATCH] Fixes #19432 - Update PostgreSQL Version in Programming Error Message (#19446) --- docs/development/release-checklist.md | 1 + netbox/templates/exceptions/programming_error.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/development/release-checklist.md b/docs/development/release-checklist.md index e48cb140e..342b2c3b3 100644 --- a/docs/development/release-checklist.md +++ b/docs/development/release-checklist.md @@ -53,6 +53,7 @@ If a new Django release is adopted or other major dependencies (Python, PostgreS * Update the installation guide (`docs/installation/index.md`) with the new minimum versions. * Update the upgrade guide (`docs/installation/upgrading.md`) for the current version accordingly. +* Update the minimum PostgreSQL version in the programming error template (`netbox/templates/exceptions/programming_error.html`). ### Manually Perform a New Install diff --git a/netbox/templates/exceptions/programming_error.html b/netbox/templates/exceptions/programming_error.html index fdcbcbda0..e5275a317 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 %} - Ensure that PostgreSQL version 12 or later is in use. You can check this by connecting to the database using + Ensure that PostgreSQL version 14 or later is in use. You can check this by connecting to the database using NetBox's credentials and issuing a query for SELECT VERSION(). {% endblocktrans %}