Strawberry GraphQL @ 0.233.3

Released

This release fixes a typing issue where trying to type a root argument with strawberry.Parent would fail, like in the following example:

import strawberry
@strawberry.type
class SomeType:
@strawberry.field
def hello(self, root: strawberry.Parent[str]) -> str:
return "world"

This should now work as intended.

Releases contributed by @bellini666 via #3529