mirror of https://github.com/fafhrd91/actix-web
update changelog
This commit is contained in:
parent
1d7ec0bcd9
commit
c8b68602bd
|
@ -7,12 +7,15 @@
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* Align `DefaultHeader` method terminology, deprecating previous methods. [#2510]
|
* Align `DefaultHeader` method terminology, deprecating previous methods. [#2510]
|
||||||
|
* Response service types in `ErrorHandlers` middleware now use `ServiceResponse<EitherBody<B>>` to allow changing the body type. [#2515]
|
||||||
|
* Both variants in `ErrorHandlerResponse` now use `ServiceResponse<EitherBody<B>>`. [#2515]
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
* Top-level `EitherExtractError` export. [#2510]
|
* Top-level `EitherExtractError` export. [#2510]
|
||||||
* Conversion implementations for `either` crate. [#2516]
|
* Conversion implementations for `either` crate. [#2516]
|
||||||
|
|
||||||
[#2510]: https://github.com/actix/actix-web/pull/2510
|
[#2510]: https://github.com/actix/actix-web/pull/2510
|
||||||
|
[#2515]: https://github.com/actix/actix-web/pull/2515
|
||||||
[#2516]: https://github.com/actix/actix-web/pull/2516
|
[#2516]: https://github.com/actix/actix-web/pull/2516
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -4,15 +4,25 @@
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
cargo test --lib --tests -p=actix-router --all-features
|
EXIT=0
|
||||||
cargo test --lib --tests -p=actix-http --all-features
|
|
||||||
cargo test --lib --tests -p=actix-web --features=rustls,openssl -- --skip=test_reading_deflate_encoding_large_random_rustls
|
|
||||||
cargo test --lib --tests -p=actix-web-codegen --all-features
|
|
||||||
cargo test --lib --tests -p=awc --all-features
|
|
||||||
cargo test --lib --tests -p=actix-http-test --all-features
|
|
||||||
cargo test --lib --tests -p=actix-test --all-features
|
|
||||||
cargo test --lib --tests -p=actix-files
|
|
||||||
cargo test --lib --tests -p=actix-multipart --all-features
|
|
||||||
cargo test --lib --tests -p=actix-web-actors --all-features
|
|
||||||
|
|
||||||
cargo test --workspace --doc
|
save_exit_code() {
|
||||||
|
eval $@
|
||||||
|
local CMD_EXIT=$?
|
||||||
|
[ "$CMD_EXIT" = "0" ] || EXIT=$CMD_EXIT
|
||||||
|
}
|
||||||
|
|
||||||
|
save_exit_code cargo test --lib --tests -p=actix-router --all-features
|
||||||
|
save_exit_code cargo test --lib --tests -p=actix-http --all-features
|
||||||
|
save_exit_code cargo test --lib --tests -p=actix-web --features=rustls,openssl -- --skip=test_reading_deflate_encoding_large_random_rustls
|
||||||
|
save_exit_code cargo test --lib --tests -p=actix-web-codegen --all-features
|
||||||
|
save_exit_code cargo test --lib --tests -p=awc --all-features
|
||||||
|
save_exit_code cargo test --lib --tests -p=actix-http-test --all-features
|
||||||
|
save_exit_code cargo test --lib --tests -p=actix-test --all-features
|
||||||
|
save_exit_code cargo test --lib --tests -p=actix-files
|
||||||
|
save_exit_code cargo test --lib --tests -p=actix-multipart --all-features
|
||||||
|
save_exit_code cargo test --lib --tests -p=actix-web-actors --all-features
|
||||||
|
|
||||||
|
save_exit_code cargo test --workspace --doc
|
||||||
|
|
||||||
|
exit $EXIT
|
||||||
|
|
Loading…
Reference in New Issue