Skip to content

Commit d1303f4

Browse files
authored
Fixes #19432 - Update PostgreSQL Version in Programming Error Message (#19446)
1 parent 127452f commit d1303f4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/development/release-checklist.md

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ If a new Django release is adopted or other major dependencies (Python, PostgreS
5353

5454
* Update the installation guide (`docs/installation/index.md`) with the new minimum versions.
5555
* Update the upgrade guide (`docs/installation/upgrading.md`) for the current version accordingly.
56+
* Update the minimum PostgreSQL version in the programming error template (`netbox/templates/exceptions/programming_error.html`).
5657

5758
### Manually Perform a New Install
5859

netbox/templates/exceptions/programming_error.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<i class="mdi mdi-alert"></i>
1818
<strong>{% trans "Unsupported PostgreSQL version" %}.</strong>
1919
{% blocktrans trimmed %}
20-
Ensure that PostgreSQL version 12 or later is in use. You can check this by connecting to the database using
20+
Ensure that PostgreSQL version 14 or later is in use. You can check this by connecting to the database using
2121
NetBox's credentials and issuing a query for <code>SELECT VERSION()</code>.
2222
{% endblocktrans %}
2323
</p>

0 commit comments

Comments
 (0)