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.

P2 Badge Keep Flask pin compatible with flask-script tooling

Bumping to Flask==3.1.3 here breaks the fuzz server's migration workflow, because this environment still depends on flask-script==2.0.6 and app/manager.py uses flask_script.Manager / MigrateCommand. That stack is based on pre-Flask-2 internals, so running the documented python3 app/manager.py db ... commands will fail at startup unless Flask is kept on a compatible version or the migration tooling is modernized.

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
18 changes: 9 additions & 9 deletions tests/integration/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
beautifulsoup4==4.12.3
blinker==1.8.2
certifi==2024.6.2
certifi==2024.7.4
charset-normalizer==3.3.2
click==8.1.7
deepdiff==7.0.1
deepdiff==8.6.2
Deprecated==1.2.14
Flask==3.0.3
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 Align Blinker pin with Flask 3.1 requirement

Upgrading this file to Flask==3.1.3 without also updating the existing blinker==1.8.2 pin makes the integration environment unsatisfiable, because Flask 3.1 requires Blinker >= 1.9. In practice, tests/integration/setup-venv.sh installs this requirements file directly, so pip install -r requirements.txt will fail before any integration test can run.

Useful? React with 👍 / 👎.

google==3.0.0
googleapis-common-protos==1.63.2
grpcio==1.64.1
idna==3.7
importlib_metadata==7.1.0
iniconfig==2.0.0
itsdangerous==2.2.0
Jinja2==3.1.4
Jinja2==3.1.6
MarkupSafe==2.1.5
opentelemetry-api==1.25.0
opentelemetry-exporter-otlp==1.25.0
Expand All @@ -26,14 +26,14 @@ opentelemetry-semantic-conventions==0.46b0
ordered-set==4.1.0
packaging==24.1
pluggy==1.5.0
protobuf==4.25.3
protobuf==5.29.6
pytest==8.2.2
PyYAML==6.0.1
requests==2.32.3
requests==2.33.0
soupsieve==2.5
typing_extensions==4.12.2
urllib3==2.2.2
waitress==3.0.0
Werkzeug==3.0.3
urllib3==2.6.3
waitress==3.0.1
Werkzeug==3.1.6
wrapt==1.16.0
zipp==3.19.2
Loading