Extension-specific version release notes?

Started by PG Bug reporting formover 3 years ago3 messagesdocs
Jump to latest
#1PG Bug reporting form
noreply@postgresql.org

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/14/citext.html
Description:

I'm having difficulty finding version difference information about native
extensions. For instance, I have an instance running citext version 1.1 and
an update command will take it up to 1.6. I was hoping that I'd see some
information about version history specific to the extension on the
extension's documentation page, but I don't see any reference to extension
versioning.

#2Andrew Grossman
agrossman@songtrust.com
In reply to: PG Bug reporting form (#1)
Re: Extension-specific version release notes?

Ah, I see that that information is probably retrievable from the source
code commit info. It might still be helpful to have a version history for
an extension in the docs.

On Tue, Sep 20, 2022 at 2:33 PM PG Doc comments form <noreply@postgresql.org>
wrote:

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/14/citext.html
Description:

I'm having difficulty finding version difference information about native
extensions. For instance, I have an instance running citext version 1.1 and
an update command will take it up to 1.6. I was hoping that I'd see some
information about version history specific to the extension on the
extension's documentation page, but I don't see any reference to extension
versioning.

--

*ANDREW GROSSMAN*
Engineering Manager | SONGTRUST
he | him
| songtrust.com
| agrossman@songtrust.com
[image: FB | Songtrust] <https://www.facebook.com/songtrust/&gt; [image:
Tiktok | Songtrust] <https://www.tiktok.com/@songtrust?lang=en&gt; [image: IG
| Songtrust] <http://instagram.com/songtrust&gt; [image: Linked In | Songtrust]
<https://www.linkedin.com/company/songtrust/&gt; [image: Twitter | Songtrust]
<http://twitter.com/songtrust&gt; [image: Youtube | Songtrust]
<http://youtube.com/songtrust&gt;

#3Tom Lane
tgl@sss.pgh.pa.us
In reply to: Andrew Grossman (#2)
Re: Extension-specific version release notes?

Andrew Grossman <agrossman@songtrust.com> writes:

I'm having difficulty finding version difference information about native
extensions. For instance, I have an instance running citext version 1.1 and
an update command will take it up to 1.6. I was hoping that I'd see some
information about version history specific to the extension on the
extension's documentation page, but I don't see any reference to extension
versioning.

Well, you could always look at the extension delta scripts and see
what they do :-)

Generally speaking, if an extension has actual user-visible feature
changes, those'll be called out in its section of the release notes
for the PG major release where they appeared. However there are
a lot of cases where we bump an extension's version in order to do
some housekeeping that isn't too interesting on its own. For example,
if you look into citext--1.1--1.2.sql you'll discover that that's
mostly just plastering PARALLEL SAFE annotations on most of the
extension's functions, which was housekeeping that we needed after
introducing parallel query in the core code. But it doesn't seem terribly
useful to document such a thing separately for each affected extension.

regards, tom lane