Commit 07af57db authored by Bruce Momjian's avatar Bruce Momjian

doc: update PG 14 relnotes from feedback by Tom, Alvaro, Julien

parent f39b21e6
...@@ -128,7 +128,7 @@ Change the default of the password_encryption server parameter to scram-sha-256 ...@@ -128,7 +128,7 @@ Change the default of the password_encryption server parameter to scram-sha-256
</para> </para>
<para> <para>
Previously it was md5. All new passwords will be stored as SHA256 unless this server variable is changed or the password is already md5-hashed. Previously it was md5. All new passwords will be stored as SHA256 unless this server variable is changed or the password is specified in md5 format.
Also, the legacy (and undocumented) boolean-like values which were previously synonyms for <literal>md5</literal> are no longer accepted. Also, the legacy (and undocumented) boolean-like values which were previously synonyms for <literal>md5</literal> are no longer accepted.
</para> </para>
</listitem> </listitem>
...@@ -678,11 +678,11 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org> ...@@ -678,11 +678,11 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
--> -->
<para> <para>
Autovacuum now analyzes partitioned tables (Yuzuko Hosoya) Autovacuum now analyzes partitioned tables (Yuzuko Hosoya, Álvaro Herrera)
</para> </para>
<para> <para>
DETAILS? Insert, update, and delete tuple counts from partitions are now propagated to their parent tables so autovacuum knows when to process them.
</para> </para>
</listitem> </listitem>
...@@ -1113,7 +1113,7 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org> ...@@ -1113,7 +1113,7 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
--> -->
<para> <para>
If server variable compute_query_id is enabled, display the hash in pg_stat_activity, EXPLAIN VERBOSE, csvlog, and optionally in log_line_prefix (Julien Rouhaud, Álvaro Herrera) If server variable compute_query_id is enabled, display the query id in pg_stat_activity, EXPLAIN VERBOSE, csvlog, and optionally in log_line_prefix (Julien Rouhaud)
</para> </para>
<para> <para>
...@@ -2075,6 +2075,41 @@ Allow CURRENT_ROLE every place CURRENT_USER is accepted (Peter Eisentraut) ...@@ -2075,6 +2075,41 @@ Allow CURRENT_ROLE every place CURRENT_USER is accepted (Peter Eisentraut)
<itemizedlist> <itemizedlist>
<listitem>
<!--
Author: Tom Lane <tgl@sss.pgh.pa.us>
2020-12-09 [c7aba7c14] Support subscripting of arbitrary types, not only arrays
-->
<para>
Allow extensions and built-in data types to implement subscripting (Dmitry Dolgov)
</para>
<para>
Previously subscript handling was hard-coded into the server, so that subscripting could only be applied to array types. This change allows subscript notation to be used to extract or
assign portions of a value of any type for which the concept makes sense.
</para>
</listitem>
<listitem>
<!--
Author: Alexander Korotkov <akorotkov@postgresql.org>
2021-01-31 [676887a3b] Implementation of subscripting for jsonb
Author: Alexander Korotkov <akorotkov@postgresql.org>
2021-01-31 [81fcc72e6] Filling array gaps during jsonb subscripting
Author: Alexander Korotkov <akorotkov@postgresql.org>
2021-01-31 [aa6e46daf] Throw error when assigning jsonb scalar instead of a com
-->
<para>
Allow subscripting of JSONB (Dmitry Dolgov)
</para>
<para>
JSONB subscripting can be used to extract and assign to portions of JSONB documents.
</para>
</listitem>
<listitem> <listitem>
<!-- <!--
Author: Author: Alexander Korotkov <akorotkov@postgresql.org> Author: Author: Alexander Korotkov <akorotkov@postgresql.org>
...@@ -2266,25 +2301,6 @@ Allow procedures to have OUT parameters (Peter Eisentraut) ...@@ -2266,25 +2301,6 @@ Allow procedures to have OUT parameters (Peter Eisentraut)
</para> </para>
</listitem> </listitem>
<listitem>
<!--
Author: Alexander Korotkov <akorotkov@postgresql.org>
2021-01-31 [676887a3b] Implementation of subscripting for jsonb
Author: Alexander Korotkov <akorotkov@postgresql.org>
2021-01-31 [81fcc72e6] Filling array gaps during jsonb subscripting
Author: Alexander Korotkov <akorotkov@postgresql.org>
2021-01-31 [aa6e46daf] Throw error when assigning jsonb scalar instead of a com
-->
<para>
Allow subscripting of JSONB and simplify the implementation of subscripting (Dmitry Dolgov)
</para>
<para>
JSONB subscripting can be used to extract from and assign to JSONB documents. Extensions and built-in data types can now implement subscripting more easily.
</para>
</listitem>
<listitem> <listitem>
<!-- <!--
Author: Tom Lane <tgl@sss.pgh.pa.us> Author: Tom Lane <tgl@sss.pgh.pa.us>
...@@ -2638,7 +2654,7 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org> ...@@ -2638,7 +2654,7 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
--> -->
<para> <para>
Improve the output format of libpq's PQtrace() (Aya Iwata) Improve the output format of libpq's PQtrace() (Aya Iwata, Álvaro Herrera)
</para> </para>
</listitem> </listitem>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment