chore(deps): bump urllib3 from 2.6.0 to 2.6.3 #1493
Merged
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.
Greptile Overview
Greptile Summary
This dependency update upgrades urllib3 from version 2.6.0 to 2.6.3, addressing a high-severity security vulnerability and several bug fixes. urllib3 is a transitive dependency through the
requestslibrary.Key changes:
Retry-Afterheader handling by capping values at 6 hoursHTTPResponse.read_chunked()for compressed chunked responsesHTTPResponse.getheaders()andHTTPResponse.getheader()methodsVerifiedHTTPSConnectionon EmscriptenImpact assessment:
Confidence Score: 5/5
Important Files Changed
File Analysis
Sequence Diagram
sequenceDiagram participant Dev as Developer participant Dep as Dependabot participant Lock as poetry.lock participant Req as requests Library participant URL as urllib3 (2.6.0→2.6.3) Dev->>Dep: Monitors security advisories Dep->>Dep: Detects CVE-2026-21441 in urllib3 2.6.0 Dep->>Lock: Updates urllib3 dependency Lock->>Lock: Changes hash for urllib3 2.6.3 Note over URL: Security Fix: Decompression-bomb<br/>safeguard bypass patched<br/>(CVE-2026-21441, 8.9 High) Note over URL: Bug Fixes: Retry-After capping,<br/>read_chunked() fixes,<br/>restored getheaders() methods Req->>URL: Uses urllib3 as dependency Dev->>Lock: Reviews and approves change Dev->>Dev: Merges security patch