Skip to content

Commit

Permalink
chore(rds): Aurora Postgres 14.4 deprecated, 14.5 added (#22757)
Browse files Browse the repository at this point in the history
Aurora Postgres 14.4 has been silently deprecated. The upgrade path is `14.3 -> 14.5`

`aws rds describe-db-engine-versions --engine aurora-postgresql`

![justin_justins-mbp___dev_hoverslam_core-network_aws](https://user-images.githubusercontent.com/224840/199680357-a45fcc58-2def-4c6a-9ba2-c107032dc160.png)

![Gamma_and_RDS_Management_Console](https://user-images.githubusercontent.com/224840/199680576-3bf6abc2-0136-4c6a-ad55-c17fd7fbaea5.png)

----

### All Submissions:

* [x] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md)

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
nitsujri committed Nov 3, 2022
1 parent bd056d1 commit 1f50814
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/@aws-cdk/aws-rds/lib/cluster-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -669,8 +669,13 @@ export class AuroraPostgresEngineVersion {
public static readonly VER_13_7 = AuroraPostgresEngineVersion.of('13.7', '13', { s3Import: true, s3Export: true });
/** Version "14.3". */
public static readonly VER_14_3 = AuroraPostgresEngineVersion.of('14.3', '14', { s3Import: true, s3Export: true });
/** Version "14.4". */
/**
* Version "14.4".
* @deprecated Version 14.4 is no longer supported by Amazon RDS.
*/
public static readonly VER_14_4 = AuroraPostgresEngineVersion.of('14.4', '14', { s3Import: true, s3Export: true });
/** Version "14.5". */
public static readonly VER_14_5 = AuroraPostgresEngineVersion.of('14.5', '14', { s3Import: true, s3Export: true });

/**
* Create a new AuroraPostgresEngineVersion with an arbitrary version.
Expand Down

0 comments on commit 1f50814

Please sign in to comment.