[MGMT-358] Bump vulnerable deps (adzerk-decision-sdk-python) - #34
Open
honeycomb-cheesecake wants to merge 1 commit into
Open
[MGMT-358] Bump vulnerable deps (adzerk-decision-sdk-python)#34honeycomb-cheesecake wants to merge 1 commit into
honeycomb-cheesecake wants to merge 1 commit into
Conversation
Addressed Datadog-flagged CVEs by raising the minimum resolvable version for each affected dependency (no lockfile in this repo, so the >= floors in requirements.txt/setup.py/test-requirements.txt are the only place these are pinned): - urllib3 >= 2.0.0 -> >= 2.7.0 Fixes CVE-2023-43804, CVE-2023-45803, CVE-2024-37891, CVE-2025-50181, CVE-2025-66471, CVE-2025-66418, CVE-2026-21441, CVE-2026-44431 - certifi >= 2023.7.22 -> >= 2024.7.4 Fixes CVE-2024-39689 (GLOBALTRUST root cert removal) - pytest >= 7.0 -> >= 9.0.3 Fixes CVE-2025-71176 (insecure tmpdir handling) Verified by installing requirements.txt + test-requirements.txt into a clean venv, confirming pip resolves urllib3 2.7.0, certifi 2026.7.22, and pytest 9.1.1 (all above the patched floors), and running `pytest --cov=adzerk_decision_sdk` (1 passed). Cross-checked each CVE against the urllib3/certifi/pytest upstream changelogs to confirm the chosen floor versions actually contain the fix.
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.
Summary
Resolves Datadog-flagged CVE findings for MGMT-358.
Fixed
urllib3>=2.0.0 → >=2.7.0 — fixes CVE-2023-43804, CVE-2023-45803, CVE-2024-37891, CVE-2025-50181, CVE-2025-66471, CVE-2025-66418, CVE-2026-21441, CVE-2026-44431.certifi>=2023.7.22 → >=2024.7.4 — fixes CVE-2024-39689.pytest>=7.0 → >=9.0.3 — fixes CVE-2025-71176. This is a major-version bump; verified safe since this repo's test suite is a single trivial placeholder test, and pytest-cov/pytest-randomly declare no upper pytest bound.Not fixed
None — all 10 flagged findings resolved.
Verification
Bootstrapped pip in a scratch venv, ran a clean
pip install -r requirements.txt -r test-requirements.txt+pip install -e .. Resolver picked urllib3 2.7.0, certifi 2026.7.22, pytest 9.1.1.pytest --cov=adzerk_decision_sdk: 1 passed.