From c90f76ba2eb31c25955f06d3bf0314e6e01a141a Mon Sep 17 00:00:00 2001 From: Nathan Bossart Date: Fri, 19 Sep 2025 11:23:46 -0500 Subject: [PATCH v4 1/1] Add list of major features to the v18 release notes. Author: Nathan Bossart Co-authored-by: "Jonathan S. Katz" Reviewed-by: Peter Eisentraut Reviewed-by: Erik Rijkers Reviewed-by: Robert Haas Discussion: https://postgr.es/m/aLMo7lJKg8bWUs3y%40momjian.us Backpatch-through: 18 only --- doc/src/sgml/release-18.sgml | 60 +++++++++++++++++++++++++++++++++++- 1 file changed, 59 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/release-18.sgml b/doc/src/sgml/release-18.sgml index 8f13786fe88..6a9fe419acf 100644 --- a/doc/src/sgml/release-18.sgml +++ b/doc/src/sgml/release-18.sgml @@ -21,7 +21,65 @@ - (to be completed) + An asynchronous I/O subsystem (AIO) that can improve performance of + sequential scans, bitmap heap scans, vacuums, and other operations. + + + + + + pg_upgrade + now maintains optimizer statistics through upgrade. + + + + + + Support for "skip scan" lookups that allow + multicolumn B-tree indexes to + be used in more cases. + + + + + + uuidv7() + function for generating timestamp-ordered + UUIDs. + + + + + + Virtual + generated columns + that compute their values during read operations. This is now the + default for generated columns. + + + + + + OAuth authentication support. + + + + + + OLD and NEW support for + RETURNING clauses + in , , + , and commands. + + + + + + Temporal constraints, or constraints over ranges, for + PRIMARY KEY, + UNIQUE, and + FOREIGN KEY + constraints. -- 2.39.5 (Apple Git-154)