chore: upgrade packaged libpq version and dependencies

appveyor.cache_rebuild reformatted for greppability.
This commit is contained in:
Daniele Varrazzo 2022-10-06 03:14:06 +01:00
parent 76b703e910
commit 182a51a33f
6 changed files with 15 additions and 13 deletions

View File

@ -24,8 +24,8 @@ environment:
WORKFLOW: packages WORKFLOW: packages
OPENSSL_VERSION: "1_1_1l" OPENSSL_VERSION: "1_1_1q"
POSTGRES_VERSION: "14_1" POSTGRES_VERSION: "14_4"
PSYCOPG2_TESTDB: psycopg2_test PSYCOPG2_TESTDB: psycopg2_test
PSYCOPG2_TESTDB_USER: postgres PSYCOPG2_TESTDB_USER: postgres

View File

@ -19,8 +19,8 @@ environment:
WORKFLOW: tests WORKFLOW: tests
OPENSSL_VERSION: "1_1_1l" OPENSSL_VERSION: "1_1_1q"
POSTGRES_VERSION: "14_1" POSTGRES_VERSION: "14_4"
PSYCOPG2_TESTDB: psycopg2_test PSYCOPG2_TESTDB: psycopg2_test
PSYCOPG2_TESTDB_USER: postgres PSYCOPG2_TESTDB_USER: postgres

2
.gitignore vendored
View File

@ -6,7 +6,7 @@ MANIFEST
*.sw[po] *.sw[po]
*.egg-info/ *.egg-info/
dist/* dist/*
build/* /build
env env
env? env?
.idea .idea

1
NEWS
View File

@ -6,6 +6,7 @@ What's new in psycopg 2.9.4 (unreleased)
- Handle correctly composite types with names or in schemas requiring escape. - Handle correctly composite types with names or in schemas requiring escape.
- `~psycopg2.errorcodes` map and `~psycopg2.errors` classes updated to - `~psycopg2.errorcodes` map and `~psycopg2.errors` classes updated to
PostgreSQL 15. PostgreSQL 15.
- Wheel package compiled against OpenSSL 1.1.1q and PostgreSQL 14.4
Current release Current release

View File

@ -8,11 +8,8 @@ To invalidate the cache, update this file and check it into git.
Currently used modules built in the cache: Currently used modules built in the cache:
OpenSSL - OPENSSL_VERSION: 1.1.1q
Version: 1.1.1l - POSTGRES_VERSION: 14.4
PostgreSQL
Version: 14.1
NOTE: to zap the cache manually you can also use: NOTE: to zap the cache manually you can also use:

View File

@ -5,10 +5,14 @@
set -euo pipefail set -euo pipefail
set -x set -x
openssl_version="1.1.1l" # Last release: https://www.postgresql.org/ftp/source/
postgres_version="14.4"
# last release: https://www.openssl.org/source/
openssl_version="1.1.1q"
# last release: https://openldap.org/software/download/
ldap_version="2.4.59" ldap_version="2.4.59"
sasl_version="2.1.27" # last release: https://github.com/cyrusimap/cyrus-sasl/releases
postgres_version="14.1" sasl_version="2.1.28"
yum install -y zlib-devel krb5-devel pam-devel yum install -y zlib-devel krb5-devel pam-devel