Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitf4a0b18

Browse files
committed
Release notes for 17.2, 16.6, 15.10, 14.15, 13.18, 12.22.
1 parent07c6e0f commitf4a0b18

File tree

1 file changed

+132
-0
lines changed

1 file changed

+132
-0
lines changed

‎doc/src/sgml/release-13.sgml

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,138 @@
11
<!-- doc/src/sgml/release-13.sgml -->
22
<!-- See header comment in release.sgml about typical markup -->
33

4+
<sect1 id="release-13-18">
5+
<title>Release 13.18</title>
6+
7+
<formalpara>
8+
<title>Release date:</title>
9+
<para>2024-11-21</para>
10+
</formalpara>
11+
12+
<para>
13+
This release contains a few fixes from 13.17.
14+
For information about new features in major release 13, see
15+
<xref linkend="release-13"/>.
16+
</para>
17+
18+
<sect2>
19+
<title>Migration to Version 13.18</title>
20+
21+
<para>
22+
A dump/restore is not required for those running 13.X.
23+
</para>
24+
25+
<para>
26+
However, if you are upgrading from a version earlier than 13.17,
27+
see <xref linkend="release-13-17"/>.
28+
</para>
29+
</sect2>
30+
31+
<sect2>
32+
<title>Changes</title>
33+
34+
<itemizedlist>
35+
36+
<listitem>
37+
<!--
38+
Author: Noah Misch <noah@leadboat.com>
39+
Branch: master [7b88529f4] 2024-11-15 20:39:56 -0800
40+
Branch: REL_17_STABLE [1c05004a8] 2024-11-15 20:39:59 -0800
41+
Branch: REL_16_STABLE [b0918c128] 2024-11-15 20:39:59 -0800
42+
Branch: REL_15_STABLE [edf80895f] 2024-11-15 20:39:59 -0800
43+
Branch: REL_14_STABLE [be062bfa5] 2024-11-15 20:40:00 -0800
44+
Branch: REL_13_STABLE [07c6e0f61] 2024-11-15 20:40:00 -0800
45+
Branch: REL_12_STABLE [c46333865] 2024-11-15 20:40:00 -0800
46+
-->
47+
<para>
48+
Restore functionality of <command>ALTER {ROLE|DATABASE} SET
49+
role</command> (Tom Lane, Noah Misch)
50+
<ulink url="&commit_baseurl;07c6e0f61">&sect;</ulink>
51+
</para>
52+
53+
<para>
54+
The fix for CVE-2024-10978 accidentally caused settings
55+
for <varname>role</varname> to not be applied if they come from
56+
non-interactive sources, including previous <command>ALTER
57+
{ROLE|DATABASE}</command> commands and
58+
the <varname>PGOPTIONS</varname> environment variable.
59+
</para>
60+
</listitem>
61+
62+
<listitem>
63+
<!--
64+
Author: Masahiko Sawada <msawada@postgresql.org>
65+
Branch: master [e5ed873b1] 2024-11-15 17:06:11 -0800
66+
Branch: REL_17_STABLE [568e78a65] 2024-11-15 17:06:08 -0800
67+
Branch: REL_16_STABLE [f35391133] 2024-11-15 17:06:05 -0800
68+
Branch: REL_15_STABLE [91771b3fb] 2024-11-15 17:06:02 -0800
69+
Branch: REL_14_STABLE [26c4e8968] 2024-11-15 17:06:00 -0800
70+
Branch: REL_13_STABLE [15dc1abb1] 2024-11-15 17:05:57 -0800
71+
-->
72+
<para>
73+
Fix cases where a logical replication
74+
slot's <structfield>restart_lsn</structfield> could go backwards
75+
(Masahiko Sawada)
76+
<ulink url="&commit_baseurl;15dc1abb1">&sect;</ulink>
77+
</para>
78+
79+
<para>
80+
Previously, restarting logical replication could sometimes cause the
81+
slot's restart point to be recomputed as an older value than had
82+
previously been advertised
83+
in <structname>pg_replication_slots</structname>. This is bad,
84+
since for example WAL files might have been removed on the basis of
85+
the later <structfield>restart_lsn</structfield> value, in which
86+
case replication would fail to restart.
87+
</para>
88+
</listitem>
89+
90+
<listitem>
91+
<!--
92+
Author: Peter Geoghegan <pg@bowt.ie>
93+
Branch: master [93063e2e4] 2024-11-12 20:57:45 -0500
94+
Branch: REL_17_STABLE [7af6d1306] 2024-11-12 20:57:43 -0500
95+
Branch: REL_16_STABLE [05aac2e83] 2024-11-12 20:57:41 -0500
96+
Branch: REL_15_STABLE [16a2bb079] 2024-11-12 20:57:39 -0500
97+
Branch: REL_14_STABLE [2a30b6836] 2024-11-12 20:57:37 -0500
98+
Branch: REL_13_STABLE [e493ea866] 2024-11-12 20:57:35 -0500
99+
-->
100+
<para>
101+
Count index scans in <filename>contrib/bloom</filename> indexes in
102+
the statistics views, such as the
103+
<structname>pg_stat_user_indexes</structname>.<structfield>idx_scan</structfield>
104+
counter (Masahiro Ikeda)
105+
<ulink url="&commit_baseurl;e493ea866">&sect;</ulink>
106+
</para>
107+
</listitem>
108+
109+
<listitem>
110+
<!--
111+
Author: Alexander Korotkov <akorotkov@postgresql.org>
112+
Branch: master [db22b9002] 2024-11-12 01:44:20 +0200
113+
Branch: REL_17_STABLE [a6fa869cf] 2024-11-12 01:51:20 +0200
114+
Branch: REL_16_STABLE [b242aba02] 2024-11-12 01:53:40 +0200
115+
Branch: REL_15_STABLE [713b8546a] 2024-11-12 01:54:30 +0200
116+
Branch: REL_14_STABLE [247e7647f] 2024-11-12 01:54:35 +0200
117+
Branch: REL_13_STABLE [5411e8213] 2024-11-12 01:54:38 +0200
118+
-->
119+
<para>
120+
Fix crash when checking to see if an index's opclass options have
121+
changed (Alexander Korotkov)
122+
<ulink url="&commit_baseurl;5411e8213">&sect;</ulink>
123+
</para>
124+
125+
<para>
126+
Some forms of <command>ALTER TABLE</command> would fail if the
127+
table has an index with non-default operator class options.
128+
</para>
129+
</listitem>
130+
131+
</itemizedlist>
132+
133+
</sect2>
134+
</sect1>
135+
4136
<sect1 id="release-13-17">
5137
<title>Release 13.17</title>
6138

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp