diff --git a/doc/src/sgml/release-14.sgml b/doc/src/sgml/release-14.sgml index 6747860a4f..2f5f4e91ed 100644 --- a/doc/src/sgml/release-14.sgml +++ b/doc/src/sgml/release-14.sgml @@ -128,7 +128,7 @@ Change the default of the password_encryption server parameter to scram-sha-256 -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 md5 are no longer accepted. @@ -678,11 +678,11 @@ Author: Alvaro Herrera --> -Autovacuum now analyzes partitioned tables (Yuzuko Hosoya) +Autovacuum now analyzes partitioned tables (Yuzuko Hosoya, Álvaro Herrera) -DETAILS? +Insert, update, and delete tuple counts from partitions are now propagated to their parent tables so autovacuum knows when to process them. @@ -1113,7 +1113,7 @@ Author: Alvaro Herrera --> -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) @@ -2075,6 +2075,41 @@ Allow CURRENT_ROLE every place CURRENT_USER is accepted (Peter Eisentraut) + + + + +Allow extensions and built-in data types to implement subscripting (Dmitry Dolgov) + + + +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. + + + + + + + +Allow subscripting of JSONB (Dmitry Dolgov) + + + +JSONB subscripting can be used to extract and assign to portions of JSONB documents. + + + - - -Allow subscripting of JSONB and simplify the implementation of subscripting (Dmitry Dolgov) - - - -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. - - - -Improve the output format of libpq's PQtrace() (Aya Iwata) +Improve the output format of libpq's PQtrace() (Aya Iwata, Álvaro Herrera)