Releases: actix/actix-net
Releases · actix/actix-net
actix-macros: v0.2.1
- Add optional argument
systemtomainmacro which can be used to specify the path toactix_rt::System(useful for re-exports). #363
actix-router: v0.4.0
- When matching path parameters,
%25is now kept in the percent-encoded form; no longer decoded to%. #357 - Path tail patterns now match new lines (
\n) in request URL. #360 - Fixed a safety bug where
Pathcould return a malformed string after percent decoding. #359 - Methods
Path::{add, add_static}now takeimpl Into<Cow<'static, str>>. #345
actix-codec: v0.4.0
- No significant changes since v0.4.0-beta.1.
actix-server: v2.0.0-beta.5
- Server shutdown would notify all workers to exit regardless if shutdown is graceful. This would make all worker shutdown immediately in force shutdown case. #333
actix-utils: v3.0.0
- No significant changes from
3.0.0-beta.4.
actix-service: v2.0.0
- Removed pipeline and related structs/functions. #335
actix-utils: v3.0.0-beta.4
- Add
future::Eithertype. #305
actix-utils: v3.0.0-beta.3
actix-server: v2.0.0-beta.4
- Prevent panic when
shutdown_timeoutis very large. f9262db
actix-rt: v2.2.0
- BREAKING
ActixStream::{poll_read_ready, poll_write_ready}methods now return
Readyobject in ok variant. #293- Breakage is acceptable since
ActixStreamwas not intended to be public.
- Breakage is acceptable since