AWS Security ChangesHomeSearch

AWS AmazonRDS medium security documentation change

Service: AmazonRDS · 2025-05-10 · Security-related medium

File: AmazonRDS/latest/AuroraPostgreSQLReleaseNotes/limitless-updates.md

Summary

Added Aurora PostgreSQL Limitless Database version 16.8-limitless with new features, performance enhancements, and bug fixes including fixes for DROP DATABASE hangs, commit log race conditions, and analysis crashes

Security assessment

Bug fixes address critical stability issues: (1) Fixed a race condition in commit log processing causing '_commit time is invalid_' errors (potential data integrity risk), (2) Fixed backend unresponsiveness to system signals (availability impact), and (3) Crashes during automatic table analysis. These improve reliability but are not explicitly tied to security vulnerabilities. The 'strengthened deadlock detection' enhancement improves fault tolerance but lacks direct security context.

Diff

diff --git a/AmazonRDS/latest/AuroraPostgreSQLReleaseNotes/limitless-updates.md b/AmazonRDS/latest/AuroraPostgreSQLReleaseNotes/limitless-updates.md
index 982cb22cd..27a50a695 100644
--- a//AmazonRDS/latest/AuroraPostgreSQLReleaseNotes/limitless-updates.md
+++ b//AmazonRDS/latest/AuroraPostgreSQLReleaseNotes/limitless-updates.md
@@ -5 +5 @@
-Aurora PostgreSQL Limitless Database 16.6-limitlessAurora PostgreSQL Limitless Database 16.4-limitless
+Aurora PostgreSQL Limitless Database 16.8-limitlessAurora PostgreSQL Limitless Database 16.6-limitlessAurora PostgreSQL Limitless Database 16.4-limitless
@@ -16,0 +17,2 @@ Amazon Amazon Aurora PostgreSQL Limitless Database follows the same engine versi
+  * Amazon Aurora PostgreSQL Limitless Database version 16.8-limitless
+
@@ -23,0 +26,56 @@ Amazon Amazon Aurora PostgreSQL Limitless Database follows the same engine versi
+## Amazon Aurora PostgreSQL Limitless Database version 16.8-limitless
+
+This version of Aurora PostgreSQL Limitless Database is compatible with PostgreSQL 16.8. For more information about the improvements in PostgreSQL 16.8, see [PostgreSQL release 16.8](https://www.postgresql.org/docs/16/release-16-8.html).
+
+###### Releases and patches
+
+  * Aurora PostgreSQL Limitless Database 16.8.100, May 8, 2025
+
+
+
+
+### Aurora PostgreSQL Limitless Database 16.8.100, May 8, 2025
+
+**Features**
+
+  * Added support for the `ltree` extension. `ltree` datatype columns cannot be used as shard keys in sharded tables.
+
+  * Added support for the `btree_gist` extension in Aurora PostgreSQL Limitless Database. Exclusion constraints using GIST index are not supported. For example, the following command is not supported: 
+    
+        CREATE TABLE zoo (
+        cage INTEGER,
+        animal TEXT,
+        EXCLUDE USING GIST (cage WITH =, animal WITH <>)
+    );
+
+
+
+
+**Enhancements**
+
+  * Improved query performance in these scenarios:
+
+    * Queries with range clauses.
+
+    * Multiple tuple access with different shard keys from same shard.
+
+    * Delete and update operations involving semi- and anti-joins.
+
+  * Enhanced async foreign scan nodes with prefetch capability.
+
+  * Strengthened deadlock detection fault tolerance.
+
+
+
+
+**Bug fixes**
+
+  * Fixed an issue where database backends stopped responding to system signals, which could cause DROP DATABASE operations to hang.
+
+  * Fixed a race condition in commit log (clog) background processing that causes _commit time is invalid_ errors.
+
+  * Fixed an issue that could cause unexpected crashes during automatic table analysis operations.
+
+
+
+