diff --git a/.github/workflows/build_openssl.sh b/.github/workflows/build_openssl.sh index abdd09cf3e55..9b4cd2a29782 100755 --- a/.github/workflows/build_openssl.sh +++ b/.github/workflows/build_openssl.sh @@ -20,7 +20,7 @@ if [[ "${TYPE}" == "openssl" ]]; then pushd openssl git checkout "${VERSION}" else - curl -O "https://www.openssl.org/source/openssl-${VERSION}.tar.gz" + curl -LO "https://www.openssl.org/source/openssl-${VERSION}.tar.gz" tar zxf "openssl-${VERSION}.tar.gz" pushd "openssl-${VERSION}" fi @@ -57,7 +57,7 @@ if [[ "${TYPE}" == "openssl" ]]; then fi popd elif [[ "${TYPE}" == "libressl" ]]; then - curl -O "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${VERSION}.tar.gz" + curl -LO "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${VERSION}.tar.gz" tar zxf "libressl-${VERSION}.tar.gz" pushd "libressl-${VERSION}" cmake -B build -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX="${OSSL_PATH}" diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 524262e120bf..d543896aed28 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -47,6 +47,13 @@ Changelog * Added support for parsing empty DN string in :meth:`~cryptography.x509.Name.from_rfc4514_string`. +.. _v42-0-8: + +42.0.8 - 2024-06-04 +~~~~~~~~~~~~~~~~~~~ + +* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.2.2. + .. _v42-0-7: 42.0.7 - 2024-05-06