From f4a0b188850a19802e11c0b9809f77d3b661f6e2 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 16 Nov 2024 17:09:53 -0500 Subject: [PATCH] Release notes for 17.2, 16.6, 15.10, 14.15, 13.18, 12.22. --- doc/src/sgml/release-13.sgml | 132 +++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) diff --git a/doc/src/sgml/release-13.sgml b/doc/src/sgml/release-13.sgml index 68688b6e3a2..33255c165dc 100644 --- a/doc/src/sgml/release-13.sgml +++ b/doc/src/sgml/release-13.sgml @@ -1,6 +1,138 @@ + + Release 13.18 + + + Release date: + 2024-11-21 + + + + This release contains a few fixes from 13.17. + For information about new features in major release 13, see + . + + + + Migration to Version 13.18 + + + A dump/restore is not required for those running 13.X. + + + + However, if you are upgrading from a version earlier than 13.17, + see . + + + + + Changes + + + + + + + Restore functionality of ALTER {ROLE|DATABASE} SET + role (Tom Lane, Noah Misch) + § + + + + The fix for CVE-2024-10978 accidentally caused settings + for role to not be applied if they come from + non-interactive sources, including previous ALTER + {ROLE|DATABASE} commands and + the PGOPTIONS environment variable. + + + + + + + Fix cases where a logical replication + slot's restart_lsn could go backwards + (Masahiko Sawada) + § + + + + Previously, restarting logical replication could sometimes cause the + slot's restart point to be recomputed as an older value than had + previously been advertised + in pg_replication_slots. This is bad, + since for example WAL files might have been removed on the basis of + the later restart_lsn value, in which + case replication would fail to restart. + + + + + + + Count index scans in contrib/bloom indexes in + the statistics views, such as the + pg_stat_user_indexes.idx_scan + counter (Masahiro Ikeda) + § + + + + + + + Fix crash when checking to see if an index's opclass options have + changed (Alexander Korotkov) + § + + + + Some forms of ALTER TABLE would fail if the + table has an index with non-default operator class options. + + + + + + + + Release 13.17