Use PG16 as the default in the container.
parent
3b616b2fb1
commit
5a26cad588
12
Dockerfile
12
Dockerfile
|
@ -119,6 +119,7 @@ FROM postgres:12-alpine AS pg12-builder
|
||||||
FROM postgres:13-alpine AS pg13-builder
|
FROM postgres:13-alpine AS pg13-builder
|
||||||
FROM postgres:14-alpine AS pg14-builder
|
FROM postgres:14-alpine AS pg14-builder
|
||||||
FROM postgres:15-alpine AS pg15-builder
|
FROM postgres:15-alpine AS pg15-builder
|
||||||
|
FROM postgres:16-alpine AS pg16-builder
|
||||||
|
|
||||||
FROM alpine:latest AS tool-builder
|
FROM alpine:latest AS tool-builder
|
||||||
|
|
||||||
|
@ -148,6 +149,11 @@ COPY --from=pg15-builder /usr/local/bin/pg_dumpall /usr/local/pgsql/pgsql-15/
|
||||||
COPY --from=pg15-builder /usr/local/bin/pg_restore /usr/local/pgsql/pgsql-15/
|
COPY --from=pg15-builder /usr/local/bin/pg_restore /usr/local/pgsql/pgsql-15/
|
||||||
COPY --from=pg15-builder /usr/local/bin/psql /usr/local/pgsql/pgsql-15/
|
COPY --from=pg15-builder /usr/local/bin/psql /usr/local/pgsql/pgsql-15/
|
||||||
|
|
||||||
|
COPY --from=pg16-builder /usr/local/bin/pg_dump /usr/local/pgsql/pgsql-16/
|
||||||
|
COPY --from=pg16-builder /usr/local/bin/pg_dumpall /usr/local/pgsql/pgsql-16/
|
||||||
|
COPY --from=pg16-builder /usr/local/bin/pg_restore /usr/local/pgsql/pgsql-16/
|
||||||
|
COPY --from=pg16-builder /usr/local/bin/psql /usr/local/pgsql/pgsql-16/
|
||||||
|
|
||||||
#########################################################################
|
#########################################################################
|
||||||
# Assemble everything into the final container.
|
# Assemble everything into the final container.
|
||||||
#########################################################################
|
#########################################################################
|
||||||
|
@ -159,9 +165,9 @@ COPY --from=env-builder /venv /venv
|
||||||
|
|
||||||
# Copy in the tools
|
# Copy in the tools
|
||||||
COPY --from=tool-builder /usr/local/pgsql /usr/local/
|
COPY --from=tool-builder /usr/local/pgsql /usr/local/
|
||||||
COPY --from=pg15-builder /usr/local/lib/libpq.so.5.15 /usr/lib/
|
COPY --from=pg16-builder /usr/local/lib/libpq.so.5.16 /usr/lib/
|
||||||
RUN ln -s libpq.so.5.15 /usr/lib/libpq.so.5 && \
|
RUN ln -s libpq.so.5.16 /usr/lib/libpq.so.5 && \
|
||||||
ln -s libpq.so.5.15 /usr/lib/libpq.so
|
ln -s libpq.so.5.16 /usr/lib/libpq.so
|
||||||
|
|
||||||
WORKDIR /pgadmin4
|
WORKDIR /pgadmin4
|
||||||
ENV PYTHONPATH=/pgadmin4
|
ENV PYTHONPATH=/pgadmin4
|
||||||
|
|
|
@ -11,6 +11,7 @@ notes for it.
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 1
|
:maxdepth: 1
|
||||||
|
|
||||||
|
release_notes_7_8
|
||||||
release_notes_7_7
|
release_notes_7_7
|
||||||
release_notes_7_6
|
release_notes_7_6
|
||||||
release_notes_7_5
|
release_notes_7_5
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
***********
|
||||||
|
Version 7.8
|
||||||
|
***********
|
||||||
|
|
||||||
|
Release date: 2023-10-19
|
||||||
|
|
||||||
|
This release contains a number of bug fixes and new features since the release of pgAdmin 4 v7.7.
|
||||||
|
|
||||||
|
Supported Database Servers
|
||||||
|
**************************
|
||||||
|
**PostgreSQL**: 11, 12, 13, 14, 15, and 16
|
||||||
|
|
||||||
|
**EDB Advanced Server**: 11, 12, 13, 14 and 15
|
||||||
|
|
||||||
|
Bundled PostgreSQL Utilities
|
||||||
|
****************************
|
||||||
|
**psql**, **pg_dump**, **pg_dumpall**, **pg_restore**: 16.0
|
||||||
|
|
||||||
|
|
||||||
|
New features
|
||||||
|
************
|
||||||
|
|
||||||
|
Housekeeping
|
||||||
|
************
|
||||||
|
|
||||||
|
| `Issue #6782 <https://github.com/pgadmin-org/pgadmin4/issues/6782>`_ - Use PG16 as the default PostgreSQL version.
|
||||||
|
|
||||||
|
Bug fixes
|
||||||
|
*********
|
Loading…
Reference in New Issue