Skip to content
Open
Show file tree
Hide file tree
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 +1 @@
requests==2.32.4
requests==2.33.0
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Flask==1.1.4
Flask==3.1.3
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Pin Flask to a Python-3.8-compatible version

Bumping Flask to 3.1.3 breaks the default fuzz server build: server/Dockerfile uses FROM ubuntu:20.04 and installs distro python3 (3.8), then runs pip install -r /requirements.txt; Flask 3.1 dropped Python 3.8 support, so dependency resolution fails and the server service in tests/fuzz/wasm-mutator-fuzz/docker-compose.yml cannot start.

Useful? React with 👍 / 👎.

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Switch file download endpoints to Flask 3 send_file API

After this Flask 3.1.3 upgrade, app/main.py still calls send_file(..., attachment_filename=...) in both /get_error_txt and /get_cases_zip; that legacy keyword is no longer accepted in current Flask, so these routes will throw TypeError when users download artifacts. This regression appears only once the new dependency pin is installed.

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.1.6
markupsafe==2.0.1
flask-apscheduler==1.12.4
psutil==5.9.2
Expand Down
Loading