Skip to content

Commit

Permalink
chore(rds): support RDS for SQL Server 14.00.3465.1.v1, 13.00.6435.1.…
Browse files Browse the repository at this point in the history
…v1 and 12.00.6449.1.v1 (#28085)

This PR supports minor versions for RDS for SQL Server.

- SQL Server 2014 SP3 CU4 GDR - 12.0.6449.1
- SQL Server 2016 SP3 GDR - 13.0.6435.1
- SQL Server 2017 CU31 GDR - 14.0.3465.1
- (SQL Server 2019 CU23 - 15.0.4335.1)
  - This has already been added to the CDK.

https://aws.amazon.com/about-aws/whats-new/2023/11/amazon-rds-sql-server-supports-minor-versions/?nc1=h_ls

```bash
❯ aws rds describe-db-engine-versions \
∙ --engine sqlserver-ee \
∙ --query "DBEngineVersions[?EngineVersion=='14.00.3465.1.v1'||EngineVersion=='13.00.6435.1.v1'||EngineVersion=='12.00.6449.1.v1'].[DBEngineVersionDescription,EngineVersion,DBParameterGroupFamily,MajorEngineVersion,Status]"

[
    [
        "SQL Server 2014 12.00.6449.1.v1",
        "12.00.6449.1.v1",
        "sqlserver-ee-12.0",
        "12.00",
        "available"
    ],
    [
        "SQL Server 2016 13.00.6435.1.v1",
        "13.00.6435.1.v1",
        "sqlserver-ee-13.0",
        "13.00",
        "available"
    ],
    [
        "SQL Server 2017 14.00.3465.1.v1",
        "14.00.3465.1.v1",
        "sqlserver-ee-14.0",
        "14.00",
        "available"
    ]
]
```

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
go-to-k authored Nov 21, 2023
1 parent 9f64338 commit 986f54c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/aws-cdk-lib/aws-rds/lib/instance-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1849,6 +1849,8 @@ export class SqlServerEngineVersion {
public static readonly VER_12_00_6439_10_V1 = SqlServerEngineVersion.of('12.00.6439.10.v1', '12.00');
/** Version "12.00.6444.4.v1". */
public static readonly VER_12_00_6444_4_V1 = SqlServerEngineVersion.of('12.00.6444.4.v1', '12.00');
/** Version "12.00.6449.1.v1". */
public static readonly VER_12_00_6449_1_V1 = SqlServerEngineVersion.of('12.00.6449.1.v1', '12.00');

/** Version "13.00" (only a major version, without a specific minor version). */
public static readonly VER_13 = SqlServerEngineVersion.of('13.00', '13.00');
Expand Down Expand Up @@ -1884,6 +1886,8 @@ export class SqlServerEngineVersion {
public static readonly VER_13_00_6419_1_V1 = SqlServerEngineVersion.of('13.00.6419.1.v1', '13.00');
/** Version "13.00.6430.49.v1". */
public static readonly VER_13_00_6430_49_V1 = SqlServerEngineVersion.of('13.00.6430.49.v1', '13.00');
/** Version "13.00.6435.1.v1". */
public static readonly VER_13_00_6435_1_V1 = SqlServerEngineVersion.of('13.00.6435.1.v1', '13.00');

/** Version "14.00" (only a major version, without a specific minor version). */
public static readonly VER_14 = SqlServerEngineVersion.of('14.00', '14.00');
Expand Down Expand Up @@ -1918,6 +1922,8 @@ export class SqlServerEngineVersion {
public static readonly VER_14_00_3451_2_V1 = SqlServerEngineVersion.of('14.00.3451.2.v1', '14.00');
/** Version "14.00.3460.9.v1". */
public static readonly VER_14_00_3460_9_V1 = SqlServerEngineVersion.of('14.00.3460.9.v1', '14.00');
/** Version "14.00.3465.1.v1". */
public static readonly VER_14_00_3465_1_V1 = SqlServerEngineVersion.of('14.00.3465.1.v1', '14.00');

/** Version "15.00" (only a major version, without a specific minor version). */
public static readonly VER_15 = SqlServerEngineVersion.of('15.00', '15.00');
Expand Down

0 comments on commit 986f54c

Please sign in to comment.