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 1spCjZ-00HOV3-6y for pgsql-hackers@arkaria.postgresql.org; Fri, 13 Sep 2024 20:17:38 +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 1spCjY-00BOkf-Ch for pgsql-hackers@arkaria.postgresql.org; Fri, 13 Sep 2024 20:17:36 +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 1spCjY-00BOi2-0V for pgsql-hackers@lists.postgresql.org; Fri, 13 Sep 2024 20:17:36 +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 1spCjU-0012jh-8l for pgsql-hackers@postgresql.org; Fri, 13 Sep 2024 20:17:35 +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=fiVVrt5J0EolDes4IbhWgqWxLUXeEgqF3pk6kY7ckpg=; b=KAERH5wUg0fMIDqAo9GX9wnZBR mSC3xMlbx18n/Qp7dt6dEtf20hJOMSVGa547P7YPSYpANAWKYH7z1IUuvwJYDqgCGkSDHH2/oFgf7 GywHMX6fIUsI3hUdMuWwFYZAgDR8xdWTYFqC2u26QI+W8LUYPaFSzokahLssQVeKK6ZrEvTeHTqk6 A1OeZAorg+DeVSziZaU6ulEdlv2c9zRjbBDt+wNMjiKWaIP09wfaVrXCcoZVqolmz2MaRCeTmUOJh ip1lFhzCSnE/9ch3vJJEdByjSMdBSxSkbgBMuWAekvFDoTmonBjHDtbJn7jOJNdGOXNFs9lPF+j2U mnqC4Upg==; Received: from bruce by momjian.us with local (Exim 4.96) (envelope-from ) id 1spCjT-000F22-0o; Fri, 13 Sep 2024 16:17:31 -0400 Date: Fri, 13 Sep 2024 16:17:31 -0400 From: Bruce Momjian To: Nathan Bossart Cc: Masahiko Sawada , Jelte Fennema-Nio , Alvaro Herrera , pgsql-hackers@postgresql.org Subject: Re: First draft of PG 17 release notes Message-ID: References: <202409070955.wyuhquqflbxg@alvherre.pgsql> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="JK2MfWdGIdM6lMPk" 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 --JK2MfWdGIdM6lMPk Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Wed, Sep 11, 2024 at 09:36:35AM -0500, Nathan Bossart wrote: > On Wed, Sep 11, 2024 at 10:12:58AM -0400, Bruce Momjian wrote: > > On Tue, Sep 10, 2024 at 09:52:42AM -0700, Masahiko Sawada wrote: > >> On Mon, Sep 9, 2024 at 11:29 PM Jelte Fennema-Nio wrote: > >> > For 1, I think adding them to the release notes makes total sense, > >> > especially if the new APIs are documented not only in source code, but > >> > also on the website. Nathan his change is of this type, so I agree > >> > with him it should be in the release notes. > >> > >> +1. I think that the increment JSON parser that is already mentioned > >> in the release note would fall in this type too; it's not a feature > >> aimed just for extension authors, but it's kind of source and internal > >> changes IMO. Since the DSM registry feature is described in the doc, I > >> think it would make sense to have it in the release notes and probably > >> has a link to the "Requesting Shared Memory After Startup" section. > > > > This commit? > > > > commit 8b2bcf3f287 > > Author: Nathan Bossart > > Date: Fri Jan 19 14:24:36 2024 -0600 > > > > Introduce the dynamic shared memory registry. > > > > Yes, we have time to add it. > > Yes, that's the one. Attached patch applied, with commit URL link. -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com When a patient asks the doctor, "Am I going to die?", he means "Am I going to die soon?" --JK2MfWdGIdM6lMPk Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="REL_17_STABLE.diff" diff --git a/doc/src/sgml/release-17.sgml b/doc/src/sgml/release-17.sgml index 8aed30428bd..36e19bb8329 100644 --- a/doc/src/sgml/release-17.sgml +++ b/doc/src/sgml/release-17.sgml @@ -3011,6 +3011,23 @@ Author: Michael Paquier + + + + + Add dynamic shared memory registry (Nathan Bossart) + § + + + + This allows shared libraries which are not initialized at startup + to coordinate dynamic shared memory access. + + +