Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
strawberry_graphql-0.276.2.tar.gz | 2025-07-18 | 210.0 kB | |
strawberry_graphql-0.276.2-py3-none-any.whl | 2025-07-18 | 306.6 kB | |
0.276.2 source code.tar.gz | 2025-07-18 | 1.1 MB | |
0.276.2 source code.zip | 2025-07-18 | 1.5 MB | |
README.md | 2025-07-18 | 652 Bytes | |
Totals: 5 Items | 3.2 MB | 0 |
This release renames the ExecutionContext.errors
attribute to ExecutionContext.pre_execution_errors
to better reflect its purpose. The old errors
attribute is now deprecated but still available for backward compatibility.
The pre_execution_errors
attribute specifically stores errors that occur during the pre-execution phase (parsing and validation), making the distinction clearer from errors that might occur during the actual execution phase.
For backward compatibility, accessing ExecutionContext.errors
will now emit a deprecation warning and return the value of pre_execution_errors
.
Releases contributed by @patrick91 via [#3947]