Draft release notes are up
Hackorum builds and tests every patch posted to the lists, not only commitfest submissions. This is Hackorum's own CI rather than the PostgreSQL project's, and it is still under testing - please report anything that looks wrong.
You can run a PostgreSQL built from this patch straight from Docker, with no checkout and no build:
docker run --rm -p 5432:5432 ghcr.io/hackorum-dev/postgres-patch:t39154psql -h localhost -U postgresBuilt from patchset v3 (message #3), July 28, 2026 at 05:26 AM.
Every patchset is also pushed to a branch of our PostgreSQL fork, so you can check out the same tree CI built. Without a PostgreSQL checkout:
git clone --branch t39154_3 https://github.com/hackorum-dev/postgres.gitIn a checkout you already have, add the fork once:
git remote add hackorum https://github.com/hackorum-dev/postgres.gitthen, for this patchset and every later one:
git fetch hackorum t39154_3 && git checkout t39154_3Patchset v3 (message #3) is on t39154_3
First cut at release notes for next week's minor releases is up at
If you prefer not to read XML markup, they should appear in the devel docs
on the website after guaibasaurus's next run, a couple hours from now.
regards, tom lane
On Fri, Aug 3, 2018 at 3:15 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
First cut at release notes for next week's minor releases is up at
I suppose that you should add an item for the relcache bug that I just
pushed a fix for. It isn't known to cause an issue on releases prior
to v11, so I'm not sure on the best way of phrasing it for users.
Thanks
--
Peter Geoghegan
On Aug 3, 2018, at 6:15 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
First cut at release notes for next week's minor releases is up at
If you prefer not to read XML markup, they should appear in the devel docs
on the website after guaibasaurus's next run, a couple hours from now.
Thank you for compiling the notes. I found a small misspelling in the notes, fix
attached.
Jonathan
"Jonathan S. Katz" <jkatz@postgresql.org> writes:
[ s/interruptable/interruptible/ ]
Huh ... I hadn't actually known that the two forms weren't more or less
equally acceptable, but a bit of dictionary-perusing says you're right.
Grep finds a couple of other "interruptable"s in our tree, both likely
my fault.
regards, tom lane
On Aug 4, 2018, at 12:11 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
"Jonathan S. Katz" <jkatz@postgresql.org> writes:
[ s/interruptable/interruptible/ ]
Huh ... I hadn't actually known that the two forms weren't more or less
equally acceptable, but a bit of dictionary-perusing says you're right.
Grep finds a couple of other "interruptable"s in our tree, both likely
my fault.
The other two I found that I would recommend fixing:
“mis-quoting” => “misquoting”
"Manually-created” => “Manually created”
LGTM otherwise. I will have a PR draft available soon.
Jonathan
On Aug 4, 2018, at 12:17 PM, Jonathan S. Katz <jkatz@postgresql.org> wrote:
On Aug 4, 2018, at 12:11 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
"Jonathan S. Katz" <jkatz@postgresql.org> writes:
[ s/interruptable/interruptible/ ]
Huh ... I hadn't actually known that the two forms weren't more or less
equally acceptable, but a bit of dictionary-perusing says you're right.
Grep finds a couple of other "interruptable"s in our tree, both likely
my fault.The other two I found that I would recommend fixing:
“mis-quoting” => “misquoting”
"Manually-created” => “Manually created”LGTM otherwise. I will have a PR draft available soon.
PR draft attached. This combines both the the cumulative update
as well as PG11B3.
I kindly request checks for accuracy and or key omissions that
are worth highlighting.
Thanks,
Jonathan
Attachments:
20180809updaterelease.txttext/plain; name=20180809updaterelease.txt; x-unix-mode=0644Download
On Aug 4, 2018, at 1:17 PM, Jonathan S. Katz <jkatz@postgresql.org> wrote:
On Aug 4, 2018, at 12:17 PM, Jonathan S. Katz <jkatz@postgresql.org> wrote:
On Aug 4, 2018, at 12:11 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
"Jonathan S. Katz" <jkatz@postgresql.org> writes:
[ s/interruptable/interruptible/ ]
Huh ... I hadn't actually known that the two forms weren't more or less
equally acceptable, but a bit of dictionary-perusing says you're right.
Grep finds a couple of other "interruptable"s in our tree, both likely
my fault.The other two I found that I would recommend fixing:
“mis-quoting” => “misquoting”
"Manually-created” => “Manually created”LGTM otherwise. I will have a PR draft available soon.
PR draft attached. This combines both the the cumulative update
as well as PG11B3.I kindly request checks for accuracy and or key omissions that
are worth highlighting.
Added an EOL warning for 9.3.
Jonathan