Releases: actix/actix-net
Releases · actix/actix-net
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-uring
feature for enabling async file I/O on linux. #374 - Server no long listens to
SIGHUP
signal. Previously, the received was not used but did block
subsequent exit signals from working. #389 - Remove
config
module.ServiceConfig
,ServiceRuntime
public 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_iter
to get an iterator over all patterns in a multi-pattern resource. #373 - Fix segment interpolation leaving
Path
in unintended state after matching. #368 - Fix
ResourceDef
PartialEq
implementation. #373 - Re-work
IntoPatterns
trait, adding aPatterns
enum. #372 - Implement
IntoPatterns
forbytestring::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_iter
now 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_mut
and introduceResourceDef::set_name
. #373 - Rename
Router::{*_checked => *_fn}
. #373 - Return type of
ResourceDef::name
is nowOption<&str>
. #373 - Return type of
ResourceDef::pattern
is nowOption<&str>
. #373
actix-macros: v0.2.1
- Add optional argument
system
tomain
macro 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,
%25
is 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
Path
could 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.