Compare commits

..

2 Commits

Author SHA1 Message Date
Yuki Okushi ab2a5d6d68 add changelog entry 2025-11-16 10:29:26 +09:00
Yuki Okushi 6f0db766a9 feat: improve `HttpResponseBuilder::streaming` with SizedStream 2025-11-16 10:29:26 +09:00
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
## Unreleased
- `actix_web::response::builder::HttpResponseBuilder::streaming()` now sets `Content-Type` to `application/octet-stream` if `Content-Type` does not exist.
- `actix_web::response::builder::HttpResponseBuilder::streaming()` now calls `actix_web::response::builder::HttpResponseBuilder::no_chunking()` if `Content-Length` is set by user.
- `actix_web::response::builder::HttpResponseBuilder::streaming()` now calls `actix_web::response::builder::HttpResponseBuilder::no_chunking()` and returns `SizedStream` if `Content-Length` is set by user.
- Add `ws` crate feature (on-by-default) which forwards to `actix-http` and guards some of its `ResponseError` impls.
- Add public export for `EitherExtractError` in `error` module.