Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions backend-api/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ scikit-learn==1.3.0
matplotlib==3.7.2
seaborn==0.12.2
websockets>=13.0
protobuf>=6.33.5 # not directly required, pinned by Snyk to avoid a vulnerability
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Major protobuf version upgrade may break yfinance compatibility

Medium Severity

The upgrade from protobuf 4.24.4 to 6.33.5 represents a 2-major-version jump that may introduce compatibility issues with yfinance==0.2.65, which depends on protobuf. The Snyk warning in the PR description indicates potential dependency concerns. This codebase heavily uses yfinance for market data fetching. If yfinance has an upper-bound version constraint on protobuf (e.g., <5.0), this change could cause dependency resolution failures or runtime errors. This compatibility should be verified before merging.

Fix in Cursor Fix in Web

Loading