Skip to content

Commit

Permalink
chore(rds): add version 10.5.8 of the MariaDB engine (#13531)
Browse files Browse the repository at this point in the history
Fixes #13421
  • Loading branch information
umutc authored Mar 17, 2021
1 parent 39c358a commit ab13c3c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/@aws-cdk/aws-rds/lib/instance-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,11 @@ export class MariaDbEngineVersion {
/** Version "10.4.13". */
public static readonly VER_10_4_13 = MariaDbEngineVersion.of('10.4.13', '10.4');

/** Version "10.5" (only a major version, without a specific minor version). */
public static readonly VER_10_5 = MariaDbEngineVersion.of('10.5', '10.5');
/** Version "10.5.8". */
public static readonly VER_10_5_8 = MariaDbEngineVersion.of('10.5.8', '10.5');

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

0 comments on commit ab13c3c

Please sign in to comment.