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 1s8RkE-00Ci6P-RS for pgsql-hackers@arkaria.postgresql.org; Sat, 18 May 2024 21:37:36 +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 1s8RkE-00AHYd-Lq for pgsql-hackers@arkaria.postgresql.org; Sat, 18 May 2024 21:37:34 +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 1s8RkE-00AHYU-CO for pgsql-hackers@lists.postgresql.org; Sat, 18 May 2024 21:37:34 +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 1s8RkA-000w2b-KW for pgsql-hackers@postgresql.org; Sat, 18 May 2024 21:37:33 +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=PLh0KHc9WCHUBqWft8sEhLipwmOuPbOIOBvpFHJYZzU=; b=ejeDNONhxs2hpg8kd/2aGNHXTe TjNt4KaEsR3Maeh5FaYE1W62iWeH7Bhat17h7oFzmtWZ3q4k61QvZfVsotsbPv/eAHz5SreIqdsFK jBxB7naCE1X1DKuS4E/B4Fsbi1Znsv2Qo69NyTPDIwudNiwZkfMhxoZRzP/WunmqnNNpf/eJkZdOW qZ5GTXlfQMpXrVJHC4mRAPpwZ+/kuug22Nt2WmHWkXTHXrQPm7vrW7kN2sLKYSV4ICjzf3fxKxb5S AQTZjuQNsuWjkJFmsY2hNflaGDVH8xVBogYD/Kq4JbNeJTuAkN9rLfhE/iLJQSE365YlyrwdSfrUV 7/u5Q44Q==; Received: from bruce by momjian.us with local (Exim 4.96) (envelope-from ) id 1s8Rk9-00FvHb-0A; Sat, 18 May 2024 17:37:29 -0400 Date: Sat, 18 May 2024 17:37:29 -0400 From: Bruce Momjian To: jian he Cc: PostgreSQL-development Subject: Re: First draft of PG 17 release notes Message-ID: References: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="R0mLLrOCd6RLDGj2" 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 --R0mLLrOCd6RLDGj2 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Fri, May 17, 2024 at 09:22:59PM +0800, jian he wrote: > On Thu, May 9, 2024 at 12:04 PM 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 > > > > It will be improved until the final release. The item count is 188, > > which is similar to recent releases: > > > > This thread mentioned performance. > actually this[1] refactored some interval aggregation related functions, > which will make these two aggregate function: avg(interval), sum(interval) > run faster, especially avg(interval). > see [2]. > well, I guess, this is a kind of niche performance improvement to be > mentioned separately. > > > these 3 items need to be removed, because of > https://git.postgresql.org/cgit/postgresql.git/commit/?id=8aee330af55d8a759b2b73f5a771d9d34a7b887f > > >> Add stratnum GiST support function (Paul A. Jungwirth) > > >> Allow foreign keys to reference WITHOUT OVERLAPS primary keys (Paul A. Jungwirth) > >> The keyword PERIOD is used for this purpose. > > >> Allow PRIMARY KEY and UNIQUE constraints to use WITHOUT OVERLAPS for non-overlapping exclusion constraints (Paul A. Jungwirth) > > > [1] https://git.postgresql.org/cgit/postgresql.git/commit/?id=519fc1bd9e9d7b408903e44f55f83f6db30742b7 > [2] https://www.postgresql.org/message-id/CAEZATCUJ0xjyQUL7SHKxJ5a%2BDm5pjoq-WO3NtkDLi6c76rh58w%40mail.gmail.com Agreed, I have applied the attached patch to make the release notes current. -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com Only you can decide what is important to you. --R0mLLrOCd6RLDGj2 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="master.diff" diff --git a/doc/src/sgml/release-17.sgml b/doc/src/sgml/release-17.sgml index 9c511848943..0bc1c9a14ad 100644 --- a/doc/src/sgml/release-17.sgml +++ b/doc/src/sgml/release-17.sgml @@ -6,7 +6,7 @@ Release date: - 2024-??-??, AS OF 2024-05-14 + 2024-??-??, AS OF 2024-05-18 @@ -480,17 +480,6 @@ Author: Tomas Vondra Allow BRIN indexes to be created using parallel workers (Tomas Vondra, Matthias van de Meent) - - - - - - -Add stratnum GiST support function (Paul A. Jungwirth) - @@ -1467,34 +1456,6 @@ Add DEFAULT setting for ALTER TABLE .. SET ACCESS METHOD (Michael Paquier) - - - - -Allow foreign keys to reference WITHOUT OVERLAPS primary keys (Paul A. Jungwirth) - - - -The keyword PERIOD is used for this purpose. - - - - - - - -Allow PRIMARY KEY and UNIQUE constraints to use WITHOUT OVERLAPS for non-overlapping exclusion constraints (Paul A. Jungwirth) - - - --R0mLLrOCd6RLDGj2--