@@ -1545,6 +1545,8 @@ export class PostgresEngineVersion {
1545
1545
public static readonly VER_12_19 = PostgresEngineVersion . of ( '12.19' , '12' , { s3Import : true , s3Export : true } ) ;
1546
1546
/** Version "12.20". */
1547
1547
public static readonly VER_12_20 = PostgresEngineVersion . of ( '12.20' , '12' , { s3Import : true , s3Export : true } ) ;
1548
+ /** Version "12.21". */
1549
+ public static readonly VER_12_21 = PostgresEngineVersion . of ( '12.21' , '12' , { s3Import : true , s3Export : true } ) ;
1548
1550
1549
1551
/** Version "13" (only a major version, without a specific minor version). */
1550
1552
public static readonly VER_13 = PostgresEngineVersion . of ( '13' , '13' , { s3Import : true , s3Export : true } ) ;
@@ -1610,6 +1612,8 @@ export class PostgresEngineVersion {
1610
1612
public static readonly VER_13_15 = PostgresEngineVersion . of ( '13.15' , '13' , { s3Import : true , s3Export : true } ) ;
1611
1613
/** Version "13.16". */
1612
1614
public static readonly VER_13_16 = PostgresEngineVersion . of ( '13.16' , '13' , { s3Import : true , s3Export : true } ) ;
1615
+ /** Version "13.17". */
1616
+ public static readonly VER_13_17 = PostgresEngineVersion . of ( '13.17' , '13' , { s3Import : true , s3Export : true } ) ;
1613
1617
1614
1618
/** Version "14" (only a major version, without a specific minor version). */
1615
1619
public static readonly VER_14 = PostgresEngineVersion . of ( '14' , '14' , { s3Import : true , s3Export : true } ) ;
@@ -1663,6 +1667,8 @@ export class PostgresEngineVersion {
1663
1667
public static readonly VER_14_12 = PostgresEngineVersion . of ( '14.12' , '14' , { s3Import : true , s3Export : true } ) ;
1664
1668
/** Version "14.13". */
1665
1669
public static readonly VER_14_13 = PostgresEngineVersion . of ( '14.13' , '14' , { s3Import : true , s3Export : true } ) ;
1670
+ /** Version "14.14". */
1671
+ public static readonly VER_14_14 = PostgresEngineVersion . of ( '14.14' , '14' , { s3Import : true , s3Export : true } ) ;
1666
1672
1667
1673
/** Version "15" (only a major version, without a specific minor version). */
1668
1674
public static readonly VER_15 = PostgresEngineVersion . of ( '15' , '15' , { s3Import : true , s3Export : true } ) ;
@@ -1686,6 +1692,8 @@ export class PostgresEngineVersion {
1686
1692
public static readonly VER_15_7 = PostgresEngineVersion . of ( '15.7' , '15' , { s3Import : true , s3Export : true } ) ;
1687
1693
/** Version "15.8". */
1688
1694
public static readonly VER_15_8 = PostgresEngineVersion . of ( '15.8' , '15' , { s3Import : true , s3Export : true } ) ;
1695
+ /** Version "15.9". */
1696
+ public static readonly VER_15_9 = PostgresEngineVersion . of ( '15.9' , '15' , { s3Import : true , s3Export : true } ) ;
1689
1697
1690
1698
/** Version "16" (only a major version, without a specific minor version). */
1691
1699
public static readonly VER_16 = PostgresEngineVersion . of ( '16' , '16' , { s3Import : true , s3Export : true } ) ;
@@ -1697,6 +1705,13 @@ export class PostgresEngineVersion {
1697
1705
public static readonly VER_16_3 = PostgresEngineVersion . of ( '16.3' , '16' , { s3Import : true , s3Export : true } ) ;
1698
1706
/** Version "16.4". */
1699
1707
public static readonly VER_16_4 = PostgresEngineVersion . of ( '16.4' , '16' , { s3Import : true , s3Export : true } ) ;
1708
+ /** Version "16.5". */
1709
+ public static readonly VER_16_5 = PostgresEngineVersion . of ( '16.5' , '16' , { s3Import : true , s3Export : true } ) ;
1710
+
1711
+ /** Version "17" (only a major version, without a specific minor version). */
1712
+ public static readonly VER_17 = PostgresEngineVersion . of ( '17' , '17' , { s3Import : true , s3Export : true } ) ;
1713
+ /** Version "17.1". */
1714
+ public static readonly VER_17_1 = PostgresEngineVersion . of ( '17.1' , '17' , { s3Import : true , s3Export : true } ) ;
1700
1715
1701
1716
/**
1702
1717
* Create a new PostgresEngineVersion with an arbitrary version.
0 commit comments