diff --git a/Cargo.toml b/Cargo.toml
index d06e47ef8..73d068966 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -33,8 +33,8 @@ members = [
"actix-cors",
"actix-files",
"actix-framed",
- "actix-session",
- "actix-identity",
+# "actix-session",
+# "actix-identity",
"actix-multipart",
"actix-web-actors",
"actix-web-codegen",
diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md
index f2ef217c1..8a25efea1 100644
--- a/actix-http/CHANGES.md
+++ b/actix-http/CHANGES.md
@@ -8,6 +8,10 @@
* Moved actors messages support from actix crate, enabled with feature `actors`.
+* Breaking change: trait MessageBody requires Unpin and accepting Pin<&mut Self> instead of &mut self in the poll_next().
+
+* MessageBody is not implemented for &'static [u8] anymore.
+
### Fixed
* Allow `SameSite=None` cookies to be sent in a response.
diff --git a/actix-http/Cargo.toml b/actix-http/Cargo.toml
index afdb548f5..212129331 100644
--- a/actix-http/Cargo.toml
+++ b/actix-http/Cargo.toml
@@ -43,10 +43,10 @@ secure-cookies = ["ring"]
actors = ["actix"]
[dependencies]
-actix-service = "1.0.1"
+actix-service = "1.0.5"
actix-codec = "0.2.0"
-actix-connect = "1.0.1"
-actix-utils = "1.0.3"
+actix-connect = "1.0.2"
+actix-utils = "1.0.6"
actix-rt = "1.0.0"
actix-threadpool = "0.3.1"
actix-tls = { version = "1.0.0", optional = true }
@@ -93,8 +93,8 @@ flate2 = { version = "1.0.13", optional = true }
fail-ure = { version = "0.1.5", package="failure", optional = true }
[dev-dependencies]
-actix-server = "1.0.0"
-actix-connect = { version = "1.0.0", features=["openssl"] }
+actix-server = "1.0.1"
+actix-connect = { version = "1.0.2", features=["openssl"] }
actix-http-test = { version = "1.0.0", features=["openssl"] }
actix-tls = { version = "1.0.0", features=["openssl"] }
criterion = "0.3"
diff --git a/actix-http/src/body.rs b/actix-http/src/body.rs
index 1a2428e14..912f22e33 100644
--- a/actix-http/src/body.rs
+++ b/actix-http/src/body.rs
@@ -36,7 +36,7 @@ impl BodySize {
pub trait MessageBody {
fn size(&self) -> BodySize;
- fn poll_next(&mut self, cx: &mut Context<'_>) -> Poll