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
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Flask==1.1.4
Flask==2.2.5

Choose a reason for hiding this comment

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

P1 Badge Avoid bumping Flask beyond Flask‑Script compatibility

The fuzz server still boots via flask_script.Manager (see app/manager.py), but this package hasn’t been updated for Flask 2.x and imports internals such as flask._compat that were removed starting with Flask 2.0. Pinning Flask to 2.2.5 here will cause import flask_script to crash with ModuleNotFoundError: flask._compat, so the management CLI can no longer start. Unless the codebase is migrated away from flask-script, the Flask pin needs to stay on a 1.x release that still provides those internals.

Useful? React with 👍 / 👎.

Flask_SQLAlchemy==2.5.1
flask-migrate==2.7.0
flask-script==2.0.6
flask-cors==3.0.10
flask-cors==6.0.0
flask-caching==2.0.0
werkzeug==1.0.1
werkzeug==3.0.6
markupsafe==2.0.1
flask-apscheduler==1.12.4
psutil==5.9.2
Expand Down
Loading