1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-27 01:20:35 +00:00

prepare alpha5 release

This commit is contained in:
Nikolay Kim 2019-04-12 14:00:45 -07:00
parent 87167f6581
commit 1f2b15397d
15 changed files with 55 additions and 48 deletions

View file

@ -1,9 +1,15 @@
# Changes
## [1.0.0-alpha.5] - 2019-04-12
### Added
* Added async io `TestBuffer` for testing.
### Deleted
* Removed native-tls support
## [1.0.0-alpha.4] - 2019-04-08

View file

@ -1,6 +1,6 @@
[package]
name = "actix-web"
version = "1.0.0-alpha.4"
version = "1.0.0-alpha.5"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust."
readme = "README.md"
@ -38,7 +38,7 @@ members = [
]
[package.metadata.docs.rs]
features = ["ssl", "tls", "brotli", "flate2-zlib", "secure-cookies", "client", "rust-tls"]
features = ["ssl", "brotli", "flate2-zlib", "secure-cookies", "client", "rust-tls"]
[features]
default = ["brotli", "flate2-zlib", "secure-cookies", "client"]
@ -58,9 +58,6 @@ flate2-rust = ["actix-http/flate2-rust"]
# sessions feature, session require "ring" crate and c compiler
secure-cookies = ["actix-http/secure-cookies"]
# tls
tls = ["native-tls", "actix-server/ssl"]
# openssl
ssl = ["openssl", "actix-server/ssl", "awc/ssl"]
@ -74,11 +71,11 @@ actix-utils = "0.3.4"
actix-router = "0.1.2"
actix-rt = "0.2.2"
actix-web-codegen = "0.1.0-alpha.1"
actix-http = { version = "0.1.0-alpha.4", features=["fail"] }
actix-http = { version = "0.1.0-alpha.5", features=["fail"] }
actix-server = "0.4.2"
actix-server-config = "0.1.0"
actix-threadpool = "0.1.0"
awc = { version = "0.1.0-alpha.4", optional = true }
awc = { version = "0.1.0-alpha.5", optional = true }
bytes = "0.4"
derive_more = "0.14"
@ -92,17 +89,16 @@ parking_lot = "0.7"
regex = "1.0"
serde = { version = "1.0", features=["derive"] }
serde_json = "1.0"
serde_urlencoded = "^0.5.3"
serde_urlencoded = "0.5.3"
time = "0.1"
url = { version="1.7", features=["query_encoding"] }
# ssl support
native-tls = { version="0.2", optional = true }
openssl = { version="0.10", optional = true }
rustls = { version = "^0.15", optional = true }
[dev-dependencies]
actix-http = { version = "0.1.0-alpha.4", features=["ssl", "brotli", "flate2-zlib"] }
actix-http = { version = "0.1.0-alpha.5", features=["ssl", "brotli", "flate2-zlib"] }
actix-http-test = { version = "0.1.0-alpha.3", features=["ssl"] }
rand = "0.6"
env_logger = "0.6"
@ -117,7 +113,6 @@ opt-level = 3
codegen-units = 1
[patch.crates-io]
actix = { git = "https://github.com/actix/actix.git" }
actix-web = { path = "." }
actix-http = { path = "actix-http" }
actix-http-test = { path = "test-server" }

View file

@ -18,7 +18,7 @@ name = "actix_files"
path = "src/lib.rs"
[dependencies]
actix-web = "1.0.0-alpha.4"
actix-web = "1.0.0-alpha.5"
actix-service = "0.3.4"
bitflags = "1"
bytes = "0.4"
@ -31,4 +31,4 @@ percent-encoding = "1.0"
v_htmlescape = "0.4"
[dev-dependencies]
actix-web = { version = "1.0.0-alpha.4", features=["ssl"] }
actix-web = { version = "1.0.0-alpha.5", features=["ssl"] }

View file

