fix: bump cryptography to 50.0.0 to clear CVE-2026-69247 - #20
Open
melindavandijke wants to merge 3 commits into
Open
fix: bump cryptography to 50.0.0 to clear CVE-2026-69247#20melindavandijke wants to merge 3 commits into
melindavandijke wants to merge 3 commits into
Conversation
|
Important Review available on request
Reviews should be triggered manually for repositories with fewer than 10 stars. Select Trigger review above or comment ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
Size Change: 0 B Total Size: 4.33 MB 📦 View Changed
|
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.
Purpose
The Docker Hub Workflow's trivy scan blocks the
build-and-push-backendandbuild-and-push-y-providerimage builds on a HIGH-severity CVE (CVE-2026-69247) incryptography. This is currently failing on every branch checked, includingmain: the existingcryptography>=48.0.1override (added for an older CVE) still resolves to49.0.0inuv.lock, which isvulnerable.
50.0.0fixes it.Proposal
cryptographyoverride insrc/backend/pyproject.tomlfrom>=48.0.1to>=50.0.0.src/backend/uv.lock(uv lock) — the only change iscryptography49.0.0 → 50.0.0, no other package moved.