Releases: actix/actix-net
ByteString v0.1.2
Changes
-
Fix
new()
method -
Make
ByteString::from_static()
andByteString::from_bytes_unchecked()
methods const.
Actix utils v1.0.4
Changes
- Add methods to check
LocalWaker
registration state.
Actix connect v1.0.1
Changes
- Fix trust-dns-resolver compilation
Actix utils v1.0.2
Changes
-
Allow to create
framed::Dispatcher
with custommpsc::Receiver
-
Add
oneshot::Sender::is_canceled()
method
Actix utils v1.0.0
Changes
- Simplify oneshot and mpsc implementations
Actix testing - v1.0.0
Changes
[1.0.0] - 2019-12-11
- Update actix-server to 1.0.0
[1.0.0-alpha.3] - 2019-12-07
- Migrate to tokio 0.2
[1.0.0-alpha.2] - 2019-12-02
- Re-export
test
attribute macros
Actix service v1.0.0
Changes
[1.0.0] - 2019-12-11
Added
- Add Clone impl for Apply service
[1.0.0-alpha.4] - 2019-12-08
Changed
-
Renamed
service_fn
tofn_service
-
Renamed
factory_fn
tofn_factory
-
Renamed
factory_fn_cfg
tofn_factory_with_config
[1.0.0-alpha.3] - 2019-12-06
Changed
-
Add missing Clone impls
-
Restore
Transform::map_init_err()
combinator -
Restore
Service/Factory::apply_fn()
in form ofPipeline/Factory::and_then_apply_fn()
-
Optimize service combinators and futures memory layout
[1.0.0-alpha.2] - 2019-12-02
Changed
-
Use owned config value for service factory
-
Renamed BoxedNewService/BoxedService to BoxServiceFactory/BoxService
[1.0.0-alpha.1] - 2019-11-25
Changed
-
Migraded to
std::future
-
NewService
renamed toServiceFactory
-
Added
pipeline
andpipeline_factory
function
Actix server v1.0.0
Changes
[1.0.0] - 2019-12-11
Changed
- Use actix-net releases
[1.0.0-alpha.4] - 2019-12-08
Changed
- Use actix-service 1.0.0-alpha.4
[1.0.0-alpha.3] - 2019-12-07
Changed
- Migrate to tokio 0.2
Fixed
-
Fix compilation on non-unix platforms
-
Better handling server configuration
[1.0.0-alpha.2] - 2019-12-02
Changed
-
Simplify server service (remove actix-server-config)
-
Allow to wait on
Server
until server stops
Actix runtime v1.0.0
Changes
[1.0.0] - 2019-12-11
- Update dependencies
[1.0.0-alpha.3] - 2019-12-07
Fixed
- Fix compilation on non-unix platforms
Changed
- Migrate to tokio 0.2
[1.0.0-alpha.2] - 2019-12-02
Added
-
Export
main
andtest
attribute macros -
Export
time
module (re-export of tokio-timer) -
Export
net
module (re-export of tokio-net)
[1.0.0-alpha.1] - 2019-11-22
Changed
- Migrate to std::future and tokio 0.2
Actix codec v0.2.0
Changes
[0.2.0] - 2019-12-10
- Use specific futures dependencies
[0.2.0-alpha.4]
- Fix buffer remaining capacity calcualtion
[0.2.0-alpha.3]
-
Use tokio 0.2
-
Fix low/high watermark for write/read buffers
[0.2.0-alpha.2]
- Migrated to
std::future