Conversation
Bumps [maturin](https://github.com/pyo3/maturin) from 1.14.0 to 1.14.1. - [Release notes](https://github.com/pyo3/maturin/releases) - [Changelog](https://github.com/PyO3/maturin/blob/main/Changelog.md) - [Commits](PyO3/maturin@v1.14.0...v1.14.1) --- updated-dependencies: - dependency-name: maturin dependency-version: 1.14.1 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.15.17 to 0.15.18. - [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.17...0.15.18) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.15.18 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) from 1.3.0 to 1.4.0. - [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases) - [Commits](pytest-dev/pytest-asyncio@v1.3.0...v1.4.0) --- updated-dependencies: - dependency-name: pytest-asyncio dependency-version: 1.4.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.4.2 to 9.1.1. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](pytest-dev/pytest@8.4.2...9.1.1) --- updated-dependencies: - dependency-name: pytest dependency-version: 9.1.1 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
Adds a `verify_ssl` keyword argument to the CloudCheck constructor (Rust `with_config` + PyO3 binding) mapping to reqwest's `danger_accept_invalid_certs`. Lets callers disable SSL verification when fetching cloud provider signatures (corporate proxies, custom CAs, SSL-intercepting infrastructure). Defaults to True. Closes #272; unblocks bbot#3226 (ssl_verify_infrastructure passthrough). - src/lib.rs: verify_ssl field; build a reqwest::Client with danger_accept_invalid_certs(!verify_ssl) instead of the default client; warn when verification is disabled - src/python.rs: verify_ssl=None kwarg passed through to with_config - bump 11.0.0 -> 11.1.0 (Cargo.toml, pyproject.toml, lockfiles) - docker-tests.yml: image tags v11.0/v11.0.0 -> v11.1/v11.1.0 - tests: Rust + Python coverage for verify_ssl=False
Stable->dev sync
…ytest-9.1.1 build(deps-dev): bump pytest from 8.4.2 to 9.1.1
…ytest-asyncio-1.4.0 build(deps-dev): bump pytest-asyncio from 1.3.0 to 1.4.0
…aturin-1.14.1 build(deps-dev): bump maturin from 1.14.0 to 1.14.1
…uff-0.15.18 build(deps-dev): bump ruff from 0.15.17 to 0.15.18
…ctions/github-actions-640176b5ab build(deps): bump actions/checkout from 6 to 7 in the github-actions group
Add verify_ssl passthrough, bump to 11.1.0
ausmaster
self-requested a review
June 24, 2026 01:27
ausmaster
approved these changes
Jun 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
11.1.0 Release
Merges
devintostableto cut v11.1.0.Features
verify_sslconstructor parameter (Add verify_ssl passthrough, bump to 11.1.0 #278) —CloudCheck(verify_ssl=False)disables SSL certificate verification when fetching cloud provider signatures (maps to reqwest'sdanger_accept_invalid_certs). Defaults toTrue. Exposed through both the Rust API (with_config) and the PyO3 binding, and logs a warning when verification is disabled. Closes Add verify_ssl constructor kwarg to disable SSL certificate verification #272 and unblocks thessl_verify_infrastructurepassthrough in bbot#3226.Dependency updates
actions/checkout6 -> 7 (all workflows)CI / tooling
v11.0/v11.0.0->v11.1/v11.1.0(floatingv11unchanged).Version
11.0.0->11.1.0(Cargo.toml,pyproject.toml, lockfiles).