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 11 #2889

Merged
merged 2 commits into from
May 2, 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: '9.6' # minimum NAV requirement
postgresql version: '11' # minimum NAV requirement
postgresql user: $PGUSER
postgresql password: $PGPASSWORD

Expand Down
9 changes: 9 additions & 0 deletions NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ 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.10 (Unreleased)
=====================

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

.. IMPORTANT:: NAV 5.10 requires PostgreSQL to be at least version *11*.


NAV 5.9
=======

Expand Down
1 change: 1 addition & 0 deletions changelog.d/+pg11.changed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Changed required PostgreSQL version to 11
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 >= 9.6 (With the ``hstore`` extension available)
* PostgreSQL >= 11 (With the ``hstore`` extension available)
* :xref:`Graphite`
* Python >= 3.7.0
* nbtscan = 1.5.1
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ services:
restart: on-failure:5

postgres:
image: "postgres:9.6"
image: "postgres:13"
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
restart: on-failure:5
Expand Down
Loading