Strawberry GraphQL @ 0.292.0

Released

Remove deprecated graphiql parameter from all HTTP integrations (ASGI, Flask, FastAPI, Quart, Sanic, Chalice, Django, Aiohttp, Channels, and Litestar), deprecated since 0.213.0 .

Migration guide

Before (deprecated):

app = GraphQL(schema, graphiql=True)

After:

app = GraphQL(schema, graphql_ide="graphiql")
 
# or to disable:
app = GraphQL(schema, graphql_ide=None)

Releases contributed by @Ckk3 via #4222