chore(deps): bump python-dotenv to 1.2.2 in test-crewai#400
Merged
Abhijeet Prasad (AbhiPrasad) merged 1 commit intomainfrom May 7, 2026
Merged
chore(deps): bump python-dotenv to 1.2.2 in test-crewai#400Abhijeet Prasad (AbhiPrasad) merged 1 commit intomainfrom
Abhijeet Prasad (AbhiPrasad) merged 1 commit intomainfrom
Conversation
The Dependabot alert for python-dotenv (CVE-2026-28684) was firing on the test-crewai conflict-group resolution, where litellm==1.83.10 hard-pins python-dotenv==1.0.1. Bump the litellm pin to 1.83.14, which pins python-dotenv==1.2.2. uv lock now resolves python-dotenv to a single version (1.2.2). Also pulls aiohttp 3.13.3 -> 3.13.4 as a side effect, clearing 10 aiohttp CVEs. Verified test_crewai(latest) still collects 17 tests cleanly. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Abhijeet Prasad (AbhiPrasad)
approved these changes
May 7, 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.
Summary
patch_litellm()does not patchembeddingormoderation;aembeddingmissing entirely #115 (python-dotenv<1.2.2, CVE-2026-28684 — symlink-following inset_key).test-crewaigroup'slitellmpin from1.83.10→1.83.14. The older litellm hard-pinspython-dotenv==1.0.1; the newer one pinspython-dotenv==1.2.2. That was the only path forcing the vulnerable 1.0.1 into the lock's conflict-group resolution.uv lockresolvespython-dotenvto a single version (1.2.2). As a side effect,aiohttpalso moves 3.13.3 → 3.13.4, which clears 10 aiohttp CVEs (Google GenAI: embed_content not instrumented #105–OpenAI:chat.completions.stream()helper method not instrumented #114).Why this is the right knob
The CVE is in
python-dotenv'sset_key()/unset_key()(symlink-following on cross-device rename fallback).braintrustonly callsload_dotenv()(py/src/braintrust/cli/eval.py:279), so end users are not exploitable through the SDK regardless of the lock state. This PR exists purely to silence the Dependabot alert by purging the vulnerable version from the test-crewai resolution.Test plan
uv lockresolves cleanly.nox -s "test_crewai(latest)"collects 17 tests (no install errors after the litellm bump).🤖 Generated with Claude Code