Skip to content

chore(deps): bump openssl from 0.10.80 to 0.10.81#45

Merged
liquidsec merged 1 commit into
devfrom
dependabot/cargo/dev/openssl-0.10.81
Jun 15, 2026
Merged

chore(deps): bump openssl from 0.10.80 to 0.10.81#45
liquidsec merged 1 commit into
devfrom
dependabot/cargo/dev/openssl-0.10.81

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 13, 2026

Copy link
Copy Markdown

Bumps openssl from 0.10.80 to 0.10.81.

Release notes

Sourced from openssl's releases.

openssl-v0.10.81

What's Changed

New Contributors

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.80...openssl-v0.10.81

Commits
  • db9c9e2 Release openssl 0.10.81 and openssl-sys 0.9.117 (#2655)
  • 3a7fb56 Bump actions/checkout from 6.0.2 to 6.0.3 (#2653)
  • d059c43 Fix verify_mode() panic on unmodeled verify mode bits (#2651)
  • 8b1519e Deprecate Asn1StringRef::as_utf8 in favor of a NUL-safe to_string (#2652)
  • d5713d6 add mldsa.h to the boringssl bindgen (#2650)
  • 9fac317 Merge pull request #2538 from ocdlroux/feat/crl-full
  • 4dae20b x509: adding minimal support for X509CrlBuilder
  • 47f7777 Add brainpoolP224r1 and brainpoolP224t1 NID constants (#2642)
  • 659da17 Bump aws-ls-sys to 0.41 (#2640)
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [openssl](https://github.com/rust-openssl/rust-openssl) from 0.10.80 to 0.10.81.
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases)
- [Commits](rust-openssl/rust-openssl@openssl-v0.10.80...openssl-v0.10.81)

---
updated-dependencies:
- dependency-name: openssl
  dependency-version: 0.10.81
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jun 13, 2026
@liquidsec
liquidsec merged commit a34fef1 into dev Jun 15, 2026
16 of 28 checks passed
@dependabot
dependabot Bot deleted the dependabot/cargo/dev/openssl-0.10.81 branch June 15, 2026 20:29
liquidsec added a commit that referenced this pull request Jun 15, 2026
* chore(deps): bump http from 1.4.1 to 1.4.2

Bumps [http](https://github.com/hyperium/http) from 1.4.1 to 1.4.2.
- [Release notes](https://github.com/hyperium/http/releases)
- [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md)
- [Commits](hyperium/http@v1.4.1...v1.4.2)

---
updated-dependencies:
- dependency-name: http
  dependency-version: 1.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps-dev): bump ruff from 0.15.15 to 0.15.17

Bumps [ruff](https://github.com/astral-sh/ruff) from 0.15.15 to 0.15.17.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.15.15...0.15.17)

---
updated-dependencies:
- dependency-name: ruff
  dependency-version: 0.15.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump version to 0.9.0

* chore(deps): bump openssl from 0.10.80 to 0.10.81 (#45)

Bumps [openssl](https://github.com/rust-openssl/rust-openssl) from 0.10.80 to 0.10.81.
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases)
- [Commits](rust-openssl/rust-openssl@openssl-v0.10.80...openssl-v0.10.81)

---
updated-dependencies:
- dependency-name: openssl
  dependency-version: 0.10.81
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Fix SSL certificate verification (#47)

* Fix SSL certificate verification (verify_certs=True)

- Load system CA certs explicitly instead of relying on
  set_default_verify_paths(), which fails when OpenSSL is vendored
  (compiled-in OPENSSLDIR points to nonexistent path)
- Include verify_certs in ConnMode cache key so connections with
  different verify settings don't share a cached hyper Client
- Add timeout parameter to raw_connect Python binding
- Wrap TCP connect in a timeout (was missing, causing hangs)
- Add Rust and Python tests for all connection types

* Replace deprecated as_utf8() with to_string()

* Update Cargo.lock for 0.9.0

* Add hostname verification, timeout coverage, and TLS cache key fixes

F1: verify_certs=True now checks hostname (set_host/set_ip on both TLS paths)
F2: TLS and proxy handshakes bounded by connect timeout (pooled + raw paths)
F3: ConnMode cache key includes cipher_string, TLS versions, and ALPN
F4: load_system_ca_certs tracks dir loading to avoid unnecessary fallback

* Fix rustfmt in tls_server.rs

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant