diff --git a/demo/backend/server/app.py b/demo/backend/server/app.py index 9902f475..424e85bb 100644 --- a/demo/backend/server/app.py +++ b/demo/backend/server/app.py @@ -128,6 +128,10 @@ def get_context(self, request: Request, response: Response) -> Any: # https://strawberry.rocks/docs/operations/deployment # https://strawberry.rocks/docs/integrations/flask allow_queries_via_get=False, + # Strawberry recently changed multipart request handling, which now + # requires enabling support explicitly for views. + # https://github.com/strawberry-graphql/strawberry/issues/3655 + multipart_uploads_enabled=True, ), ) diff --git a/setup.py b/setup.py index 54ec5755..c67a949f 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ "gunicorn>=23.0.0", "imagesize>=1.4.1", "pycocotools>=2.0.8", - "strawberry-graphql>=0.239.2", + "strawberry-graphql>=0.243.0", ], "dev": [ "black==24.2.0",