Skip to content

Releases: actix/actix-net

actix-macros: v0.2.1

08 Jun 17:57
605ec25

Choose a tag to compare

  • Add optional argument system to main macro which can be used to specify the path to actix_rt::System (useful for re-exports). #363

actix-router: v0.4.0

06 Jun 17:50
3be3e11

Choose a tag to compare

  • 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 take impl Into<Cow<'static, str>>. #345

actix-codec: v0.4.0

21 Apr 10:09
b2e9640

Choose a tag to compare

  • No significant changes since v0.4.0-beta.1.

actix-server: v2.0.0-beta.5

20 Apr 07:28
76338a5

Choose a tag to compare

Pre-release
  • 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

17 Apr 01:01
978e4f2

Choose a tag to compare

  • No significant changes from 3.0.0-beta.4.

actix-service: v2.0.0

16 Apr 18:11
1c4e965

Choose a tag to compare

  • Removed pipeline and related structs/functions. #335

actix-utils: v3.0.0-beta.4

01 Apr 12:58
6d66cfb

Choose a tag to compare

Pre-release
  • Add future::Either type. #305

actix-utils: v3.0.0-beta.3

01 Apr 09:39
b068ea1

Choose a tag to compare

Pre-release
  • Moved mpsc to own crate local-channel. #301
  • Moved task::LocalWaker to own crate local-waker. #301
  • Remove timeout module. #301
  • Remove dispatcher module. #301
  • Expose future mod with ready and poll_fn helpers. #301

actix-server: v2.0.0-beta.4

01 Apr 09:39
b068ea1

Choose a tag to compare

Pre-release
  • Prevent panic when shutdown_timeout is very large. f9262db

actix-rt: v2.2.0

29 Mar 06:39
0ee8d03

Choose a tag to compare

  • BREAKING ActixStream::{poll_read_ready, poll_write_ready} methods now return
    Ready object in ok variant. #293
    • Breakage is acceptable since ActixStream was not intended to be public.