From 704c2930dd0e8c9a9b43fc7456bf9220281c7064 Mon Sep 17 00:00:00 2001 From: Nathan Franke Date: Fri, 20 Aug 2021 14:49:31 -0500 Subject: [PATCH 1/2] Remove extra debug log --- embedded_postgres.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/embedded_postgres.go b/embedded_postgres.go index 34bf514..5b4e142 100644 --- a/embedded_postgres.go +++ b/embedded_postgres.go @@ -4,7 +4,6 @@ import ( "errors" "fmt" "io/ioutil" - "log" "net" "os" "os/exec" @@ -148,7 +147,6 @@ func startPostgres(binaryExtractLocation string, config Config) error { postgresProcess := exec.Command(postgresBinary, "start", "-w", "-D", userDataPathOrDefault(config.dataPath, binaryExtractLocation), "-o", fmt.Sprintf(`"-p %d"`, config.port)) - log.Println(postgresProcess.String()) postgresProcess.Stderr = config.logger postgresProcess.Stdout = config.logger From abd46e20275bb5f00a805cfbe6684573578e71c4 Mon Sep 17 00:00:00 2001 From: Fergus Strange Date: Wed, 2 Mar 2022 15:00:22 +1100 Subject: [PATCH 2/2] Upgrade Postgres versions --- config.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config.go b/config.go index a80bb95..490a3bf 100644 --- a/config.go +++ b/config.go @@ -123,10 +123,10 @@ type PostgresVersion string // Predefined supported Postgres versions. const ( - V14 = PostgresVersion("14.1.0") - V13 = PostgresVersion("13.5.0") - V12 = PostgresVersion("12.9.0") - V11 = PostgresVersion("11.14.0") - V10 = PostgresVersion("10.19.0") + V14 = PostgresVersion("14.2.0") + V13 = PostgresVersion("13.6.0") + V12 = PostgresVersion("12.10.0") + V11 = PostgresVersion("11.15.0") + V10 = PostgresVersion("10.20.0") V9 = PostgresVersion("9.6.24") )