Skip to content

Commit 978382a

Browse files
authored
chore(rds): postgres add 17.7, 16.11, 15.15, 14.20, and 13.23 (#36053)
### Reason for this change https://aws.amazon.com/about-aws/whats-new/2025/11/amazon-rds-postgres-sql-minor-versions/ ### Description of changes Postgres add 17.7, 16.11, 15.15, 14.20, and 13.23 ### Description of how you validated changes ```console $ aws rds describe-db-engine-versions --engine postgres --output table --query 'DBEngineVersions[*].{Engine:Engine,EngineVersion:EngineVersion}' ------------------------------------ | DescribeDBEngineVersions | +-----------+----------------------+ | Engine | EngineVersion | +-----------+----------------------+ ... | postgres | 13.23 | ... | postgres | 14.20 | ... | postgres | 15.15 | ... | postgres | 16.11 | ... | postgres | 17.7 | +-----------+----------------------+ ``` ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 61360ea commit 978382a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

packages/aws-cdk-lib/aws-rds/lib/instance-engine.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1745,6 +1745,8 @@ export class PostgresEngineVersion {
17451745
public static readonly VER_13_21 = PostgresEngineVersion.of('13.21', '13', { s3Import: true, s3Export: true });
17461746
/** Version "13.22". */
17471747
public static readonly VER_13_22 = PostgresEngineVersion.of('13.22', '13', { s3Import: true, s3Export: true });
1748+
/** Version "13.23". */
1749+
public static readonly VER_13_23 = PostgresEngineVersion.of('13.23', '13', { s3Import: true, s3Export: true });
17481750

17491751
/** Version "14" (only a major version, without a specific minor version). */
17501752
public static readonly VER_14 = PostgresEngineVersion.of('14', '14', { s3Import: true, s3Export: true });
@@ -1825,6 +1827,8 @@ export class PostgresEngineVersion {
18251827
public static readonly VER_14_18 = PostgresEngineVersion.of('14.18', '14', { s3Import: true, s3Export: true });
18261828
/** Version "14.19". */
18271829
public static readonly VER_14_19 = PostgresEngineVersion.of('14.19', '14', { s3Import: true, s3Export: true });
1830+
/** Version "14.20". */
1831+
public static readonly VER_14_20 = PostgresEngineVersion.of('14.20', '14', { s3Import: true, s3Export: true });
18281832

18291833
/** Version "15" (only a major version, without a specific minor version). */
18301834
public static readonly VER_15 = PostgresEngineVersion.of('15', '15', { s3Import: true, s3Export: true });
@@ -1875,6 +1879,8 @@ export class PostgresEngineVersion {
18751879
public static readonly VER_15_13 = PostgresEngineVersion.of('15.13', '15', { s3Import: true, s3Export: true });
18761880
/** Version "15.14". */
18771881
public static readonly VER_15_14 = PostgresEngineVersion.of('15.14', '15', { s3Import: true, s3Export: true });
1882+
/** Version "15.15". */
1883+
public static readonly VER_15_15 = PostgresEngineVersion.of('15.15', '15', { s3Import: true, s3Export: true });
18781884

18791885
/** Version "16" (only a major version, without a specific minor version). */
18801886
public static readonly VER_16 = PostgresEngineVersion.of('16', '16', { s3Import: true, s3Export: true });
@@ -1910,6 +1916,8 @@ export class PostgresEngineVersion {
19101916
public static readonly VER_16_9 = PostgresEngineVersion.of('16.9', '16', { s3Import: true, s3Export: true });
19111917
/** Version "16.10" */
19121918
public static readonly VER_16_10 = PostgresEngineVersion.of('16.10', '16', { s3Import: true, s3Export: true });
1919+
/** Version "16.11" */
1920+
public static readonly VER_16_11 = PostgresEngineVersion.of('16.11', '16', { s3Import: true, s3Export: true });
19131921

19141922
/** Version "17" (only a major version, without a specific minor version). */
19151923
public static readonly VER_17 = PostgresEngineVersion.of('17', '17', { s3Import: true, s3Export: true });
@@ -1931,6 +1939,8 @@ export class PostgresEngineVersion {
19311939
public static readonly VER_17_5 = PostgresEngineVersion.of('17.5', '17', { s3Import: true, s3Export: true });
19321940
/** Version "17.6". */
19331941
public static readonly VER_17_6 = PostgresEngineVersion.of('17.6', '17', { s3Import: true, s3Export: true });
1942+
/** Version "17.7". */
1943+
public static readonly VER_17_7 = PostgresEngineVersion.of('17.7', '17', { s3Import: true, s3Export: true });
19341944

19351945
/**
19361946
* Create a new PostgresEngineVersion with an arbitrary version.

0 commit comments

Comments
 (0)