From 8d5c36996b3fb61bb8dde7d4cac71b859073af82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 May 2026 04:50:34 +0000 Subject: [PATCH 1/2] chore(deps): bump openssl from 0.10.71 to 0.10.80 in /sentry_streams Bumps [openssl](https://github.com/rust-openssl/rust-openssl) from 0.10.71 to 0.10.80. - [Release notes](https://github.com/rust-openssl/rust-openssl/releases) - [Commits](https://github.com/rust-openssl/rust-openssl/compare/openssl-v0.10.71...openssl-v0.10.80) --- updated-dependencies: - dependency-name: openssl dependency-version: 0.10.80 dependency-type: indirect ... Signed-off-by: dependabot[bot] --- sentry_streams/Cargo.lock | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/sentry_streams/Cargo.lock b/sentry_streams/Cargo.lock index 6a7fe2eb..0fb92a20 100644 --- a/sentry_streams/Cargo.lock +++ b/sentry_streams/Cargo.lock @@ -1602,15 +1602,14 @@ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" [[package]] name = "openssl" -version = "0.10.71" +version = "0.10.80" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e14130c6a98cd258fdcb0fb6d744152343ff729cbfcb28c656a9d12b999fbcd" +checksum = "a45fa2aa886c42762255da344f0a0d313e254066c46aad76f300c3d3da62d967" dependencies = [ "bitflags", "cfg-if", "foreign-types", "libc", - "once_cell", "openssl-macros", "openssl-sys", ] @@ -1634,9 +1633,9 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" [[package]] name = "openssl-sys" -version = "0.9.106" +version = "0.9.116" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8bb61ea9811cc39e3c2069f40b8b8e2e70d8569b361f879786cc7ed48b777cdd" +checksum = "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4" dependencies = [ "cc", "libc", From 8be384c3a782fff04e47ecc858f693703b5541de Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Wed, 20 May 2026 16:02:40 +0200 Subject: [PATCH 2/2] chore: upgrade manylinux to 2_28 for OpenSSL 1.1+ support openssl-sys 0.9.116 dropped support for OpenSSL 1.0.2, which is the version available in manylinux2014 (CentOS 7). manylinux_2_28 uses AlmaLinux 8 with OpenSSL 1.1.1+. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/build-streams.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-streams.yaml b/.github/workflows/build-streams.yaml index 6396f353..0654ae27 100644 --- a/.github/workflows/build-streams.yaml +++ b/.github/workflows/build-streams.yaml @@ -34,7 +34,7 @@ jobs: target: ${{ matrix.platform.target }} args: --release --out dist --find-interpreter --features=extension-module sccache: ${{ !startsWith(github.ref, 'refs/tags/') }} - manylinux: "2014" + manylinux: "2_28" working-directory: ./sentry_streams before-script-linux: | cmake --version