From: Daniele Varrazzo Date: Fri, 10 Oct 2025 13:06:06 +0000 (+0200) Subject: chore(binary): bump packaged versions of libpq, OpenSSL X-Git-Tag: 3.2.11~14^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2677d5f2e1a4cc33efb9f1073294e20a91abb3c6;p=thirdparty%2Fpsycopg.git chore(binary): bump packaged versions of libpq, OpenSSL --- diff --git a/.github/workflows/packages-bin.yml b/.github/workflows/packages-bin.yml index 0e0969633..28e9aeb09 100644 --- a/.github/workflows/packages-bin.yml +++ b/.github/workflows/packages-bin.yml @@ -5,12 +5,21 @@ name: Build binary packages # # You can see the caches at https://github.com/psycopg/psycopg/actions/caches # +# Or from the API: +# +# curl -fsSL -X GET \ +# -H "Accept: application/vnd.github+json" \ +# -H "Authorization: Bearer $GITHUB_TOKEN" \ +# -H "X-GitHub-Api-Version: 2022-11-28" \ +# "https://api.github.com/repos/psycopg/psycopg/actions/caches" \ +# | jq -r '.actions_caches[].key' +# # You can delete a cache using: # -# curl -L -X DELETE -# -H "Accept: application/vnd.github+json" -# -H "Authorization: Bearer $GITHUB_TOKEN" -# -H "X-GitHub-Api-Version: 2022-11-28" +# curl -fsSL -X DELETE \ +# -H "Accept: application/vnd.github+json" \ +# -H "Authorization: Bearer $GITHUB_TOKEN" \ +# -H "X-GitHub-Api-Version: 2022-11-28" \ # "https://api.github.com/repos/psycopg/psycopg/actions/caches?key=libpq-manylinux-ppc64le-17.2-3.4.0" # # ref: https://docs.github.com/en/rest/actions/cache?apiVersion=2022-11-28#delete-github-actions-caches-for-a-repository-using-a-cache-key @@ -25,7 +34,7 @@ on: env: # Latest release: https://www.postgresql.org/ftp/source/ - LIBPQ_VERSION: "17.5" + LIBPQ_VERSION: "17.6" # Note: On windows the latest version can be found at # https://vcpkg.io/en/package/libpq # However the command line tool doesn't have a flag to specify to install @@ -33,7 +42,7 @@ env: # https://github.com/microsoft/vcpkg/discussions/25622 # Latest release: https://www.openssl.org/source/ - OPENSSL_VERSION: "3.5.0" + OPENSSL_VERSION: "3.5.4" concurrency: # Cancel older requests of the same workflow in the same branch. @@ -146,7 +155,7 @@ jobs: uses: actions/cache@v4 with: path: /tmp/libpq.build - key: libpq-${{ env.LIBPQ_VERSION }}-macos-${{ matrix.arch }}-${{ env.OPENSSL_VERSION }} + key: libpq-macos-${{ matrix.arch }}-${{ env.OPENSSL_VERSION }}-${{ env.LIBPQ_VERSION }} - name: Create the binary package source tree run: python3 ./tools/build/copy_to_binary.py diff --git a/tools/build/build_libpq.sh b/tools/build/build_libpq.sh index 7a303d7e2..59f676df2 100755 --- a/tools/build/build_libpq.sh +++ b/tools/build/build_libpq.sh @@ -52,7 +52,7 @@ fi case "$ID" in centos) yum update -y - yum install -y flex krb5-devel pam-devel perl-IPC-Cmd zlib-devel + yum install -y flex krb5-devel pam-devel perl-IPC-Cmd perl-Time-Piece zlib-devel ;; alpine)