-
Notifications
You must be signed in to change notification settings - Fork 210
ci: Address aiohttp and urllib3 cve #1379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Dong Hyuk Chang <[email protected]>
Greptile SummaryThis PR updates security constraints for
The changes are minimal and focused only on dependency version constraints. The lock file ( Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant UV as UV Package Manager
participant PyPI as PyPI Registry
participant Deps as Dependencies
Dev->>UV: Update constraint-dependencies in pyproject.toml
Note over Dev,UV: Add aiohttp>=3.13.3<br/>Add urllib3>=2.6.3
Dev->>UV: Run uv lock
UV->>PyPI: Resolve aiohttp>=3.13.3
PyPI-->>UV: Return aiohttp 3.13.3
UV->>PyPI: Resolve urllib3>=2.6.3
PyPI-->>UV: Return urllib3 2.6.3
UV->>Deps: Check dependency tree
Deps-->>UV: Validate compatibility
UV->>UV: Generate uv.lock
Note over UV: Update manifest constraints<br/>Update package versions<br/>Update wheel checksums
UV-->>Dev: Lock file updated
Note over Dev: CVE GHSA-6mq8-rvhq-8wgg addressed<br/>CVE GHSA-38jv-5279-wg99 addressed
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1 file reviewed, 1 comment
| "xgrammar>=0.1.21", # Address CVE GHSA-5cmr-4px5-23pc | ||
| "starlette>=0.49.1", # Address CVE GHSA-7f5h-v6xp-fcq8 | ||
| "ray[default,data]>=2.52", # Address CVE GHSA-q279-jhrf-cc6v | ||
| "urllib3>=2.6.3", #Address CVE GHSA-38jv-5279-wg99 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
style: Missing space after # in comment
| "urllib3>=2.6.3", #Address CVE GHSA-38jv-5279-wg99 | |
| "urllib3>=2.6.3", # Address CVE GHSA-38jv-5279-wg99 |
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
Description
Usage
# Add snippet demonstrating usageChecklist