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
2 changes: 1 addition & 1 deletion requirements/local.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r base.txt

Werkzeug==2.2.3 # https://github.com/pallets/werkzeug
Werkzeug==3.1.4 # https://github.com/pallets/werkzeug

Copilot AI Dec 1, 2025

Copy link

Choose a reason for hiding this comment

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

Upgrading Werkzeug from 2.2.3 to 3.1.4 may cause compatibility issues with Flower 1.2.0 (defined in base.txt). Werkzeug 3.x introduced breaking changes, and Flower 1.2.0 (released in 2022) was built for Werkzeug 2.x. This could break the Flower monitoring dashboard used in the celeryworker service.

Consider either:

  1. Testing Flower extensively after this upgrade to ensure it still works
  2. Upgrading Flower to version 2.0.0 or later (which supports Werkzeug 3.x) alongside this change
  3. Pinning Werkzeug to a patched 2.x version (e.g., 2.3.8) that addresses the security vulnerability without breaking compatibility
Suggested change
Werkzeug==3.1.4 # https://github.com/pallets/werkzeug
Werkzeug==2.3.8 # https://github.com/pallets/werkzeug

Copilot uses AI. Check for mistakes.
ipdb==0.13.13 # https://github.com/gotcha/ipdb
psycopg2==2.9.3 # https://github.com/psycopg/psycopg2
watchgod==0.7 # https://github.com/samuelcolvin/watchgod
Expand Down