Last-minute updates for release notes.
authorTom Lane
Mon, 7 Aug 2023 16:50:15 +0000 (12:50 -0400)
committerTom Lane
Mon, 7 Aug 2023 16:50:15 +0000 (12:50 -0400)
Security: CVE-2023-39417, CVE-2023-39418

doc/src/sgml/release-14.sgml

index 76102e88aae0d2a82f5b7e4319f0b09c34eb752e..f32f4d5f0d48a7e77c6e06b3caf7835149ca1b7e 100644 (file)
@@ -24,7 +24,7 @@
 
    
     However, if you use BRIN indexes, it may be advisable to reindex them;
-    see the first changelog entry below.
+    see the second changelog entry below.
    
 
    
 
     
 
+     
+      Disallow substituting a schema or owner name into an extension script
+      if the name contains a quote, backslash, or dollar sign (Noah Misch)
+     
+
+     
+      This restriction guards against SQL-injection hazards for trusted
+      extensions.
+     
+
+     
+      The PostgreSQL Project thanks Micah Gate,
+      Valerie Woolard, Tim Carey-Smith, and Christoph Berg for reporting
+      this problem.
+      (CVE-2023-39417)
+     
+    
+
+    
+
+     
+      Don't Memoize lateral joins with volatile join conditions
+      (Richard Guo)
+     
+
+     
+      Applying Memoize to a sub-plan that contains volatile filter
+      conditions is likely to lead to wrong answers.  The check to avoid
+      doing this missed some cases that can arise when
+      using LATERAL.
+     
+    
+
+    
+