Release 2.6.0#36
Merged
Merged
Conversation
Cuts the 2.6.0 release folding in the post-2.5 PL/Python-parity work: - $_SD, a per-function static dictionary (the private counterpart to the session-global $_SHARED); mirrors PL/Python's SD/GD pair. - The bytea_plphp companion transform (bytea <-> binary-safe PHP string), shipping as its own 1.0 extension. Mechanics: control default_version 2.5 -> 2.6; git mv plphp--2.5.sql plphp--2.6.sql; a no-op plphp--2.5--2.6.sql upgrade script ($_SD is entirely in the C module, no SQL surface); Makefile DATA updated; CHANGELOG [Unreleased] promoted to [2.6.0]. Verified in the plphp-build container on PG 18: fresh CREATE EXTENSION reports 2.6 and $_SD works, and the 2.5 -> ALTER EXTENSION UPDATE -> 2.6 path succeeds. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Cuts 2.6.0, folding in the post-2.5 PL/Python-parity work now on master.
Release contents
$_SD— per-function static dictionary that persists across calls to afunction within a session and is private to it, the counterpart to the
session-global
$_SHARED. Together they mirror PL/Python'sSD/GD.bytea_plphp— companion transform mappingbytea⇄ a binary-safe PHPstring, shipping as its own
1.0extension.(
hstore_plphpandbytea_plphpare now also covered by CI across PG 11-18.)Release mechanics
plphp.control:default_version2.5 -> 2.6git mv plphp--2.5.sql plphp--2.6.sqlplphp--2.5--2.6.sqlupgrade script ($_SDis entirely in the Cmodule, so there is no SQL surface change)
MakefileDATAupdatedCHANGELOG.md[Unreleased]promoted to[2.6.0] - 2026-07-06Verification
In the
plphp-buildcontainer on PG 18: freshCREATE EXTENSION plphpreports2.6and$_SDworks; the2.5->ALTER EXTENSION plphp UPDATE->2.6path succeeds and
$_SDworks after upgrade. The full PG 11-18 + ASAN matrixruns here in CI.
🤖 Generated with Claude Code