diff --git a/CHANGES.md b/CHANGES.md
index 95eecbf84..00d8de588 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -6,6 +6,8 @@
* Do not enable chunked encoding for HTTP/1.0
+* Allow to explicitly disable chunked encoding
+
## 0.3.0 (2018-01-12)
diff --git a/src/context.rs b/src/context.rs
index 13eb884cd..f518e24ad 100644
--- a/src/context.rs
+++ b/src/context.rs
@@ -1,9 +1,9 @@
use std;
use std::marker::PhantomData;
-use std::collections::VecDeque;
use futures::{Async, Future, Poll};
use futures::sync::oneshot::Sender;
use futures::unsync::oneshot;
+use smallvec::SmallVec;
use actix::{Actor, ActorState, ActorContext, AsyncContext,
Address, SyncAddress, Handler, Subscriber, ResponseType, SpawnHandle};
@@ -18,7 +18,7 @@ use httprequest::HttpRequest;
pub trait ActorHttpContext: 'static {
fn disconnected(&mut self);
- fn poll(&mut self) -> Poll