chore: Constrain vulnerable transitive dependencies#50
Merged
Conversation
nabinchha
approved these changes
May 26, 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.
What
Adds workspace-level uv constraints for the transitive dependencies flagged in the vulnerability report:
urllib3>=2.7.0python-multipart>=0.0.29Refreshes
uv.lockso the workspace resolvesurllib3to2.7.0andpython-multipartto0.0.29.Why
The attached scan report identified vulnerable resolved versions of
urllib3(2.6.3) andpython-multipart(0.0.26) in the Data Designer plugin dependency tree. These packages are pulled transitively through Data Designer dependencies, so the fix belongs in the workspace constraint list rather than individual plugin runtime dependencies.Usage
No plugin configuration changes are required. After pulling this branch, run:
The workspace and isolated plugin test environments resolve the patched versions automatically through the root
tool.uv.constraint-dependenciesconfiguration.How
Updated the root
pyproject.tomlconstraint list with patched lower bounds and regenerateduv.lockwith:Validation
make syncgit diff --checkmake allmake allpassed, including linting, devtools tests, isolated plugin tests, plugin validation, catalog/package-index checks, license header checks, and docs build.