doc: PG 16 relnotes, update for beta 2

This commit is contained in:
Bruce Momjian 2023-06-26 13:44:40 -04:00
parent 3f0199da5a
commit 228a2fab9c
1 changed files with 68 additions and 1 deletions

View File

@ -6,7 +6,7 @@
<formalpara>
<title>Release date:</title>
<para>AS OF 2023-05-17, 2023-??-??</para>
<para>AS OF 2023-06-26, 2023-??-??</para>
</formalpara>
<sect2 id="release-16-highlights">
@ -229,6 +229,39 @@ This was used to promote a standby to primary, but is now easier accomplished wi
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2023-06-07 [b0f6c4371] Remove read-only server settings lc_collate and lc_ctype
-->
<listitem>
<para>
Remove read-only server variables lc_collate and lc_ctype (Peter Eisentraut)
</para>
<para>
Collations and locales can vary between databases so having them as read-only server variables was unhelpful.
</para>
</listitem>
<!--
Author: Nathan Bossart <nathan@postgresql.org>
2023-05-21 [2dcd1578c] Rename some createuser options.
Author: Nathan Bossart <nathan@postgresql.org>
2023-05-23 [381d19b3e] Document deprecated createuser option.
-->
<listitem>
<para>
Deprecate createuser option --role (Nathan Bossart)
</para>
<para>
This option could be easily confused with new createuser role membership options, so option --member-of has been added with the same functionality.
The --role option can still be used.
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2023-01-26 [37e267335] Don't install postmaster symlink anymore
@ -1020,6 +1053,12 @@ Previously only a single privilege name, like SELECT, was accepted.
<!--
Author: Stephen Frost <sfrost@snowman.net>
2023-04-13 [6633cfb21] De-Revert "Add support for Kerberos credential delegatio
Author: Bruce Momjian <bruce@momjian.us>
2023-05-20 [9c0a0e2ed] rename "gss_accept_deleg" to "gss_accept_delegation".
Author: Nathan Bossart <nathan@postgresql.org>
2023-05-20 [f4001a553] Fix remaining references to gss_accept_deleg.
Author: Tom Lane <tgl@sss.pgh.pa.us>
2023-05-21 [a2eb99a01] Expand some more uses of "deleg" to "delegation" or "del
-->
<listitem>
@ -1309,6 +1348,21 @@ However, ICU doesn't support the C locale so UTF-8 is used in such cases. Previ
</para>
</listitem>
<!--
Author: Jeff Davis <jdavis@postgresql.org>
Date: Fri Jun 16 10:27:32 2023 -0700
-->
<listitem>
<para>
Have CREATE DATABASE and CREATE COLLATION's LOCALE options, and initdb and createdb --locale options, control non-libc collation providers (Jeff Davis)
</para>
<para>
Previously they only controlled libc providers.
</para>
</listitem>
<!--
Author: Peter Eisentraut <peter@eisentraut.org>
2023-03-10 [0d21d4b9b] Add standard collation UNICODE
@ -2378,6 +2432,8 @@ The option is "-c name=value".
<!--
Author: Michael Paquier <michael@paquier.xyz>
2022-07-13 [08951a7c9] createuser: Add support for more clause types through ne
Author: Nathan Bossart <nathan@postgresql.org>
2023-05-21 [2dcd1578c] Rename some createuser options.
-->
<listitem>
@ -2978,6 +3034,17 @@ This is similar to bt_page_stats() except it can report on a range of pages.
</para>
</listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2023-01-02 [1fd3dd204] Add bt_multi_page_stats() function to contrib/pageinspec
-->
<listitem>
<para>
Add empty range output column to pageinspect function brin_page_items() (Tomas Vondra)
</para>
</listitem>
<!--
Author: Michael Paquier <michael@paquier.xyz>
2023-02-17 [35739b87d] Redesign archive modules