@@ -799,6 +799,11 @@ export class PostgresEngineVersion {
799
799
* @deprecated PostgreSQL 9.6 will reach end of life in November 2021
800
800
*/
801
801
public static readonly VER_9_6_23 = PostgresEngineVersion . of ( '9.6.23' , '9.6' ) ;
802
+ /**
803
+ * Version "9.6.24".
804
+ * @deprecated PostgreSQL 9.6 will reach end of life in November 2021
805
+ */
806
+ public static readonly VER_9_6_24 = PostgresEngineVersion . of ( '9.6.24' , '9.6' ) ;
802
807
803
808
/** Version "10" (only a major version, without a specific minor version). */
804
809
public static readonly VER_10 = PostgresEngineVersion . of ( '10' , '10' ) ;
@@ -834,6 +839,8 @@ export class PostgresEngineVersion {
834
839
public static readonly VER_10_17 = PostgresEngineVersion . of ( '10.17' , '10' , { s3Import : true , s3Export : true } ) ;
835
840
/** Version "10.18". */
836
841
public static readonly VER_10_18 = PostgresEngineVersion . of ( '10.18' , '10' , { s3Import : true , s3Export : true } ) ;
842
+ /** Version "10.19". */
843
+ public static readonly VER_10_19 = PostgresEngineVersion . of ( '10.19' , '10' , { s3Import : true , s3Export : true } ) ;
837
844
838
845
/** Version "11" (only a major version, without a specific minor version). */
839
846
public static readonly VER_11 = PostgresEngineVersion . of ( '11' , '11' , { s3Import : true } ) ;
@@ -861,6 +868,8 @@ export class PostgresEngineVersion {
861
868
public static readonly VER_11_12 = PostgresEngineVersion . of ( '11.12' , '11' , { s3Import : true , s3Export : true } ) ;
862
869
/** Version "11.13". */
863
870
public static readonly VER_11_13 = PostgresEngineVersion . of ( '11.13' , '11' , { s3Import : true , s3Export : true } ) ;
871
+ /** Version "11.14". */
872
+ public static readonly VER_11_14 = PostgresEngineVersion . of ( '11.14' , '11' , { s3Import : true , s3Export : true } ) ;
864
873
865
874
/** Version "12" (only a major version, without a specific minor version). */
866
875
public static readonly VER_12 = PostgresEngineVersion . of ( '12' , '12' , { s3Import : true } ) ;
@@ -878,6 +887,8 @@ export class PostgresEngineVersion {
878
887
public static readonly VER_12_7 = PostgresEngineVersion . of ( '12.7' , '12' , { s3Import : true , s3Export : true } ) ;
879
888
/** Version "12.8". */
880
889
public static readonly VER_12_8 = PostgresEngineVersion . of ( '12.8' , '12' , { s3Import : true , s3Export : true } ) ;
890
+ /** Version "12.9". */
891
+ public static readonly VER_12_9 = PostgresEngineVersion . of ( '12.9' , '12' , { s3Import : true , s3Export : true } ) ;
881
892
882
893
/** Version "13" (only a major version, without a specific minor version). */
883
894
public static readonly VER_13 = PostgresEngineVersion . of ( '13' , '13' , { s3Import : true , s3Export : true } ) ;
@@ -889,6 +900,8 @@ export class PostgresEngineVersion {
889
900
public static readonly VER_13_3 = PostgresEngineVersion . of ( '13.3' , '13' , { s3Import : true , s3Export : true } ) ;
890
901
/** Version "13.4". */
891
902
public static readonly VER_13_4 = PostgresEngineVersion . of ( '13.4' , '13' , { s3Import : true , s3Export : true } ) ;
903
+ /** Version "13.5". */
904
+ public static readonly VER_13_5 = PostgresEngineVersion . of ( '13.5' , '13' , { s3Import : true , s3Export : true } ) ;
892
905
893
906
/**
894
907
* Create a new PostgresEngineVersion with an arbitrary version.
0 commit comments