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

Commit27e48f0

Browse files
committed
Release notes for 17.4, 16.8, 15.12, 14.17, 13.20.
1 parent644b7d6 commit27e48f0

File tree

1 file changed

+104
-0
lines changed

1 file changed

+104
-0
lines changed

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

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

4+
<sect1 id="release-16-8">
5+
<title>Release 16.8</title>
6+
7+
<formalpara>
8+
<title>Release date:</title>
9+
<para>2025-02-20</para>
10+
</formalpara>
11+
12+
<para>
13+
This release contains a few fixes from 16.7.
14+
For information about new features in major release 16, see
15+
<xref linkend="release-16"/>.
16+
</para>
17+
18+
<sect2 id="release-16-8-migration">
19+
<title>Migration to Version 16.8</title>
20+
21+
<para>
22+
A dump/restore is not required for those running 16.X.
23+
</para>
24+
25+
<para>
26+
However, if you are upgrading from a version earlier than 16.5,
27+
see <xref linkend="release-16-5"/>.
28+
</para>
29+
</sect2>
30+
31+
<sect2 id="release-16-8-changes">
32+
<title>Changes</title>
33+
34+
<itemizedlist>
35+
36+
<listitem>
37+
<!--
38+
Author: Andres Freund <andres@anarazel.de>
39+
Branch: master [efdadeb22] 2025-02-14 18:09:19 -0500
40+
Branch: REL_17_STABLE [a92db3d02] 2025-02-14 18:09:21 -0500
41+
Branch: REL_16_STABLE [111f4dd27] 2025-02-14 18:09:23 -0500
42+
Branch: REL_15_STABLE [22ffbbf24] 2025-02-14 18:09:24 -0500
43+
Branch: REL_14_STABLE [985908df1] 2025-02-14 18:09:25 -0500
44+
Branch: REL_13_STABLE [1f7a05324] 2025-02-14 18:09:27 -0500
45+
Author: Tom Lane <tgl@sss.pgh.pa.us>
46+
Branch: master [9f45e6a91] 2025-02-15 16:20:21 -0500
47+
Branch: REL_17_STABLE [3abe6e04c] 2025-02-15 16:20:21 -0500
48+
Branch: REL_16_STABLE [991a60a9f] 2025-02-15 16:20:21 -0500
49+
Branch: REL_15_STABLE [e782a63cc] 2025-02-15 16:20:21 -0500
50+
Branch: REL_14_STABLE [c08309584] 2025-02-15 16:20:21 -0500
51+
Branch: REL_13_STABLE [d6d29b213] 2025-02-15 16:20:21 -0500
52+
Author: Tom Lane <tgl@sss.pgh.pa.us>
53+
Branch: master [a7f95859e] 2025-02-16 12:46:35 -0500
54+
Branch: REL_17_STABLE [3977bd298] 2025-02-16 12:46:35 -0500
55+
Branch: REL_16_STABLE [644b7d686] 2025-02-16 12:46:35 -0500
56+
Branch: REL_15_STABLE [2226a2e26] 2025-02-16 12:46:35 -0500
57+
Branch: REL_14_STABLE [f864a4cdf] 2025-02-16 12:46:35 -0500
58+
Branch: REL_13_STABLE [9f052613e] 2025-02-16 12:46:35 -0500
59+
-->
60+
<para>
61+
Improve behavior of <application>libpq</application>'s quoting
62+
functions (Andres Freund, Tom Lane)
63+
<ulink url="&commit_baseurl;111f4dd27">&sect;</ulink>
64+
<ulink url="&commit_baseurl;991a60a9f">&sect;</ulink>
65+
<ulink url="&commit_baseurl;644b7d686">&sect;</ulink>
66+
</para>
67+
68+
<para>
69+
The changes made for CVE-2025-1094 had one serious oversight:
70+
<function>PQescapeLiteral()</function>
71+
and <function>PQescapeIdentifier()</function> failed to honor their
72+
string length parameter, instead always reading to the input
73+
string's trailing null. This resulted in including unwanted text in
74+
the output, if the caller intended to truncate the string via the
75+
length parameter. With very bad luck it could cause a crash due to
76+
reading off the end of memory.
77+
</para>
78+
79+
<para>
80+
In addition, modify all these quoting functions so that when invalid
81+
encoding is detected, an invalid sequence is substituted for just
82+
the first byte of the presumed character, not all of it. This
83+
reduces the risk of problems if a calling application performs
84+
additional processing on the quoted string.
85+
</para>
86+
</listitem>
87+
88+
<listitem>
89+
<!--
90+
Author: Andres Freund <andres@anarazel.de>
91+
Branch: master [b64d83115] 2025-02-12 08:15:53 -0500
92+
Branch: REL_17_STABLE [c9a1d2135] 2025-02-12 08:15:53 -0500
93+
Branch: REL_16_STABLE [01cdb98e4] 2025-02-12 08:15:54 -0500
94+
-->
95+
<para>
96+
Fix meson build system to correctly detect availability of
97+
the <filename>bsd_auth.h</filename> system header
98+
(Nazir Bilal Yavuz)
99+
<ulink url="&commit_baseurl;01cdb98e4">&sect;</ulink>
100+
</para>
101+
</listitem>
102+
103+
</itemizedlist>
104+
105+
</sect2>
106+
</sect1>
107+
4108
<sect1 id="release-16-7">
5109
<title>Release 16.7</title>
6110

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp