Fix vulnerable plugin dependency resolutions - #56
Merged
Conversation
nabinchha
marked this pull request as ready for review
August 10, 2026 16:15
nabinchha
requested review from
a team,
oliverholworthy and
shan-nvidia
as code owners
August 10, 2026 16:15
oliverholworthy
approved these changes
Aug 10, 2026
27 tasks
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.
What changed
uv.lockThe resolved dependency set moves the scanned packages to:
Why
The package manifests allowed older transitive versions from DataDesigner, and retrieval SDG explicitly capped NLTK below the scanner's recommended short-term version. This let isolated plugin installs resolve every vulnerable version listed in the supplied scan.
The scan lists cryptography 50 and PyArrow 25 as long-term upgrades. Current compatible DataDesigner releases cap those packages below those major versions, so this change uses the newest upstream-supported security floors (
cryptography>=48.0.1,<50andpyarrow>=24,<25) and resolves to cryptography 49 and PyArrow 24.Impact
Fresh isolated installs of both affected plugins now exclude the versions found in the scan while remaining compatible with the current stable DataDesigner release.
Validation
make alluv lock --check