chore: Update changelog (#1021)

This commit is contained in:
Kurt Griffiths
2017-04-26 23:38:01 -06:00
committed by John Vrbanac
parent 097cc93aa1
commit 77b5afafe3
2 changed files with 10 additions and 0 deletions

View File

@@ -45,10 +45,15 @@ New & Improved
- Improved the documentation for ``falcon.HTTPError``, particularly
around customizing error serialization.
- Misc. improvements to the look and feel of Falcon's documentation.
- The tutorial in the docs was revamped, and now includes guidance on
testing Falcon applications.
Fixed
-----
- Certain non-alphanumeric characters, such as parenthesis, are not
handled properly in complex URI template path segments that are
comprised of both literal text and field definitions.
- When the WSGI server does not provide a `wsgi.file_wrapper` object,
Falcon wraps ``Response.stream`` in a simple iterator
object that does not implement `close()`. The iterator should be

View File

@@ -45,10 +45,15 @@ New & Improved
- Improved the documentation for :class:`falcon.HTTPError`, particularly
around customizing error serialization.
- Misc. improvements to the look and feel of Falcon's documentation.
- The tutorial in the docs was revamped, and now includes guidance on
testing Falcon applications.
Fixed
-----
- Certain non-alphanumeric characters, such as parenthesis, are not
handled properly in complex URI template path segments that are
comprised of both literal text and field definitions.
- When the WSGI server does not provide a `wsgi.file_wrapper` object,
Falcon wraps :attr:`Response.stream` in a simple iterator
object that does not implement `close()`. The iterator should be