Skip to content

Commit

Permalink
Update next-release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed Jan 18, 2015
1 parent 59491e9 commit 9811973
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docs/releases/next.rst
Expand Up @@ -66,3 +66,24 @@ In progress
* Header parsing again supports both CRLF and bare LF line separators.
* `.HTTPServer` now always reports ``HTTP/1.1`` instead of echoing
the request version.
* If a `.Future` contains an exception but that exception is never
examined or re-raised (e.g. by yielding the `.Future`), a stack
trace will be logged when the `.Future` is garbage-collected.
* `.IOStream.start_tls` now uses the ``server_hostname`` parameter
for certificate validation.
* Malformed ``_xsrf`` cookies are now ignored instead of causing
uncaught exceptions.
* `.Application.start_request` now has the same signature as
`.HTTPServerConnectionDelegate.start_request`.
* `.HTTPServer` now calls ``start_request`` with the correct
arguments. This change is backwards-incompatible, afffecting any
application which implemented `.HTTPServerConnectionDelegate` by
following the example of `.Application` instead of the documented
method signatures.
* New method `.PeriodicCallback.is_running` can be used to see
whether the `.PeriodicCallback` has been started.
* `.TCPClient` will no longer raise an exception due to an ill-timed
timeout.
* Malformed ``multipart/form-data`` bodies will always be logged
quietly instead of raising an unhandled exception; previously
the behavior was inconsistent depending on the exact error.

0 comments on commit 9811973

Please sign in to comment.