Releases: strawberry-graphql/strawberry
Releases · strawberry-graphql/strawberry
🍓 0.262.6
This release updates the Content-Type header from "text/html"
to "text/html; charset=utf-8"
to prevent the GraphQL IDE from displaying unusual or incorrect characters.
Releases contributed by @moritz89 via #3824
🍓 0.262.5
This release updates the internals of our subscription implementation, to make the code
easier to maintain for future changes.
Releases contributed by @patrick91 via #3787
🍓 0.262.4
This release adds support for the upcoming version of Pydantic (2.11)
Releases contributed by @patrick91 via #3808
🍓 0.262.2
This release adds missing packaging
dependency required by DatadogTracingExtension
Releases contributed by @jakub-bacic via #3803
🍓 0.262.1
This release updates the handling of the Django graphql/graphiql.html
template, if provided; it will now receive the current request as context.
Releases contributed by @sersorrel via #3800
🍓 0.262.0
This release adds support for exporting schema created by a callable:
strawberry export-schema package.module:create_schema
when
def create_schema():
return strawberry.Schema(query=Query)
Releases contributed by @alexey-pelykh via #3797
🍓 0.261.1
This release updates the Python version requirement to use python >= 3.9 instead of ^3.9 to avoid conflicts with other projects that use >= 3.x
Releases contributed by @PaleNeutron via #3789
🍓 0.261.0
This release adds support for type[strawberry.UNSET]
in addition to strawberry.types.unset.UnsetType
for annotations.
@strawberry.type
class User:
name: str | None = UNSET
age: int | None | type[strawberry.UNSET] = UNSET
Releases contributed by @alexey-pelykh via #3765
🍓 0.260.4
This release adds support for Datadog ddtrace v3.0.0 in the DatadogTracingExtension
Releases contributed by @jonfinerty via #3794