doc: update PG 10 release notes for recent changes
authorBruce Momjian
Mon, 15 May 2017 02:45:11 +0000 (22:45 -0400)
committerBruce Momjian
Mon, 15 May 2017 02:45:18 +0000 (22:45 -0400)
doc/src/sgml/release-10.sgml

index 6497641ba6afddb09e5046bac2027ef330ee0038..4f953dc5d64466252cb22aca7a6b48b0978e7280 100644 (file)
      
     
 
+    
+     
+     
+      Rename WAL-related functions and views to use lsn
+      instead of location (David Rowley)
+     
+    
+
+    
+     
+     
+      RenameWAL-related functions and views to use lsn
+      instead of location (David Rowley)
+     
+    
+
     
      
+    
+     Remove the ability to store unencrypted passwords on the server
+     (Heikki Linnakangas)
+    
+
+    
+     The server-side variable 
+     no longer supports off or plain.
+     The UNENCRYPTED option is no longer supported for
+     CREATE/ALTER USER ... PASSSWORD.  Similarly, the
+     
+     The default for 
+     md5, and users migrating passwords from older systems
+     will have them stored encrypted by default in this release.
+    
+    
+
     
      
+      
+       Add function 
+       linkend="libpq-pqencryptpasswordconn">PQencryptPasswordConn()
+       to allow creation of more types of encrypted passwords on the
+       client-side (Michael Paquier, Heikki Linnakangas)
+      
+
+      
+       Previously only MD5 passwords could be created using 
+       linkend="libpq-pqencryptpassword">PQencryptPassword().
+       This new function can also create 
+       linkend="auth-pg-hba-conf">SCRAM-SHA-256 passwords.
+      
+     
+
      
       
       
        Push aggregates to foreign data wrapper servers, where possible
        from the foreign data wrapper server, and offloads
        aggregate computation from the requesting server.  The 
        linkend="postgres-fdw">postgres_fdw is able to
-       perform this optimization.
+       perform this optimization.  There are also improvements in
+       pushing down joins involving extensions.