Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update PostgreSQL requirement to version 13 #2905

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- name: "Set up PostgreSQL"
uses: harmon758/postgresql-action@v1
with:
postgresql version: '11' # minimum NAV requirement
postgresql version: '13' # minimum NAV requirement
postgresql user: $PGUSER
postgresql password: $PGPASSWORD

Expand Down
8 changes: 8 additions & 0 deletions NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ existing bug reports, go to https://github.com/uninett/nav/issues .
To see an overview of upcoming release milestones and the issues they resolve,
please go to https://github.com/uninett/nav/milestones .

NAV 5.11 (Unreleased)
=====================

Dependency changes
------------------

.. IMPORTANT:: NAV 5.11 requires PostgreSQL to be at least version *13*.

NAV 5.10 (Unreleased)
=====================

Expand Down
1 change: 1 addition & 0 deletions changelog.d/2892.changed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Changed required PostgreSQL version to 13
2 changes: 1 addition & 1 deletion doc/howto/generic-install-from-source.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Runtime requirements
To run NAV, these software packages are required:

* Apache2 + mod_wsgi (or, really, any web server that supports the WSGI interface)
* PostgreSQL >= 11 (With the ``hstore`` extension available)
* PostgreSQL >= 13 (With the ``hstore`` extension available)
* :xref:`Graphite`
* Python >= 3.9.0
* nbtscan = 1.5.1
Expand Down
Loading