Skip to content

Commit

Permalink
chore: update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nmussy committed Jun 25, 2024
1 parent 2959529 commit 185f93d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
2 changes: 2 additions & 0 deletions packages/aws-cdk-lib/aws-rds/lib/cluster-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -609,6 +609,8 @@ export class AuroraMysqlEngineVersion {
public static readonly VER_3_05_2 = AuroraMysqlEngineVersion.builtIn_8_0('3.05.2');
/** Version "8.0.mysql_aurora.3.06.0". */
public static readonly VER_3_06_0 = AuroraMysqlEngineVersion.builtIn_8_0('3.06.0');
/** Version "8.0.mysql_aurora.3.06.1". */
public static readonly VER_3_06_1 = AuroraMysqlEngineVersion.builtIn_8_0('3.06.1');
/** Version "8.0.mysql_aurora.3.07.0". */
public static readonly VER_3_07_0 = AuroraMysqlEngineVersion.builtIn_8_0('3.07.0');

Expand Down
16 changes: 12 additions & 4 deletions packages/aws-cdk-lib/aws-rds/lib/instance-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -839,6 +839,8 @@ export class MysqlEngineVersion {
public static readonly VER_5_7_44 = MysqlEngineVersion.of('5.7.44', '5.7');
/** Version "5.7.44-rds.20240408". */
public static readonly VER_5_7_44_RDS_20240408 = MysqlEngineVersion.of('5.7.44-rds.20240408', '5.7');
/** Version "5.7.44-rds.20240529". */
public static readonly VER_5_7_44_RDS_20240529 = MysqlEngineVersion.of('5.7.44-rds.20240529', '5.7');

/** Version "8.0" (only a major version, without a specific minor version). */
public static readonly VER_8_0 = MysqlEngineVersion.of('8.0', '8.0');
Expand Down Expand Up @@ -1390,10 +1392,6 @@ export class PostgresEngineVersion {
* @deprecated PostgreSQL 11.12 is no longer supported by Amazon RDS.
*/
public static readonly VER_11_12 = PostgresEngineVersion.of('11.12', '11', { s3Import: true, s3Export: true });
/**
* Version "11.12-rds.20240418"
*/
public static readonly VER_11_12_RDS_20240418 = PostgresEngineVersion.of('11.12-rds.20240418', '11', { s3Import: true, s3Export: true });
/**
* Version "11.13"
* @deprecated PostgreSQL 11.13 is no longer supported by Amazon RDS.
Expand Down Expand Up @@ -1441,6 +1439,14 @@ export class PostgresEngineVersion {
public static readonly VER_11_21 = PostgresEngineVersion.of('11.21', '11', { s3Import: true, s3Export: true });
/** Version "11.22". */
public static readonly VER_11_22 = PostgresEngineVersion.of('11.22', '11', { s3Import: true, s3Export: true });
/**
* Version "11.22-rds.20240418"
*/
public static readonly VER_11_22_RDS_20240418 = PostgresEngineVersion.of('11.22-rds.20240418', '11', { s3Import: true, s3Export: true });
/**
* Version "11.22-rds.20240509"
*/
public static readonly VER_11_22_RDS_20240509 = PostgresEngineVersion.of('11.22-rds.20240509', '11', { s3Import: true, s3Export: true });

/** Version "12" (only a major version, without a specific minor version). */
public static readonly VER_12 = PostgresEngineVersion.of('12', '12', { s3Import: true });
Expand Down Expand Up @@ -2637,6 +2643,8 @@ export class SqlServerEngineVersion {
public static readonly VER_16_00_4115_5_V1 = SqlServerEngineVersion.of('16.00.4115.5.v1', '16.00');
/** Version "16.00.4120.1.v1". */
public static readonly VER_16_00_4120_1_V1 = SqlServerEngineVersion.of('16.00.4120.1.v1', '16.00');
/** Version "16.00.4125.3.v1". */
public static readonly VER_16_00_4125_3_V1 = SqlServerEngineVersion.of('16.00.4125.3.v1', '16.00');

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

0 comments on commit 185f93d

Please sign in to comment.