Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sF1NT-005zg9-Uk for pgsql-hackers@arkaria.postgresql.org; Thu, 06 Jun 2024 00:53:17 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1sF1NS-00DS0i-PT for pgsql-hackers@arkaria.postgresql.org; Thu, 06 Jun 2024 00:53:14 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sF1NS-00DS0a-EQ for pgsql-hackers@lists.postgresql.org; Thu, 06 Jun 2024 00:53:14 +0000 Received: from momjian.us ([72.94.173.45]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sF1NP-000Cli-Kx for pgsql-hackers@postgresql.org; Thu, 06 Jun 2024 00:53:13 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=momjian.us; s=2024011501; h=In-Reply-To:Content-Transfer-Encoding:Content-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-ID:Content-Description; bh=txXsheqHTPcWyM8RubhcBb0m8DTw8zTMBoFPo70bS44=; b=U/PHQ4enJezuqTe5+3Q3odzZUk jrXIryZx8hPHOpthARuoxuBekWugrae9M0wTDa2YEAcFnjC/QlhWWTjaM1VuRAAZi/ZR4RNdmIbT+ WpUKfFnH5my+iTPapYnQKIivorMd1WAcocrh70jBdug0VGWW9nHsY//Kx+LodMgvg8HuqRBW9WzsF ZKGOi3UGpUntTKDPF8ZUG6GjyAhmavVevJSaIYsZELHq8PvstxIIfoS7aL97MylU30QaiKJGWggs+ oMGr5RpIKDvRMiv3QP27WPRe2DX6Qlct0MsDfPS9jEscdYBXH35bZfoLmNn2SOhR49QpjukO/uIda /h8zBxyA==; Received: from bruce by momjian.us with local (Exim 4.96) (envelope-from ) id 1sF1NN-002ys3-2P; Wed, 05 Jun 2024 20:53:09 -0400 Date: Wed, 5 Jun 2024 20:53:09 -0400 From: Bruce Momjian To: Dean Rasheed Cc: PostgreSQL-development Subject: Re: First draft of PG 17 release notes Message-ID: References: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="LUzGzel8EXCCGXUR" 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 --LUzGzel8EXCCGXUR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Jun 5, 2024 at 11:46:17PM +0100, Dean Rasheed wrote: > On Thu, 9 May 2024 at 05:03, Bruce Momjian wrote: > > > > I have committed the first draft of the PG 17 release notes; you can > > see the results here: > > > > https://momjian.us/pgsql_docs/release-17.html > > I noticed a couple more things. This item: > > Add functions to convert integers to hex and binary strings > > should read: > > Add functions to convert integers to binary and octal strings > > > The "Improve psql tab completion" item should include this commit: > > Author: Michael Paquier > 2024-05-01 [2800fbb2b] Add tab completion for EXPLAIN (MEMORY|SERIALIZE) > > and credit Jian He. Agreed, attached patch applied. -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com Only you can decide what is important to you. --LUzGzel8EXCCGXUR Content-Type: text/x-diff; charset=utf-8 Content-Disposition: attachment; filename="master.diff" Content-Transfer-Encoding: 8bit diff --git a/doc/src/sgml/release-17.sgml b/doc/src/sgml/release-17.sgml index 1131f2aab51..93bc7408b5b 100644 --- a/doc/src/sgml/release-17.sgml +++ b/doc/src/sgml/release-17.sgml @@ -1685,7 +1685,7 @@ Author: Nathan Bossart -Add functions to convert integers to hex and binary strings (Eric Radman, Nathan Bossart) +Add functions to convert integers to binary and octal strings (Eric Radman, Nathan Bossart) @@ -2000,11 +2000,13 @@ Author: Masahiko Sawada 2024-04-08 [304b6b1a6] Add more tab completion support for ALTER DEFAULT PRIVIL Author: Alexander Korotkov 2024-04-30 [60ae37a8b] Add tab completion for partition MERGE/SPLIT operations +Author: Michael Paquier +2024-05-01 [2800fbb2b] Add tab completion for EXPLAIN (MEMORY|SERIALIZE) --> -Improve psql tab completion (Dagfinn Ilmari Mannsåker, Gilles Darold, Christoph Heiss, Steve Chavez, Vignesh C, Pavel Borisov) +Improve psql tab completion (Dagfinn Ilmari Mannsåker, Gilles Darold, Christoph Heiss, Steve Chavez, Vignesh C, Pavel Borisov, Jian He) --LUzGzel8EXCCGXUR--