Skip to content

Build(deps): Bump strawberry-graphql[fastapi] from 0.234.2 to 0.235.0

Bumps strawberry-graphql[fastapi] from 0.234.2 to 0.235.0.

Release notes

Sourced from strawberry-graphql[fastapi]'s releases.

🍓 0.235.0

This release adds a new configuration to disable field suggestions in the error response.

@strawberry.type
class Query:
    name: str
schema = strawberry.Schema(
query=Query, config=StrawberryConfig(disable_field_suggestions=True)
)

Trying to query { nam } will not suggest to query name instead.

Releases contributed by @​patrick91 via #3537

🍓 0.234.3

Fixes a bug where pydantic models as the default value for an input did not print the proper schema. See this issue.

Releases contributed by @​ppease via #3499

Changelog

Sourced from strawberry-graphql[fastapi]'s changelog.

0.235.0 - 2024-06-10

This release adds a new configuration to disable field suggestions in the error response.

@strawberry.type
class Query:
    name: str
schema = strawberry.Schema(
query=Query, config=StrawberryConfig(disable_field_suggestions=True)
)

Trying to query { nam } will not suggest to query name instead.

Contributed by Patrick Arminio via [PR #3537](strawberry-graphql/strawberry#3537)

0.234.3 - 2024-06-10

Fixes a bug where pydantic models as the default value for an input did not print the proper schema. See this issue.

Contributed by ppease via [PR #3499](strawberry-graphql/strawberry#3499)

Commits

Merge request reports