@ -1,6 +1,6 @@
[package]
name = "actix-framed"
version = "0.1.0"
version = "0.1.0-alpha.1"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix framed app server"
readme = "README.md"
@ -25,7 +25,7 @@ actix-service = "0.3.6"
actix-utils = "0.3.4"
actix-router = "0.1.2"
actix-rt = "0.2.2"
actix-http = { path = "../actix-http" }
actix-http = "0.1.0-alpha.5"
bytes = "0.4"
futures = "0.1.25"
@ -33,5 +33,5 @@ log = "0.4"
[dev-dependencies]
actix-server = { version = "0.4.1", features=["ssl"] }
actix-connect = { version = "0.1.0", features=["ssl"] }
actix-connect = { version = "0.1.4", features=["ssl"] }
actix-http-test = { version = "0.1.0-alpha.3", features=["ssl"] }

5
actix-framed/changes.md Normal file
View file

@ -0,0 +1,5 @@
# Changes
## [0.1.0-alpha.1] - 2019-04-12
* Initial release

View file

@ -1,6 +1,6 @@
# Changes
## [0.1.0-alpha.5] - 2019-04-xx
## [0.1.0-alpha.5] - 2019-04-12
### Added

View file

@ -1,6 +1,6 @@
[package]
name = "actix-http"
version = "0.1.0-alpha.4"
version = "0.1.0-alpha.5"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix http primitives"
readme = "README.md"
@ -60,9 +60,9 @@ derive_more = "0.14"
either = "1.5.2"
encoding = "0.2"
futures = "0.1"
hashbrown = "0.1.8"
hashbrown = "0.2.0"
h2 = "0.1.16"
http = "0.1.16"
http = "0.1.17"
httparse = "1.3"
indexmap = "1.0"
lazy_static = "1.0"
@ -81,14 +81,14 @@ time = "0.1"
tokio-tcp = "0.1.3"
tokio-timer = "0.2"
tokio-current-thread = "0.1"
trust-dns-resolver = { version="0.11.0-alpha.2", default-features = false }
trust-dns-resolver = { version="0.11.0-alpha.3", default-features = false }
# for secure cookie
ring = { version = "0.14.6", optional = true }
# compression
brotli2 = { version="^0.3.2", optional = true }
flate2 = { version="^1.0.2", optional = true, default-features = false }
brotli2 = { version="0.3.2", optional = true }
flate2 = { version="1.0.7", optional = true, default-features = false }
# optional deps
failure = { version = "0.1.5", optional = true }
@ -97,7 +97,7 @@ openssl = { version="0.10", optional = true }
[dev-dependencies]
actix-rt = "0.2.2"
actix-server = { version = "0.4.1", features=["ssl"] }
actix-connect = { version = "0.1.0", features=["ssl"] }
actix-connect = { version = "0.1.4", features=["ssl"] }
actix-http-test = { version = "0.1.0-alpha.3", features=["ssl"] }
env_logger = "0.6"
serde_derive = "1.0"

View file

@ -24,12 +24,12 @@ default = ["cookie-session"]
cookie-session = ["actix-web/secure-cookies"]
[dependencies]
actix-web = "1.0.0-alpha.4"
actix-web = "1.0.0-alpha.5"
actix-service = "0.3.4"
bytes = "0.4"
derive_more = "0.14"
futures = "0.1.25"
hashbrown = "0.1.8"
hashbrown = "0.2.0"
serde = "1.0"
serde_json = "1.0"
time = "0.1"

View file

@ -18,9 +18,9 @@ name = "actix_web_actors"
path = "src/lib.rs"
[dependencies]
actix = "0.8.0-alpha.2"
actix-web = "1.0.0-alpha.3"
actix-http = "0.1.0-alpha.3"
actix = "0.8.0-alpha.3"
actix-web = "1.0.0-alpha.5"
actix-http = "0.1.0-alpha.5"
actix-codec = "0.1.2"
bytes = "0.4"
futures = "0.1.25"

