Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

chore(rds): deprecate PostgreSQL minor versions 13.11, 13.12, 13.13, 13.14, 14.9, 14.10, 14.11, 15.4, 15.5, 15.6, 16.1, 16.2 #33663

Merged
merged 2 commits into from
Mar 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 44 additions & 11 deletions packages/aws-cdk-lib/aws-rds/lib/instance-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1625,11 +1625,20 @@ export class PostgresEngineVersion {
* @deprecated PostgreSQL 13.10 is no longer supported by Amazon RDS.
*/
public static readonly VER_13_10 = PostgresEngineVersion.of('13.10', '13', { s3Import: true, s3Export: true });
/** Version "13.11". */
/**
* Version "13.11".
* @deprecated PostgreSQL 13.11 is no longer supported by Amazon RDS.
*/
public static readonly VER_13_11 = PostgresEngineVersion.of('13.11', '13', { s3Import: true, s3Export: true });
/** Version "13.12". */
/**
* Version "13.12".
* @deprecated PostgreSQL 13.12 is no longer supported by Amazon RDS.
*/
public static readonly VER_13_12 = PostgresEngineVersion.of('13.12', '13', { s3Import: true, s3Export: true });
/** Version "13.13". */
/**
* Version "13.13".
* @deprecated PostgreSQL 13.13 is no longer supported by Amazon RDS.
*/
public static readonly VER_13_13 = PostgresEngineVersion.of('13.13', '13', { s3Import: true, s3Export: true });
/** Version "13.14". */
public static readonly VER_13_14 = PostgresEngineVersion.of('13.14', '13', { s3Import: true, s3Export: true });
Expand Down Expand Up @@ -1688,11 +1697,20 @@ export class PostgresEngineVersion {
* @deprecated PostgreSQL 14.8 is no longer supported by Amazon RDS.
*/
public static readonly VER_14_8 = PostgresEngineVersion.of('14.8', '14', { s3Import: true, s3Export: true });
/** Version "14.9". */
/**
* Version "14.9".
* @deprecated PostgreSQL 14.9 is no longer supported by Amazon RDS.
*/
public static readonly VER_14_9 = PostgresEngineVersion.of('14.9', '14', { s3Import: true, s3Export: true });
/** Version "14.10". */
/**
* Version "14.10".
* @deprecated PostgreSQL 14.10 is no longer supported by Amazon RDS.
*/
public static readonly VER_14_10 = PostgresEngineVersion.of('14.10', '14', { s3Import: true, s3Export: true });
/** Version "14.11". */
/**
* Version "14.11".
* @deprecated PostgreSQL 14.11 is no longer supported by Amazon RDS.
*/
public static readonly VER_14_11 = PostgresEngineVersion.of('14.11', '14', { s3Import: true, s3Export: true });
/** Version "14.12". */
public static readonly VER_14_12 = PostgresEngineVersion.of('14.12', '14', { s3Import: true, s3Export: true });
Expand All @@ -1719,11 +1737,20 @@ export class PostgresEngineVersion {
* @deprecated PostgreSQL 15.3 is no longer supported by Amazon RDS.
*/
public static readonly VER_15_3 = PostgresEngineVersion.of('15.3', '15', { s3Import: true, s3Export: true });
/** Version "15.4". */
/**
* Version "15.4".
* @deprecated PostgreSQL 15.4 is no longer supported by Amazon RDS.
*/
public static readonly VER_15_4 = PostgresEngineVersion.of('15.4', '15', { s3Import: true, s3Export: true });
/** Version "15.5". */
/**
* Version "15.5".
* @deprecated PostgreSQL 15.5 is no longer supported by Amazon RDS
*/
public static readonly VER_15_5 = PostgresEngineVersion.of('15.5', '15', { s3Import: true, s3Export: true });
/** Version "15.6". */
/**
* Version "15.6".
* @deprecated PostgreSQL 15.6 is no longer supported by Amazon RDS
*/
public static readonly VER_15_6 = PostgresEngineVersion.of('15.6', '15', { s3Import: true, s3Export: true });
/** Version "15.7". */
public static readonly VER_15_7 = PostgresEngineVersion.of('15.7', '15', { s3Import: true, s3Export: true });
Expand All @@ -1740,9 +1767,15 @@ export class PostgresEngineVersion {

/** Version "16" (only a major version, without a specific minor version). */
public static readonly VER_16 = PostgresEngineVersion.of('16', '16', { s3Import: true, s3Export: true });
/** Version "16.1". */
/**
* Version "16.1".
* @deprecated PostgreSQL 16.1 is no longer supported by Amazon RDS
*/
public static readonly VER_16_1 = PostgresEngineVersion.of('16.1', '16', { s3Import: true, s3Export: true });
/** Version "16.2". */
/**
* Version "16.2".
* @deprecated PostgreSQL 16.2 is no longer supported by Amazon RDS
*/
public static readonly VER_16_2 = PostgresEngineVersion.of('16.2', '16', { s3Import: true, s3Export: true });
/** Version "16.3". */
public static readonly VER_16_3 = PostgresEngineVersion.of('16.3', '16', { s3Import: true, s3Export: true });
Expand Down