

# Document history for the Amazon Aurora DSQL User Guide
<a name="doc-history"></a>

The following table describes the documentation releases for Aurora DSQL.

| Change | Description | Date | 
| --- |--- |--- |
| [New content: extended statistics commands](#doc-history) | Added documentation for the `CREATE STATISTICS`, `ALTER STATISTICS`, and `DROP STATISTICS` commands in Aurora DSQL. You can create extended statistics to give the query planner more accurate row estimates for correlated columns and expressions. For more information, see [CREATE STATISTICS](https://docs.aws.amazon.com/aurora-dsql/latest/userguide/create-statistics-syntax-support.html), [ALTER STATISTICS](https://docs.aws.amazon.com/aurora-dsql/latest/userguide/alter-statistics-syntax-support.html), and [DROP STATISTICS](https://docs.aws.amazon.com/aurora-dsql/latest/userguide/drop-statistics-syntax-support.html). | August 27, 2026 | 
| [Updated content: Compression for character data types](#doc-history) | Aurora DSQL now compresses large values in `text`, `varchar`, and `bpchar` columns that aren't part of a key. For more information, see [Supported data types in Aurora DSQL](working-with-postgresql-compatibility-supported-data-types.html). | August 26, 2026 | 
| [New content: foreign key constraints](#doc-history) | Added documentation for foreign key constraints in Aurora DSQL. You can define foreign key constraints when you create a table, or add them to an existing table with `ALTER TABLE ... ADD CONSTRAINT ... NOT VALID`. You can then validate existing data with `VALIDATE CONSTRAINT`. Updated [CREATE TABLE](https://docs.aws.amazon.com/aurora-dsql/latest/userguide/create-table-syntax-support.html), [ALTER TABLE](https://docs.aws.amazon.com/aurora-dsql/latest/userguide/alter-table-syntax-support.html), and added a new [SET CONSTRAINTS](https://docs.aws.amazon.com/aurora-dsql/latest/userguide/set-constraints-syntax-support.html) reference. For more information, see [Working with foreign key constraints](https://docs.aws.amazon.com/aurora-dsql/latest/userguide/working-with-foreign-key-constraints.html). | August 26, 2026 | 
| [New content: Drizzle ORM adapter](#doc-history) | Added support for Drizzle ORM, a TypeScript object-relational mapping (ORM) framework for Node.js. With the Aurora DSQL Adapter for Drizzle ORM, you can use Drizzle ORM with Aurora DSQL clusters. For more information, see [Aurora DSQL adapters and dialects](aws-sdks.html#aurora-dsql-adapters). | August 26, 2026 | 
| [Updated numeric data type precision and scale limits](#doc-history) | Updated precision and scale limits for `numeric` data type in Aurora DSQL to 1000. For more information, see [Supported data types in Aurora DSQL](https://docs.aws.amazon.com/aurora-dsql/latest/userguide/working-with-postgresql-compatibility-supported-data-types.html#numeric-data-types)  | August 25, 2026 | 
| [New content: `SELECT FOR KEY SHARE` and concurrency control](#doc-history) | Added documentation for the `SELECT ... FOR KEY SHARE` clause and a new [Data conflict types](https://docs.aws.amazon.com/aurora-dsql/latest/userguide/working-with-concurrency-control.html#dsql-data-conflicts) section that explains how Aurora DSQL detects conflicts between `SELECT ... FOR UPDATE` and `SELECT ... FOR KEY SHARE` reads and concurrent writes at commit time. For more information, see [Concurrency control in Aurora DSQL](https://docs.aws.amazon.com/aurora-dsql/latest/userguide/working-with-concurrency-control.html). | August 25, 2026 | 
| [Updated `SELECT FOR UPDATE` documentation](#doc-history) | The `SELECT ... FOR UPDATE` entry now reflects support for broader query patterns. For more information, see [Supported SQL](https://docs.aws.amazon.com/aurora-dsql/latest/userguide/working-with-postgresql-compatibility-supported-sql-features.html#dsql-select). | August 24, 2026 | 
| [Updated SQL reference](#doc-history) | Updated the supported SQL overview to include `ALTER DEFAULT PRIVILEGES`, `CREATE SCHEMA`, role rename operations, and routine management commands. Also updated the `CREATE INDEX` entry to describe expression indexes and other supported clauses. For more information, see [Supported SQL for Aurora DSQL](https://docs.aws.amazon.com/aurora-dsql/latest/userguide/working-with-postgresql-compatibility-supported-sql-features.html). | August 20, 2026 | 
| [New content: Monitoring Aurora DSQL clusters with Aurora DSQL Database Insights](#doc-history) | Added documentation for Aurora DSQL database insights, which samples active sessions on Aurora DSQL cluster to help customers understand database load by wait event and SQL statement, and describes how to access this data through Amazon CloudWatch Database Insights and Prometheus Query Language (PromQL). Added troubleshooting guidance for clusters that don't appear in the CloudWatch Database Insights console. For more information, see [Monitoring Aurora DSQL clusters with Aurora DSQL Database Insights](dsql-db-insights.html) and [Troubleshooting missing metrics from the Amazon CloudWatch Database Insights console](troubleshooting.html#troubleshooting-database-insights). | August 17, 2026 | 
| [Updated content: Reorganized CREATE INDEX documentation](#doc-history) | Moved the `CREATE INDEX` syntax and parameter reference to a new [CREATE INDEX](create-index-syntax-support.html) page alongside the other supported subsets of SQL commands. The [Asynchronous indexes in Aurora DSQL](working-with-create-index-async.html) page now focuses on asynchronous build behavior, job monitoring, and examples, and links to the new page for syntax and parameters. | August 13, 2026 | 
| [New content: Indexes on expressions](#doc-history) | Added documentation for indexes on expressions. An index key can be an expression computed from one or more columns of the table row, such as `lower(title)`, which gives fast access to data based on a transformation of the underlying values. All functions and operators used in an index definition must be immutable. Expressions aren't supported as `INCLUDE` columns. For more information, see [CREATE INDEX](create-index-syntax-support.html). | August 13, 2026 | 
| [New content: ALTER TABLE DROP COLUMN](#doc-history) | Added documentation for `ALTER TABLE ... DROP COLUMN`, which removes a column from an existing table without requiring table recreation. You can drop multiple columns in a single statement. Dropping a primary key column isn't supported. For more information, see [ALTER TABLE](alter-table-syntax-support.html). | August 3, 2026 | 
| [New content: ALTER TABLE ADD CONSTRAINT and VALIDATE CONSTRAINT](#doc-history) | Added support for `ALTER TABLE ... ADD CONSTRAINT ... NOT VALID` to add `CHECK` constraints without validating existing data, and `ALTER TABLE ASYNC ... VALIDATE CONSTRAINT` to validate existing data against constraints later. The validation runs as an asynchronous DDL job. This allows adding constraints to large tables without blocking concurrent operations. For more information, see [ALTER TABLE](alter-table-syntax-support.html). | August 3, 2026 | 
| [Updated content: CDC streams generally available](#doc-history) | CDC streams are now generally available. This release adds distinct `op` codes for inserts and updates, and a new [Write-set compaction](cdc-record-format.html#cdc-write-set-compaction) section with compaction rules. For more information, see [CDC streams](cdc-streams.html). | July 1, 2026 | 
| [New content: JSONB data type](#doc-history) | Added documentation for the `jsonb` data type in Aurora DSQL, including automatic compression behavior, the 1 MiB compressed size limit, and supported JSONB operators. Updated the query runtime data types section to reflect that `jsonb` is now available as a native storage type. For more information, see [Supported data types in Aurora DSQL](working-with-postgresql-compatibility-supported-data-types.html). | June 5, 2026 | 
| [New content: Change data capture (CDC) streams](#doc-history) | Added documentation for Aurora DSQL change data capture (CDC) streams, which capture committed row-level changes and deliver them to Amazon Kinesis Data Streams. For more information, see [Change data capture (CDC) streams](https://docs.aws.amazon.com/aurora-dsql/latest/userguide/cdc-streams.html). | May 13, 2026 | 
| [New content: STORAGE keyword support in CREATE TABLE and ALTER TABLE](#doc-history) | Added documentation for the `STORAGE` clause in `CREATE TABLE` and `ALTER TABLE`, which sets the storage mode (`PLAIN`, `EXTERNAL`, `EXTENDED`, `MAIN`, or `DEFAULT`) for a column. This can be used to control compression behavior for variable-length data types such as `json`. For more information, see [CREATE TABLE](sql-command-create-table.html) and [ALTER TABLE](alter-table-syntax-support.html). | May 1, 2026 | 
| [New content: JSON data type](#doc-history) | Added documentation for the `json` data type in Aurora DSQL, including automatic compression behavior, the 1 MiB compressed size limit, and supported JSON functions and operators. Updated the JSONB runtime type guidance to reflect the availability of native `json` storage. For more information, see [Supported data types in Aurora DSQL](working-with-postgresql-compatibility-supported-data-types.html). | May 1, 2026 | 
| [New content: ALTER TABLE ADD CONSTRAINT USING INDEX](#doc-history) | Added documentation for `ALTER TABLE ... ADD {{table_constraint_using_index}}`, which adds a `UNIQUE` constraint to a table based on an existing unique index. For more information, see [ALTER TABLE](alter-table-syntax-support.html). | April 20, 2026 | 
| [New content: Aurora DSQL Connector for PHP `PDO_PGSQL`](#doc-history) | Added documentation for the Aurora DSQL Connector for PHP `PDO_PGSQL`, which wraps `PDO_PGSQL` with automatic IAM authentication. The connector handles token generation, SSL configuration, and connection management for PHP applications. For more information, see [Connecting to Aurora DSQL clusters with a PHP connector](SECTION_program-with-dsql-connector-for-php-pdo-pgsql.html). | April 10, 2026 | 
| [New content: Aurora DSQL Connector for Rust `SQLx`](#doc-history) | Added documentation for the Aurora DSQL Connector for Rust `SQLx`, which wraps `SQLx` with automatic IAM authentication. The connector handles token generation, SSL configuration, and connection management for Rust applications. For more information, see [Connecting to Aurora DSQL clusters with a Rust connector](SECTION_program-with-dsql-connector-for-rust-sqlx.html). | March 27, 2026 | 
| [New content: Aurora DSQL Connector for .NET Npgsql](#doc-history) | Added documentation for the Aurora DSQL Connector for .NET Npgsql, which wraps Npgsql with automatic IAM authentication. The connector handles token generation, SSL configuration, and connection management for .NET applications. For more information, see [Connecting to Aurora DSQL clusters with a .NET Npgsql connector](SECTION_program-with-dsql-connector-for-dotnet-npgsql.html). | March 20, 2026 | 
| [Updated content: SQL command reference and system queries](#doc-history) | Added START TRANSACTION and ROLLBACK to the transaction control commands reference, with END and ABORT as aliases. Added useful system queries for retrieving Aurora DSQL and PostgreSQL version information. For more information, see [PostgreSQL compatibility reference](CHAP_working-with.html). | March 13, 2026 | 
| [Updated content: Loading data into Aurora DSQL](#doc-history) | Updated the data loading guide with client-side `\copy` usage, INSERT best practices, and guidance for pre-creating tables before loading. For more information, see [Loading data into Aurora DSQL](loading-data.html). | March 13, 2026 | 
| [New content: Aurora DSQL Connector for Ruby pg](#doc-history) | Added documentation for the Aurora DSQL Connector for Ruby pg, which wraps the pg gem with automatic IAM authentication. The connector handles token generation, SSL configuration, and connection management for Ruby applications. For more information, see [Connecting to Aurora DSQL clusters with a Ruby pg connector](SECTION_program-with-dsql-connector-for-ruby-pg.html). | March 12, 2026 | 
| [Updated content: Asynchronous DDL jobs](#doc-history) | Updated the `sys.jobs` documentation with expanded details on monitoring and managing asynchronous DDL operations. For more information, see [PostgreSQL compatibility reference](CHAP_working-with.html). | March 6, 2026 | 
| [Updated content: PHP authentication token generation](#doc-history) | Added a PHP SDK tab to the authentication token generation page. For more information, see [Generating authentication tokens](SECTION_auth-token.html). | March 5, 2026 | 
| [New content: Loading data into Aurora DSQL](#doc-history) | Added a guide for loading data into Aurora DSQL clusters, including usage of the Aurora DSQL loader utility. For more information, see [Loading data into Aurora DSQL](loading-data.html). | March 5, 2026 | 
| [New content: Sequences and identity columns](#doc-history) | Added support for sequences and identity columns. New SQL command reference pages for CREATE SEQUENCE, ALTER SEQUENCE, DROP SEQUENCE, and sequence manipulation functions. Updated CREATE TABLE and ALTER TABLE to include identity column syntax. Added a new guide for choosing identifier types and cache sizes. For more information, see [Sequences and identity columns](sequences-identity-columns.html). | February 11, 2026 | 
| [New content: Aurora DSQL Connector for Go](#doc-history) | Added documentation for the Aurora DSQL Connector for Go, which wraps pgx with automatic IAM authentication. The connector handles token generation, SSL configuration, and connection management for Go applications. For more information, see [Connecting to Aurora DSQL clusters with a Go connector](SECTION_program-with-go-pgx-connector.html). | February 5, 2026 | 
| [Updated content: Amazon Aurora DSQL cluster connectivity tools](#doc-history) | Reorganized the cluster connectivity tools documentation to clarify the distinction between AWS-provided connectors, adapters, and third-party tools. Added missing links to code samples. For more information, see [Amazon Aurora DSQL cluster connectivity tools](aws-sdks.html). | January 26, 2026 | 
| [New content: Aurora DSQL Plugin for DBeaver Community Edition](#doc-history) | Added documentation for the Aurora DSQL Plugin for DBeaver Community Edition, which enables IAM authentication and simplified connection setup for Aurora DSQL clusters. Includes installation instructions, connection configuration, and troubleshooting guidance. For more information, see [Use DBeaver to access Aurora DSQL](accessing-dbeaver.html). | January 26, 2026 | 
| [New content: Aurora DSQL Driver for SQLTools](#doc-history) | Added documentation for the Aurora DSQL Driver for SQLTools, a Visual Studio Code extension that enables developers to connect to and query Aurora DSQL databases directly from VS Code with automatic IAM authentication. For more information, see [Use Aurora DSQL driver for SQLTools](accessing-vscode.html). | January 26, 2026 | 
| [Updated content: Aurora DSQL Steering: Skills and Powers](#doc-history) | Added documentation to support installation using the Skills CLI for agent-agnostic support. The Skills CLI provides a simplified setup method that works across multiple AI coding assistants including Claude Code, Cursor, Copilot, Gemini, and others. For more information, see [Aurora DSQL Steering: Skills and Powers](SECTION_aurora-dsql-steering.html). | January 23, 2026 | 
| [New content: Aurora DSQL Adapter for Tortoise ORM](#doc-history) | Added support for Tortoise ORM, a Python async ORM framework. The Aurora DSQL Adapter for Tortoise ORM enables developers to use Tortoise ORM with Aurora DSQL clusters. For more information, see [Aurora DSQL adapters and dialects](aws-sdks.html#orm-libraries). | January 23, 2026 | 
| [New content: Aurora DSQL Steering: Skills and Powers](#doc-history) | Added new documentation for configuring AI steering with Aurora DSQL using skills and powers. Includes setup instructions for Kiro Powers, Claude Skills, Gemini Skills, and Codex Skills. For more information, see [Aurora DSQL Steering: Skills and Powers](SECTION_aurora-dsql-steering.html). | January 16, 2026 | 
| [Numeric data type index support](#doc-history) | Added index support for the `numeric` data type in Aurora DSQL. You can now use `numeric` columns as primary keys and in secondary indexes. For more information, see [Supported data types in Aurora DSQL](working-with-postgresql-compatibility-supported-data-types.html#numeric-data-types). | January 13, 2026 | 
| [Updated content: Supported subsets of SQL commands](#doc-history) | Reorganized SQL command documentation into separate pages for improved navigation and clarity. Each command (CREATE TABLE, ALTER TABLE, CREATE VIEW, ALTER VIEW, DROP VIEW) now has its own dedicated page. For more information, see [Supported subsets of SQL commands](working-with-postgresql-compatibility-supported-sql-subsets.html). | January 6, 2026 | 
| [Updated content: AWS Labs Aurora DSQL MCP Server](#doc-history) | Updated the MCP Server documentation with detailed installation approaches for Claude Code and Codex, including CLI-based setup and configuration file examples. Added comprehensive guidance for finding MCP client configuration files across different development tools. For more information, see [AWS Labs Aurora DSQL MCP Server](SECTION_aurora-dsql-mcp-server.html). | December 19, 2025 | 
| [Updated content: Migrating from PostgreSQL to Aurora DSQL](#doc-history) | Redrafted the PostgreSQL compatibility section as a comprehensive migration guide. Includes framework compatibility information, common migration patterns, architectural differences, and AI-assisted migration guidance. Added new chapter for providing feedback on Aurora DSQL. For more information, see [Migrating from PostgreSQL to Aurora DSQL](working-with-postgresql-compatibility-migration-guide.html). | December 16, 2025 | 
| [Updated content: Connecting to Aurora DSQL using AWS PrivateLink](#doc-history) | Added documentation for private DNS setup and the cluster ID connection option to support customers using AWS PrivateLink with Direct Connect or Amazon VPC peering. Includes guidance for connecting without private DNS using the `amzn-cluster-id` connection option. For more information, see [Managing and connecting to Aurora DSQL clusters using AWS PrivateLink](privatelink-managing-clusters.html). | December 11, 2025 | 
| [Updated content: Aurora DSQL cluster lifecycle](#doc-history) | Updated documentation for Aurora DSQL cluster lifecycle management. Explains cluster status definitions, state transitions, and operations available during Idle and Inactive states. For more information, see [Aurora DSQL cluster lifecycle](cluster-lifecycle.html). | December 4, 2025 | 
| [New content: Aurora DSQL connectors for Python and Node.js](#doc-history) | Added documentation for Aurora DSQL connectors for Python (psycopg, psycopg2, asyncpg) and Node.js (node-postgres, Postgres.js). These connectors integrate IAM authentication for connecting applications to Aurora DSQL clusters. For more information, see [Aurora DSQL connectors](SECTION_connectors.html). | November 21, 2025 | 
| [New content: Using JupyterLab with Aurora DSQL](#doc-history) | Added step-by-step guide for connecting and querying Aurora DSQL using JupyterLab with Python. Includes instructions for both local JupyterLab installations and Amazon SageMaker AI environments. For more information, see [Using JupyterLab with Aurora DSQL](SECTION_program-with-jupyter.html). | November 20, 2025 | 
| [Updated content: Quotas for Aurora DSQL](#doc-history) | Updated maximum cluster storage quota from 128 TiB to 256 TiB. For more information, see [Quotas for Aurora DSQL](CHAP_quotas.html). | November 19, 2025 | 
| [New content: Getting started with the Aurora DSQL Query Editor](#doc-history) | Added documentation for using the Aurora DSQL Query Editor in the AWS Management Console. Includes prerequisites, connection setup, and query execution instructions. For more information, see [Getting started with the Aurora DSQL Query Editor](getting-started-query-editor.html). | November 18, 2025 | 
| [Resource-based policy support for Amazon Aurora DSQL](#doc-history) | Added resource-based policy (RBP) support with new permissions: `PutClusterPolicy`, `GetClusterPolicy`, and `DeleteClusterPolicy`. These permissions allow managing inline policies attached to Aurora DSQL clusters for fine-grained access control. Updated managed policies AmazonAuroraDSQLFullAccess, AmazonAuroraDSQLReadOnlyAccess, and AmazonAuroraDSQLConsoleFullAccess to include RBP capabilities. For more information, see [AWS managed policies for Amazon Aurora DSQL](security-iam-awsmanpol.html). | October 15, 2025 | 
| [Aurora DSQL JDBC Connector](#doc-history) | Added documentation for the Aurora DSQL JDBC Connector, a PgJDBC connector that integrates IAM Authentication for connecting Java applications to Amazon Aurora DSQL clusters. For more information, see [Connecting to Aurora DSQL clusters with a JDBC connector](SECTION_program-with-jdbc-connector.html). | September 2, 2025 | 
| [AWS managed policy updates for AWS FIS integration](#doc-history) | Updated `AmazonAuroraDSQLFullAccess` and `AmazonAuroraDSQLConsoleFullAccess` policies to support AWS Fault Injection Service integration with Aurora DSQL. This allows you to inject failures into single-Region and multi-Region Aurora DSQL clusters to test fault tolerance of your applications. For more on these policies, see [AWS managed policy updates](security-iam-awsmanpol.html#security-iam-awsmanpol-updates). | August 19, 2025 | 
| [General availability (GA) of Amazon Aurora DSQL](#doc-history) | Amazon Aurora DSQL is now generally available with added support for CloudWatch monitoring, enhanced data protection features, and AWS Backup integration. For more information, see [Monitoring Aurora DSQL with CloudWatch](cloudwatch-monitoring.html), [Backup and restore for Amazon Aurora DSQL](backup-aurora-dsql.html), and [Data encryption for Amazon Aurora DSQL](data-encryption.html). | May 27, 2025 | 
| [AmazonAuroraDSQLFullAccess update](#doc-history) | Adds the capability to perform backup and restore operations for Aurora DSQL clusters, including starting, stopping, and monitoring jobs. It also adds the capability to use customer-managed KMS keys for cluster encryption. For more information, see [AmazonAuroraDSQLFullAccess](security-iam-awsmanpol.html#security-iam-awsmanpol-AmazonAuroraDSQLFullAccess) and [Using service-linked roles in Aurora DSQL ](working-with-service-linked-roles.html). | May 21, 2025 | 
| [AmazonAuroraDSQLConsoleFullAccess update](#doc-history) | Adds the capability to perform backup and restore operations for Aurora DSQL clusters through the AWS Console Home. This includes starting, stopping, and monitoring jobs. It also supports using customer-managed KMS keys for cluster encryption and launching AWS CloudShell. For more information, see [AmazonAuroraDSQLConsoleFullAccess](security-iam-awsmanpol.html#security-iam-awsmanpol-AmazonAuroraDSQLConsoleFullAccess) and [Using service-linked roles in Aurora DSQL](working-with-service-linked-roles.html). | May 21, 2025 | 
| [AmazonAuroraDSQLReadOnlyAccess update](#doc-history) | Includes the ability to determine the correct VPC endpoint service name when connecting to your Aurora DSQL clusters through AWS PrivateLink Aurora DSQL creates unique endpoints per cell, so this API helps ensure you can identify the correct endpoint for your cluster and avoid connection errors. For more information, see [AmazonAuroraDSQLReadOnlyAccess](security-iam-awsmanpol.html#security-iam-awsmanpol-AmazonAuroraDSQLReadOnlyAccess) and [Using service-linked roles in Aurora DSQL ](working-with-service-linked-roles.html).  | May 13, 2025 | 
| [AmazonAuroraDSQLFullAccess update](#doc-history) | The policy adds four new permissions to create and manage database clusters across multiple AWS Regions: `PutMultiRegionProperties`, `PutWitnessRegion`, `AddPeerCluster`, and `RemovePeerCluster`. These permissions include resource-level controls and condition keys so you can control which clusters users you can modify. The policy also adds the `GetVpcEndpointServiceName` permission to help you connect to your Aurora DSQL clusters through AWS PrivateLink. For more information, see [AmazonAuroraDSQLConsoleFullAccess](security-iam-awsmanpol.html#security-iam-awsmanpol-AmazonAuroraDSQLConsoleFullAccess) and [Using service-linked roles in Aurora DSQL](working-with-service-linked-roles.html). | May 13, 2025 | 
| [AmazonAuroraDSQLConsoleFullAccess update](#doc-history) |  Adds new permissions to Aurora DSQL to support multi-Region cluster management and VPC endpoint connection. The new permissions include: `PutMultiRegionProperties` `PutWitnessRegion` `AddPeerCluster` `RemovePeerCluster` `GetVpcEndpointServiceName`. See [AmazonAuroraDSQLConsoleFullAccess](security-iam-awsmanpol.html#security-iam-awsmanpol-AmazonAuroraDSQLConsoleFullAccess) and [Using service-linked roles in Aurora DSQL](working-with-service-linked-roles.html). | May 13, 2025 | 
| [AuroraDsqlServiceLinkedRolePolicy update](#doc-history) | Adds the ability to publish metrics to the `AWS/AuroraDSQL` and `AWS/Usage CloudWatch` namespaces to the policy. This allows the associated service or role to emit more comprehensive usage and performance data to your CloudWatch environment. For more information, see [AuroraDsqlServiceLinkedRolePolicy](security-iam-awsmanpol.html#security-iam-awsmanpol-AuroraDSQLServiceRolePolicy) and [Using service-linked roles in Aurora DSQL](working-with-service-linked-roles.html). | May 8, 2025 | 
| [AWS PrivateLink for Amazon Aurora DSQL](#doc-history) | Aurora DSQL now supports AWS PrivateLink. With AWS PrivateLink, you can simplify private network connectivity between virtual private clouds (VPCs), Aurora DSQL, and your on-premises data centers using interface Amazon VPC endpoints and private IP addresses. For more information, see [Managing and connecting to Amazon Aurora DSQL clusters using AWS PrivateLink](privatelink-managing-clusters.html). | May 8, 2025 | 
| [Initial release](#doc-history) | Initial release of the Amazon Aurora DSQL User Guide. | December 3, 2024 | 