Skip to content

Commit 00b0479

Browse files
Prometheus2677FPiety0521
authored and
FPiety0521
committed
Drop support for postgres 9.4 and add support for postgres 12
https://www.postgresql.org/about/news/2011/ https://www.postgresql.org/about/news/1976/
1 parent 781540e commit 00b0479

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/postgres/postgres_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ var (
2727
opts = dktest.Options{PortRequired: true, ReadyFunc: isReady}
2828
// Supported versions: https://www.postgresql.org/support/versioning/
2929
specs = []dktesting.ContainerSpec{
30-
{ImageName: "postgres:9.4", Options: opts},
3130
{ImageName: "postgres:9.5", Options: opts},
3231
{ImageName: "postgres:9.6", Options: opts},
3332
{ImageName: "postgres:10", Options: opts},
3433
{ImageName: "postgres:11", Options: opts},
34+
{ImageName: "postgres:12", Options: opts},
3535
}
3636
)
3737

0 commit comments

Comments
 (0)