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 examples/next-fastapi/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pydantic==2.8.2
pydantic_core==2.20.1
Pygments==2.18.0
python-dotenv==1.0.1
python-multipart==0.0.9
python-multipart==0.0.31

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

High — python-multipart ≥0.0.18 changed the parse_options_header return type; starlette's FormParser (v0.37.2, pinned here) calls the old two-tuple signature. Any multipart/form-data request will raise TypeError at runtime. This is the same dependency triangle that blocked #77 and #85.

Suggestion: Coordinate a tri-bump before merging:

  1. fastapi>=0.115.0 (removes starlette upper-bound)
  2. starlette>=0.40.0 (adds python-multipart 0.0.18+ compat)
  3. python-multipart0.0.31 (this PR's change — valid once above land)

PyYAML==6.0.1
rich==13.7.1
shellingham==1.5.4
Expand Down
Loading