From 09c360f8aa2d933d1b965cbfbdddd592c7ce55dc Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 20 Nov 2021 10:25:10 -0600 Subject: [PATCH] Update supported / tested platforms --- .github/workflows/ci.yml | 10 +++++----- README.md | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6472456..0af026a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,15 +10,13 @@ jobs: test: name: Test - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 strategy: matrix: - go-version: [1.15, 1.16] - pg-version: [9.6, 10, 11, 12, 13, cockroachdb] + go-version: [1.16, 1.17] + pg-version: [10, 11, 12, 13, 14, cockroachdb] include: - - pg-version: 9.6 - pgx-test-database: postgres://pgx_md5:secret@127.0.0.1/pgx_test - pg-version: 10 pgx-test-database: postgres://pgx_md5:secret@127.0.0.1/pgx_test - pg-version: 11 @@ -27,6 +25,8 @@ jobs: pgx-test-database: postgres://pgx_md5:secret@127.0.0.1/pgx_test - pg-version: 13 pgx-test-database: postgres://pgx_md5:secret@127.0.0.1/pgx_test + - pg-version: 14 + pgx-test-database: postgres://pgx_md5:secret@127.0.0.1/pgx_test - pg-version: cockroachdb pgx-test-database: "postgresql://root@127.0.0.1:26257/pgx_test?sslmode=disable&experimental_enable_temp_tables=on" diff --git a/README.md b/README.md index 6cec13f4..110d4f02 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,7 @@ In addition, there are tests specific for PgBouncer that will be executed if `PG ## Supported Go and PostgreSQL Versions -pgx supports the same versions of Go and PostgreSQL that are supported by their respective teams. For [Go](https://golang.org/doc/devel/release.html#policy) that is the two most recent major releases and for [PostgreSQL](https://www.postgresql.org/support/versioning/) the major releases in the last 5 years. This means pgx supports Go 1.15 and higher and PostgreSQL 9.6 and higher. pgx also is tested against the latest version of [CockroachDB](https://www.cockroachlabs.com/product/). +pgx supports the same versions of Go and PostgreSQL that are supported by their respective teams. For [Go](https://golang.org/doc/devel/release.html#policy) that is the two most recent major releases and for [PostgreSQL](https://www.postgresql.org/support/versioning/) the major releases in the last 5 years. This means pgx supports Go 1.16 and higher and PostgreSQL 10 and higher. pgx also is tested against the latest version of [CockroachDB](https://www.cockroachlabs.com/product/). ## Version Policy