Strawberry GraphQL @ 0.288.3

Released

Fixed a bug where strawberry.Maybe[T] was incorrectly accepting null values when passed through variables

Previously, Maybe[T] returned a validation error for literal null values in GraphQL queries, but allowed null when passed via variables, resulting in Some(None) reaching the resolver instead of raising a validation error.

This fix ensures consistent validation behavior for Maybe[T] regardless of how the input is provided:

Releases contributed by @bellini666 via #4096