Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
strawberry_graphql-0.283.1.tar.gz | 2025-10-06 | 212.0 kB | |
strawberry_graphql-0.283.1-py3-none-any.whl | 2025-10-06 | 309.8 kB | |
0.283.1 source code.tar.gz | 2025-10-06 | 1.2 MB | |
0.283.1 source code.zip | 2025-10-06 | 1.6 MB | |
README.md | 2025-10-06 | 741 Bytes | |
Totals: 5 Items | 3.4 MB | 0 |
Fixed multipart subscription header parsing to properly handle optional boundary parameters and quoted subscription spec values. This improves compatibility with different GraphQL clients that may send headers in various formats.
Key improvements:
- Made the
boundary=graphql
parameter optional in multipart subscription detection - Added proper quote stripping for
subscriptionSpec
values (e.g.,subscriptionSpec="1.0"
) - Enhanced test coverage for different header format scenarios
Example of supported headers:
:::raw
Accept: multipart/mixed;boundary=graphql;subscriptionSpec=1.0,application/json
Accept: multipart/mixed;subscriptionSpec="1.0",application/json
Releases contributed by @LouisAmon via [#4002]