Releases: actix/actix-net
Releases · actix/actix-net
actix-server: v2.0.0-beta.8
Yanked
- Fix non-unix signal handler. #410
actix-tls: v3.0.0-beta.7
actix-macros: v0.2.3
- Fix test macro in presence of other imports named "test". #399
actix-tls: v3.0.0-beta.6
actix-macros: v0.2.2
actix-service: v2.0.1
- Documentation fix. #388
actix-rt: v2.3.0
actix-server: v2.0.0-beta.6
- Add
io-uringfeature for enabling async file I/O on linux. #374 - Server no long listens to
SIGHUPsignal. Previously, the received was not used but did block
subsequent exit signals from working. #389 - Remove
configmodule.ServiceConfig,ServiceRuntimepublic types are removed due to
this change. #349 - Remove
ServerBuilder::configure#349
actix-router: v0.5.0-beta.1
- Fix a bug in multi-patterns where static patterns are interpreted as regex. #366
- Introduce
ResourceDef::pattern_iterto get an iterator over all patterns in a multi-pattern resource. #373 - Fix segment interpolation leaving
Pathin unintended state after matching. #368 - Fix
ResourceDefPartialEqimplementation. #373 - Re-work
IntoPatternstrait, adding aPatternsenum. #372 - Implement
IntoPatternsforbytestring::ByteString. #372 - Rename
Path::{len => segment_count}to be more descriptive of it's purpose. #370 - Rename
ResourceDef::{resource_path => resource_path_from_iter}. #371 ResourceDef::resource_path_from_iternow takes anIntoIterator. #373- Rename
ResourceDef::{resource_path_named => resource_path_from_map}. #371 - Rename
ResourceDef::{is_prefix_match => find_match}. #373 - Rename
ResourceDef::{match_path => capture_match_info}. #373 - Rename
ResourceDef::{match_path_checked => capture_match_info_fn}. #373 - Remove
ResourceDef::name_mutand introduceResourceDef::set_name. #373 - Rename
Router::{*_checked => *_fn}. #373 - Return type of
ResourceDef::nameis nowOption<&str>. #373 - Return type of
ResourceDef::patternis nowOption<&str>. #373
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