Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1q1rBd-0005Bq-QH for pgsql-hackers@arkaria.postgresql.org; Wed, 24 May 2023 16:18:05 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1q1rBb-0001x4-9k for pgsql-hackers@arkaria.postgresql.org; Wed, 24 May 2023 16:18:03 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1q1rBb-0001wt-0L for pgsql-hackers@lists.postgresql.org; Wed, 24 May 2023 16:18:03 +0000 Received: from momjian.us ([72.94.173.45]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1q1rBU-001fNF-2t for pgsql-hackers@postgresql.org; Wed, 24 May 2023 16:18:01 +0000 Received: from bruce by momjian.us with local (Exim 4.94.2) (envelope-from ) id 1q1rBP-00CyHf-HY; Wed, 24 May 2023 12:17:51 -0400 Date: Wed, 24 May 2023 12:17:51 -0400 From: Bruce Momjian To: Erik Rijkers Cc: John Naylor , PostgreSQL-development Subject: Re: PG 16 draft release notes ready Message-ID: References: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="F1eChTvtlF28Swd6" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --F1eChTvtlF28Swd6 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Wed, May 24, 2023 at 04:57:59PM +0200, Erik Rijkers wrote: > Op 5/24/23 om 15:58 schreef Bruce Momjian: > > On Wed, May 24, 2023 at 12:23:02PM +0700, John Naylor wrote: > > > > > > On Wed, May 24, 2023 at 11:19 AM Bruce Momjian wrote: > > Typos: > > 'from standbys servers' should be > 'from standby servers' > > 'reindexedb' should be > 'reindexdb' > (2x: the next line mentions, erroneously, 'reindexedb --system') > > 'created only created' should be > 'only created' > (I think) > > 'could could' should be > 'could' > > 'are now require the role' should be > 'now require the role' > > 'values is' should be > 'value is' > > 'to marked' should be > 'to be marked' All good, patch attached and applied. Updated docs are at: https://momjian.us/pgsql_docs/release-16.html -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com Only you can decide what is important to you. --F1eChTvtlF28Swd6 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="master.diff" diff --git a/doc/src/sgml/release-16.sgml b/doc/src/sgml/release-16.sgml index bb92fe5cf9..88d6514ad7 100644 --- a/doc/src/sgml/release-16.sgml +++ b/doc/src/sgml/release-16.sgml @@ -27,7 +27,7 @@ - Allow logical replication from standbys servers + Allow logical replication from standby servers @@ -126,11 +126,11 @@ Author: Michael Paquier -Change REINDEX DATABASE and reindexedb to not process indexes on system catalogs (Simon Riggs) +Change REINDEX DATABASE and reindexdb to not process indexes on system catalogs (Simon Riggs) -Processing such indexes is still possible using REINDEX SYSTEM and reindexedb --system. +Processing such indexes is still possible using REINDEX SYSTEM and reindexdb --system. @@ -593,7 +593,7 @@ Create subscription statistics entries at subscription creation time so stats_re -Previously entries were created only created when the first statistics were reported. +Previously entries were created only when the first statistics were reported. @@ -777,7 +777,7 @@ Simplify permissions for LOCK TABLE (Jeff Davis) -Previously the ability to perform LOCK TABLE at various lock levels was bound to specific query-type permissions. For example, UPDATE could could perform all lock levels except ACCESS SHARE, which +Previously the ability to perform LOCK TABLE at various lock levels was bound to specific query-type permissions. For example, UPDATE could perform all lock levels except ACCESS SHARE, which required SELECT permissions. Now UPDATE can issue all lock levels. MORE? @@ -808,7 +808,7 @@ Restrict the privileges of CREATEROLE roles (Robert Haas) -Previously roles with CREATEROLE privileges could change many aspects of any non-superuser role. Such changes, including adding members, are now require the role requesting the change to have ADMIN OPTION +Previously roles with CREATEROLE privileges could change many aspects of any non-superuser role. Such changes, including adding members, now require the role requesting the change to have ADMIN OPTION permission. @@ -946,7 +946,7 @@ Add dependency tracking of grantors for GRANT records (Robert Haas) -This will guarantee that pg_auth_members.grantor values is always valid. +This guarantees that pg_auth_members.grantor values are always valid. @@ -3017,7 +3017,7 @@ Author: Tom Lane -Allow required extensions to marked as non-relocatable using "no_relocate" (Regina Obe) +Allow required extensions to be marked as non-relocatable using "no_relocate" (Regina Obe) --F1eChTvtlF28Swd6--