feat: support pg 17.10 and pg 15.18#2155
Draft
samrose wants to merge 2 commits into
Draft
Conversation
fix: also update 15.x hash
PostgreSQL Extension Dependency Analysis: PR #2155
SummaryNo extensions had dependencies with MAJOR version updates. Full Analysis ResultsPostgreSQL 15 Extension DependenciesExtension: pg_cron
Raw Dependency TreeExtension: pg_repack
Raw Dependency TreeExtension: postgis
Raw Dependency TreeExtension: wrappers
Raw Dependency TreePostgreSQL 17 Extension DependenciesExtension: pg_cron
Raw Dependency TreeExtension: pg_repack
Raw Dependency TreeExtension: postgis
Raw Dependency Tree |
PostgreSQL Package Dependency Analysis: PR #2155
SummaryNo packages had MAJOR version updates. Full Analysis ResultsPostgreSQL 15 Dependency ChangesExtracting PostgreSQL 15 dependencies...
Runtime Closure Size
Raw Dependency ClosurePostgreSQL 17 Dependency ChangesExtracting PostgreSQL 17 dependencies...
Runtime Closure Size
Raw Dependency Closure |
…headers Companion to 0a27cdc which bumped nix/config.nix. Resets version build counters to .1.001 on the new minor (matching the convention established by 33c70a7 / bddfca2). - ansible/vars.yml: postgres17 → 17.10.1.001, postgres15 → 15.18.1.001 - README.md: PG version links bumped - migrations/schema-{15,17}.sql: pg_dump header comments bumped Refs: PSQL-1233, PSQL-1110
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.
What kind of change does this PR introduce?
Postgres minor version bump for the May 2026 security release: 15.14 → 15.18 and 17.6 → 17.10.
Because
developis on 15.14 / 17.6, this single bump absorbs three coordinated upstream security cycles (Nov 2025 + Feb 2026 + May 2026), closing 16 CVEs (9 High, 5 Medium, 2 Low). Full catalog in PSQL-1110.What is the current behavior?
developships PG 15.14 / 17.6, missing the security fixes from the 15.15–15.18 and 17.7–17.10 cycles. Notable High-severity exposures unpatched today:pg_basebackup/pg_rewindpath-traversal (touches our wal-g PITR pipeline)PQfn()stack buffer overflow (affects bundledpsql/ pgbouncer)contrib/refintSQL injection + stack overflowPlus the non-CVE ltree multibyte case-folding bug — indexes built under the old logic on UTF-8 / ICU databases can silently miss matches.
Related Linear tickets: PSQL-1110 (analysis), PSQL-1230 (release umbrella), PSQL-1233 (this PR).
What is the new behavior?
PG 15.18 / 17.10, plus orioledb bumped to 17_16.
⚠ Two breaking-change items shipping with this PR (customer comms separately tracked)
ValidateRestrictionEstimator()andValidateJoinEstimator()insrc/backend/commands/operatorcmds.c. Existing user operators continue to work; the gate fires only onpg_dump/pg_restore/pg_upgrade/ALTER OPERATOR. Comms umbrella: PSQL-1231.REINDEXed post-upgrade. Affects ~2,245 projects per Sam's fleet snapshot. Support playbook in review: supabase/playbooks#398.Additional context
Test plan
Automated (CI):
nix-build(aarch64 + x86_64)docker-image-testtestinfra-ami-buildami-release-nix(Packer stage1 → stage2)Manual (post-merge, tracked under Umbrella A):
nix run .#migration-test 15.14 15.18 pg_upgrade/pg_dumpalland same for17.6 → 17.10— PSQL-1235