View file

@ -16,7 +16,7 @@ quote = "0.6"
syn = { version = "0.15", features = ["full", "parsing"] }
[dev-dependencies]
actix-web = { version = "1.0.0-alpha.2" }
actix-http = { version = "0.1.0-alpha.2", features=["ssl"] }
actix-http-test = { version = "0.1.0-alpha.2", features=["ssl"] }
actix-web = { version = "1.0.0-alpha.5" }
actix-http = { version = "0.1.0-alpha.5", features=["ssl"] }
actix-http-test = { version = "0.1.0-alpha.3", features=["ssl"] }
futures = { version = "0.1" }

View file

@ -1,6 +1,6 @@
# Changes
## [0.1.0-alpha.5] - 2019-04-xx
## [0.1.0-alpha.5] - 2019-04-12
### Changed

View file

@ -1,6 +1,6 @@
[package]
name = "awc"
version = "0.1.0-alpha.4"
version = "0.1.0-alpha.5"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix http client."
readme = "README.md"
@ -36,9 +36,9 @@ flate2-zlib = ["actix-http/flate2-zlib"]
flate2-rust = ["actix-http/flate2-rust"]
[dependencies]
actix-codec = "0.1.1"
actix-service = "0.3.4"
actix-http = "0.1.0-alpha.4"
actix-codec = "0.1.2"
actix-service = "0.3.6"
actix-http = "0.1.0-alpha.5"
base64 = "0.10.1"
bytes = "0.4"
derive_more = "0.14"
@ -55,8 +55,8 @@ openssl = { version="0.10", optional = true }
[dev-dependencies]
actix-rt = "0.2.2"
actix-web = { version = "1.0.0-alpha.4", features=["ssl"] }
actix-http = { version = "0.1.0-alpha.4", features=["ssl"] }
actix-web = { version = "1.0.0-alpha.5", features=["ssl"] }
actix-http = { version = "0.1.0-alpha.5", features=["ssl"] }
actix-http-test = { version = "0.1.0-alpha.3", features=["ssl"] }
actix-utils = "0.3.4"
actix-server = { version = "0.4.1", features=["ssl"] }

View file

@ -67,7 +67,6 @@
//! ## Package feature
//!
//! * `client` - enables http client
//! * `tls` - enables ssl support via `native-tls` crate
//! * `ssl` - enables ssl support via `openssl` crate, supports `http/2`
//! * `rust-tls` - enables ssl support via `rustls` crate, supports `http/2`
//! * `secure-cookies` - enables secure cookies support, includes `ring` crate as

View file

@ -14,6 +14,8 @@ use actix_service::{FnService, IntoNewService, NewService, Service};
use bytes::Bytes;
use futures::future::{lazy, Future};
pub use actix_http::test::TestBuffer;
use crate::config::{AppConfig, AppConfigInner};
use crate::data::RouteData;
use crate::dev::{Body, Payload};

View file

@ -30,12 +30,12 @@ default = []
ssl = ["openssl", "actix-server/ssl", "awc/ssl"]
[dependencies]
actix-codec = "0.1.1"
actix-rt = "0.2.1"
actix-service = "0.3.4"
actix-server = "0.4.0"
actix-utils = "0.3.4"
awc = "0.1.0-alpha.3"
actix-codec = "0.1.2"
actix-rt = "0.2.2"
actix-service = "0.3.6"
actix-server = "0.4.1"
actix-utils = "0.3.5"
awc = "0.1.0-alpha.5"
base64 = "0.10"
bytes = "0.4"
@ -55,5 +55,5 @@ tokio-timer = "0.2"
openssl = { version="0.10", optional = true }
[dev-dependencies]
actix-web = "1.0.0-alpha.3"
actix-http = "0.1.0-alpha.3"
actix-web = "1.0.0-alpha.5"
actix-http = "0.1.0-alpha.5"