Update supported / tested platforms

pull/1116/head
Jack Christensen 2021-11-20 10:25:10 -06:00
parent a9f8400b01
commit 09c360f8aa
2 changed files with 6 additions and 6 deletions

View File

@ -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"

View File

@ -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