From 6f54de1435469a728f5f8b7b051c042cecc05b94 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Mon, 4 Sep 2023 15:03:24 +0100 Subject: [PATCH] Revert "chore(binary): bump depending libraries" This reverts commit d424be88f63ee0d56088bcbc85904cdcc4fc48b8. The commit only bumped the defaults in the build script, but actually the proper version is in the workflow file. A libpq version fixing #528 was already released with psycopg-binary 3.1.10. --- docs/news.rst | 2 -- tools/build/build_libpq.sh | 6 +++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/news.rst b/docs/news.rst index 6b577e028..12d57e5e5 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -18,8 +18,6 @@ Psycopg 3.1.11 (unreleased) - Fix possible lack of critical section guard in async `~AsyncCursor.executemany()`. - Fix missing pipeline fetch in async `~AsyncCursor.scroll()`. -- Build binary packages with libpq 15.4, which allows group-readable - permissions on the SSL certificate on the client (:ticket:`#528`). Current release diff --git a/tools/build/build_libpq.sh b/tools/build/build_libpq.sh index 7e9cf9a93..4cc79af2d 100755 --- a/tools/build/build_libpq.sh +++ b/tools/build/build_libpq.sh @@ -7,13 +7,13 @@ set -x # Last release: https://www.postgresql.org/ftp/source/ # IMPORTANT! Change the cache key in packages.yml when upgrading libraries -postgres_version="${LIBPQ_VERSION:-15.4}" +postgres_version="${LIBPQ_VERSION:-15.0}" # last release: https://www.openssl.org/source/ -openssl_version="${OPENSSL_VERSION:-1.1.1v}" +openssl_version="${OPENSSL_VERSION:-1.1.1r}" # last release: https://openldap.org/software/download/ -ldap_version="2.6.6" +ldap_version="2.6.3" # last release: https://github.com/cyrusimap/cyrus-sasl/releases sasl_version="2.1.28" -- 2.47.3