fix: upgrade postgresql-client from 15 to 17#7
Merged
rios0rios0 merged 1 commit intofnk0c:mainfrom Mar 20, 2026
Merged
Conversation
pg_dump 15 refuses to dump PostgreSQL 17.x servers, causing "aborting because of server version mismatch" errors. Made-with: Cursor
There was a problem hiding this comment.
Pull request overview
Upgrades the Docker delivery image’s PostgreSQL client to v17 to ensure pg_dump works against PostgreSQL 17.x servers, and updates the installation guide accordingly.
Changes:
- Bump Docker image dependency from
postgresql-client-15topostgresql-client-17. - Update
INSTALL_PG_DUMP.mdinstructions to reference PostgreSQL 17.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
INSTALL_PG_DUMP.md |
Updates the documented client version and install command to PostgreSQL 17. |
.ci/40-delivery/app.Dockerfile |
Installs postgresql-client-17 in the delivery image to align pg_dump with PG 17 servers. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| # PostgreSQL Client Installation Guide | ||
|
|
||
| This guide provides step-by-step instructions on how to install the PostgreSQL 15 client on your system using the official PostgreSQL APT repository. Follow these steps to ensure a successful installation. | ||
| This guide provides step-by-step instructions on how to install the PostgreSQL 17 client on your system using the official PostgreSQL APT repository. Follow these steps to ensure a successful installation. |
There was a problem hiding this comment.
INSTALL_PG_DUMP.md now instructs installing PostgreSQL 17 client, but README.md still lists pg_dump as "Version 15" in the prerequisites. Please update README.md to reference PostgreSQL/pg_dump 17 as well so documentation stays consistent.
This was referenced Mar 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
postgresql-client-15topostgresql-client-17in the Docker imageINSTALL_PG_DUMP.mdto reference PostgreSQL 17Problem
pg_dumpversion 15.13 refuses to dump PostgreSQL 17.x servers:Solution
Bump
postgresql-clientfrom 15 to 17 sopg_dumpcan handle servers running PostgreSQL 17.x.Made with Cursor