Strawberry GraphQL @ 0.297.0

Released

Remove the ExecutionContext.errors property, deprecated since 0.276.2 .

Migration guide

Before (deprecated):

class MyExtension(SchemaExtension):
    def on_execute(self):
        yield
        errors = self.execution_context.errors

After:

class MyExtension(SchemaExtension):
    def on_execute(self):
        yield
        errors = self.execution_context.pre_execution_errors

Releases contributed by @Ckk3 via #4214