chore(deps): drop diskcache from crewai via instructor 1.15.3#2325
Open
dcbouius wants to merge 1 commit into
Open
chore(deps): drop diskcache from crewai via instructor 1.15.3#2325dcbouius wants to merge 1 commit into
dcbouius wants to merge 1 commit into
Conversation
instructor 1.12.0 hard-depended on diskcache <=5.6.3, which has an unpatched pickle-deserialization RCE (CVE-2025-69872 / GHSA-w8v5-vhqr-4h9v; no fixed version exists). instructor 1.13+ moved diskcache behind an optional `diskcache` extra, so upgrading to 1.15.3 removes it from the resolution entirely. - instructor 1.12.0 -> 1.15.3 - diskcache 5.6.3 removed from the lock
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.
Addresses the crewai
diskcachefinding (CVE-2025-69872 / GHSA-w8v5-vhqr-4h9v — pickle-deserialization RCE, no fixed diskcache version exists).The fix isn't a version bump of diskcache (there is none) — it's removing the dependency.
instructor1.12.0 hard-depended on diskcache; 1.13+ moved it behind an optionaldiskcacheextra, so upgrading drops it from the resolution.instructor1.12.0 → 1.15.3diskcache5.6.3 removed fromhindsight-integrations/crewai/uv.lockuv lock --checkpasses.Note on the other diskcache finding (root
uv.lock)The root lock's diskcache comes from
llama-cpp-python(optionallocal-llmextra), and llama-cpp-python 0.3.30 (latest) still hard-requiresdiskcache>=5.6.1— so it can't be dropped the same way. Mitigating factors:[all]extra (local-ml,local-onnx,embedded-db), and not in the shipped Docker images (--extra local-ml --extra embedded-db). It's inuv.lockonly because uv locks every extra.That one is a candidate for a Vanta risk-acceptance (or dropping the
local-llmextra), since no upstream remediation exists.