diff --git a/.travis.yml b/.travis.yml index bcf051032..b18805417 100644 --- a/.travis.yml +++ b/.travis.yml @@ -44,7 +44,7 @@ script: after_success: - | if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_RUST_VERSION" == "stable" ]]; then - cargo doc --all-features && + cargo doc --no-deps --all-features && echo "" > target/doc/index.html && git clone https://github.com/davisp/ghp-import.git && ./ghp-import/ghp_import.py -n -p -f -m "Documentation upload" -r https://"$GH_TOKEN"@github.com/"$TRAVIS_REPO_SLUG.git" target/doc && diff --git a/CHANGES.md b/CHANGES.md index 655c23cef..d6ff547d5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,7 @@ # Changes +## [1.0.0-alpha.3] - 2019-04-02 + ### Changed * Renamed `TestRequest::to_service()` to `TestRequest::to_srv_request()` @@ -8,7 +10,6 @@ * Removed `Deref` impls - ### Removed * Removed unused `actix_web::web::md()` diff --git a/Cargo.toml b/Cargo.toml index c5ef5f06c..0e2fb32a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" authors = ["Nikolay Kim "] description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust." readme = "README.md" @@ -72,11 +72,11 @@ actix-utils = "0.3.4" actix-router = "0.1.0" actix-rt = "0.2.2" actix-web-codegen = "0.1.0-alpha.1" -actix-http = { version = "0.1.0-alpha.2", features=["fail"] } +actix-http = { version = "0.1.0-alpha.3", features=["fail"] } actix-server = "0.4.2" actix-server-config = "0.1.0" actix-threadpool = "0.1.0" -awc = { version = "0.1.0-alpha.2", optional = true } +awc = { version = "0.1.0-alpha.3", optional = true } bytes = "0.4" derive_more = "0.14" @@ -101,8 +101,8 @@ openssl = { version="0.10", optional = true } rustls = { version = "^0.15", optional = true } [dev-dependencies] -actix-http = { version = "0.1.0-alpha.2", features=["ssl", "brotli", "flate2-zlib"] } -actix-http-test = { version = "0.1.0-alpha.2", features=["ssl"] } +actix-http = { version = "0.1.0-alpha.3", features=["ssl", "brotli", "flate2-zlib"] } +actix-http-test = { version = "0.1.0-alpha.3", features=["ssl"] } rand = "0.6" env_logger = "0.6" serde_derive = "1.0" diff --git a/actix-files/CHANGES.md b/actix-files/CHANGES.md index 4fe8fadb3..7c46b40f7 100644 --- a/actix-files/CHANGES.md +++ b/actix-files/CHANGES.md @@ -1,6 +1,6 @@ # Changes -## [0.1.0-alpha.2] - 2019-04-xx +## [0.1.0-alpha.2] - 2019-04-02 * Add default handler support diff --git a/actix-files/Cargo.toml b/actix-files/Cargo.toml index 3f1bad69e..a1044c6da 100644 --- a/actix-files/Cargo.toml +++ b/actix-files/Cargo.toml @@ -18,7 +18,7 @@ name = "actix_files" path = "src/lib.rs" [dependencies] -actix-web = "1.0.0-alpha.2" +actix-web = "1.0.0-alpha.3" 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.2", features=["ssl"] } +actix-web = { version = "1.0.0-alpha.3", features=["ssl"] } diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index e5a162310..79995b77f 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -1,6 +1,10 @@ # Changes -## [0.1.0-alpha.3] - 2019-04-xx +## [0.1.0-alpha.3] - 2019-04-02 + +### Added + +* Warn when an unsealed private cookie isn't valid UTF-8 ### Fixed diff --git a/actix-http/Cargo.toml b/actix-http/Cargo.toml index 2de624b7c..9d4e15216 100644 --- a/actix-http/Cargo.toml +++ b/actix-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-http" -version = "0.1.0-alpha.2" +version = "0.1.0-alpha.3" authors = ["Nikolay Kim "] description = "Actix http primitives" readme = "README.md" @@ -100,7 +100,7 @@ openssl = { version="0.10", optional = true } actix-rt = "0.2.2" actix-server = { version = "0.4.1", features=["ssl"] } actix-connect = { version = "0.1.0", features=["ssl"] } -actix-http-test = { version = "0.1.0-alpha.2", features=["ssl"] } +actix-http-test = { version = "0.1.0-alpha.3", features=["ssl"] } env_logger = "0.6" serde_derive = "1.0" openssl = { version="0.10" } diff --git a/actix-session/CHANGES.md b/actix-session/CHANGES.md index 3cd156092..85e1123a9 100644 --- a/actix-session/CHANGES.md +++ b/actix-session/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.1.0-alpha.3] - 2019-04-02 + +* Update actix-web + ## [0.1.0-alpha.2] - 2019-03-29 * Update actix-web diff --git a/actix-session/Cargo.toml b/actix-session/Cargo.toml index e39dc7140..956906fad 100644 --- a/actix-session/Cargo.toml +++ b/actix-session/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-session" -version = "0.1.0-alpha.2" +version = "0.1.0-alpha.3" authors = ["Nikolay Kim "] description = "Session for actix web framework." readme = "README.md" @@ -24,7 +24,7 @@ default = ["cookie-session"] cookie-session = ["actix-web/secure-cookies"] [dependencies] -actix-web = "1.0.0-alpha.2" +actix-web = "1.0.0-alpha.3" actix-service = "0.3.4" bytes = "0.4" derive_more = "0.14" diff --git a/actix-web-actors/CHANGES.md b/actix-web-actors/CHANGES.md index 9b1427980..34592aafc 100644 --- a/actix-web-actors/CHANGES.md +++ b/actix-web-actors/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.1.0-alpha.3] - 2019-04-02 + +* Update actix-http and actix-web + ## [0.1.0-alpha.2] - 2019-03-29 * Update actix-http and actix-web diff --git a/actix-web-actors/Cargo.toml b/actix-web-actors/Cargo.toml index 759d6fc31..598d39459 100644 --- a/actix-web-actors/Cargo.toml +++ b/actix-web-actors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web-actors" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" authors = ["Nikolay Kim "] description = "Actix actors support for actix web framework." readme = "README.md" @@ -19,12 +19,12 @@ path = "src/lib.rs" [dependencies] actix = "0.8.0-alpha.2" -actix-web = "1.0.0-alpha.2" -actix-http = "0.1.0-alpha.2" +actix-web = "1.0.0-alpha.3" +actix-http = "0.1.0-alpha.3" actix-codec = "0.1.2" bytes = "0.4" futures = "0.1.25" [dev-dependencies] env_logger = "0.6" -actix-http-test = { version = "0.1.0-alpha.2", features=["ssl"] } +actix-http-test = { version = "0.1.0-alpha.3", features=["ssl"] } diff --git a/actix-web-actors/src/ws.rs b/actix-web-actors/src/ws.rs index b2c0d4043..642222560 100644 --- a/actix-web-actors/src/ws.rs +++ b/actix-web-actors/src/ws.rs @@ -20,7 +20,7 @@ pub use actix_http::ws::{ use actix_web::dev::HttpResponseBuilder; use actix_web::error::{Error, ErrorInternalServerError, PayloadError}; use actix_web::http::{header, Method, StatusCode}; -use actix_web::{HttpMessage, HttpRequest, HttpResponse}; +use actix_web::{HttpRequest, HttpResponse}; use bytes::{Bytes, BytesMut}; use futures::sync::oneshot::Sender; use futures::{Async, Future, Poll, Stream}; diff --git a/awc/CHANGES.md b/awc/CHANGES.md index a91b28bee..0f0bd9f5b 100644 --- a/awc/CHANGES.md +++ b/awc/CHANGES.md @@ -1,7 +1,6 @@ # Changes - -## [0.1.0-alpha.3] - 2019-04-xx +## [0.1.0-alpha.3] - 2019-04-02 ### Added diff --git a/awc/Cargo.toml b/awc/Cargo.toml index ef04d32d1..81d91e19f 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "awc" -version = "0.1.0-alpha.2" +version = "0.1.0-alpha.3" authors = ["Nikolay Kim "] description = "Actix http client." readme = "README.md" @@ -38,7 +38,7 @@ flate2-rust = ["actix-http/flate2-rust"] [dependencies] actix-codec = "0.1.1" actix-service = "0.3.4" -actix-http = "0.1.0-alpa.2" +actix-http = "0.1.0-alpa.3" base64 = "0.10.1" bytes = "0.4" derive_more = "0.14" @@ -55,9 +55,9 @@ openssl = { version="0.10", optional = true } [dev-dependencies] actix-rt = "0.2.2" -actix-web = { version = "1.0.0-alpha.2", features=["ssl"] } -actix-http = { version = "0.1.0-alpa.2", features=["ssl"] } -actix-http-test = { version = "0.1.0-alpha.2", features=["ssl"] } +actix-web = { version = "1.0.0-alpha.3", features=["ssl"] } +actix-http = { version = "0.1.0-alpa.3", 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"] } brotli2 = { version="0.3.2" } diff --git a/test-server/CHANGES.md b/test-server/CHANGES.md index cac5a2afe..14a8ce628 100644 --- a/test-server/CHANGES.md +++ b/test-server/CHANGES.md @@ -1,5 +1,10 @@ # Changes +## [0.1.0-alpha.3] - 2019-04-02 + +* Request functions accept path #743 + + ## [0.1.0-alpha.2] - 2019-03-29 * Added TestServerRuntime::load_body() method diff --git a/test-server/Cargo.toml b/test-server/Cargo.toml index 16a992792..f85e2b156 100644 --- a/test-server/Cargo.toml +++ b/test-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-http-test" -version = "0.1.0-alpha.2" +version = "0.1.0-alpha.3" authors = ["Nikolay Kim "] description = "Actix http test server" readme = "README.md" @@ -35,7 +35,7 @@ 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.2" +awc = "0.1.0-alpha.3" 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-alpa.2" -actix-http = "0.1.0-alpa.2" +actix-web = "1.0.0-alpa.3" +actix-http = "0.1.0-alpa.3"