Releases: encode/starlette
Releases Β· encode/starlette
Version 0.45.1
Fixed
- Collect errors more reliably from WebSocket test client by @graingert in #2814
- Fix unclosed
MemoryObjectReceiveStream
upon exception inBaseHTTPMiddleware
children by @Kludex in #2813
Refactor
- Use a pair of memory object streams instead of two queues by @graingert in #2829
Full Changelog: 0.45.0...0.45.1
Version 0.45.0
Version 0.44.0
Version 0.43.0
Removed
- Remove deprecated
allow_redirects
argument fromTestClient
#2808.
Added
- Make UUID path parameter conversion more flexible #2806.
New Contributors
- @AbduazizZiyodov made their first contribution in #2799
- @edthrn made their first contribution in #2806
Full Changelog: 0.42.0...0.43.0
Version 0.42.0
Added
- Raise
ClientDisconnect
onStreamingResponse
#2732.
Fixed
- Use ETag from headers when parsing If-Range in FileResponse #2761.
- Follow directory symlinks in
StaticFiles
whenfollow_symlinks=True
#2711. - Bump minimum
python-multipart
version to0.0.18
0ba8395. - Bump minimum
httpx
version to0.27.0
#2773.
New Contributors
- @logan-connolly made their first contribution in #2763
- @eltoder made their first contribution in #2768
- @hanxi made their first contribution in #2711
- @viccie30 made their first contribution in #2761
- @dbowring made their first contribution in #2782
- @lealre made their first contribution in #2793
Full Changelog: 0.41.3...0.42.0
Version 0.41.3
Fixed
- Exclude the query parameters from the
scope[raw_path]
on theTestClient
#2716. - Replace
dict
byMapping
onHTTPException.headers
#2749. - Correct middleware argument passing and improve factory pattern #2752.
Full Changelog: 0.41.2...0.41.3
Version 0.41.2
Version 0.41.1
What's Changed
- Change
python-multipart
import topython_multipart
by @Kludex in #2733 - Bump minimum
python-multipart
version to 0.0.13 by @Kludex in #2734
Full Changelog: 0.41.0...0.41.1
Version 0.41.0
Added
- Allow to raise
HTTPException
beforewebsocket.accept()
#2725
Version 0.40.0
This release fixes a Denial of service (DoS) via multipart/form-data
requests.
You can view the full security advisory:
GHSA-f96h-pmfr-66vw
Fixed
- Add
max_part_size
toMultiPartParser
to limit the size of parts inmultipart/form-data
requests fd038f3.