From 41baf150c2233883439ec7d9816a416b252e40cc Mon Sep 17 00:00:00 2001 From: Jorilla Abdullaev Date: Fri, 17 Jun 2022 11:08:47 +0500 Subject: [PATCH] upgrade PSQL version to fix an issue with CREATE INDEX CONCURRENTLY and REINDEX CONCURRENTLY that could cause silent data corruption of indexes --- src/lib/components/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/common.ts b/src/lib/components/common.ts index 183f6ab6a..68eb96a8d 100644 --- a/src/lib/components/common.ts +++ b/src/lib/components/common.ts @@ -62,7 +62,7 @@ export const supportedDatabaseTypesAndVersions = [ name: 'postgresql', fancyName: 'PostgreSQL', baseImage: 'bitnami/postgresql', - versions: ['14.2.0', '13.6.0', '12.10.0', '11.15.0', '10.20.0'] + versions: ['14.4.0', '13.6.0', '12.10.0', '11.15.0', '10.20.0'] }, { name: 'redis',