Skip to content

Commit b91e5b4

Browse files
committed
doc: update PG 10 release notes for recent changes
1 parent 7606bbb commit b91e5b4

File tree

1 file changed

+70
-2
lines changed

1 file changed

+70
-2
lines changed

doc/src/sgml/release-10.sgml

+70-2
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,28 @@
126126
</para>
127127
</listitem>
128128

129+
<listitem>
130+
<!--
131+
Author: Tom Lane <tgl@sss.pgh.pa.us> 2017-05-11 [d10c626de] Rename
132+
WAL-related functions and views to use "lsn" not
133+
-->
134+
<para>
135+
Rename <acronym>WAL</>-related functions and views to use <literal>lsn</>
136+
instead of <literal>location</> (David Rowley)
137+
</para>
138+
</listitem>
139+
140+
<listitem>
141+
<!--
142+
Author: Peter Eisentraut <peter_e@gmx.net> 2017-05-12 [c1a7f64b4]
143+
Replace "transaction log" with "write-ahead log"
144+
-->
145+
<para>
146+
Rename<acronym>WAL</>-related functions and views to use <literal>lsn</>
147+
instead of <literal>location</> (David Rowley)
148+
</para>
149+
</listitem>
150+
129151
<listitem>
130152
<!--
131153
Author: Andres Freund <andres@anarazel.de>
@@ -181,6 +203,28 @@
181203
</para>
182204
</listitem>
183205

206+
<listitem>
207+
<!--
208+
Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
209+
2017-05-08 [eb61136dc] Remove support for password_encryption='off' / 'plain'.
210+
-->
211+
<para>
212+
Remove the ability to store unencrypted passwords on the server
213+
(Heikki Linnakangas)
214+
</para>
215+
216+
<para>
217+
The server-side variable <xref linkend="guc-password-encryption">
218+
no longer supports <literal>off</> or <literal>plain</>.
219+
The <literal>UNENCRYPTED</> option is no longer supported for
220+
<command>CREATE/ALTER USER ... PASSSWORD</>. Similarly, the
221+
<option>--unencrypted</> has been removed from <command>createuser</>.
222+
The default for <option>password_encryption</> is still
223+
<literal>md5</>, and users migrating passwords from older systems
224+
will have them stored encrypted by default in this release.
225+
</para>
226+
</listitem>
227+
184228
<listitem>
185229
<!--
186230
Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
@@ -1418,7 +1462,8 @@
14181462
<para>
14191463
Specifically, defaults were changed for <xref
14201464
linkend="guc-wal-level">, <xref linkend="guc-max-wal-senders">,
1421-
and <xref linkend="guc-max-replication-slots">.
1465+
<xref linkend="guc-max-replication-slots">, and <xref
1466+
linkend="guc-hot-standby">.
14221467
</para>
14231468
</listitem>
14241469

@@ -2197,6 +2242,26 @@
21972242
</para>
21982243
</listitem>
21992244

2245+
<listitem>
2246+
<!--
2247+
Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
2248+
2017-05-03 [8f8b9be51] Add PQencryptPasswordConn function to libpq, use it in p
2249+
-->
2250+
<para>
2251+
Add function <link
2252+
linkend="libpq-pqencryptpasswordconn"><function>PQencryptPasswordConn()</></>
2253+
to allow creation of more types of encrypted passwords on the
2254+
client-side (Michael Paquier, Heikki Linnakangas)
2255+
</para>
2256+
2257+
<para>
2258+
Previously only <literal>MD5</> passwords could be created using <link
2259+
linkend="libpq-pqencryptpassword"><function>PQencryptPassword()</></>.
2260+
This new function can also create <link
2261+
linkend="auth-pg-hba-conf"><literal>SCRAM-SHA-256</></> passwords.
2262+
</para>
2263+
</listitem>
2264+
22002265
<listitem>
22012266
<!--
22022267
Author: Tom Lane <tgl@sss.pgh.pa.us>
@@ -2847,6 +2912,8 @@
28472912
<!--
28482913
Author: Robert Haas <rhaas@postgresql.org>
28492914
2016-10-21 [7012b132d] postgres_fdw: Push down aggregates to remote servers.
2915+
Author: Peter Eisentraut <peter_e@gmx.net>
2916+
2017-04-24 [332bec1e6] postgres_fdw: Fix join push down with extensions
28502917
-->
28512918
<para>
28522919
Push aggregates to foreign data wrapper servers, where possible
@@ -2858,7 +2925,8 @@
28582925
from the foreign data wrapper server, and offloads
28592926
aggregate computation from the requesting server. The <link
28602927
linkend="postgres-fdw"><application>postgres_fdw</></> is able to
2861-
perform this optimization.
2928+
perform this optimization. There are also improvements in
2929+
pushing down joins involving extensions.
28622930
</para>
28632931
</listitem>
28642932

0 commit comments

Comments
 (0)