Add test and changes

This commit is contained in:
Diggory Blake 2017-03-23 16:15:00 +00:00 committed by Markus Unterwaditzer
parent 12c49c75fb
commit d0e2e7b66c
2 changed files with 35 additions and 0 deletions

15
CHANGES
View file

@ -3,6 +3,21 @@ Flask Changelog
Here you can see the full list of changes between each Flask release.
Version 0.13
------------
Major release, unreleased
- Make `app.run()` into a noop if a Flask application is run from the
development server on the command line. This avoids some behavior that
was confusing to debug for newcomers.
- Change default configuration `JSONIFY_PRETTYPRINT_REGULAR=False`. jsonify()
method returns compressed response by default, and pretty response in
debug mode.
- Call `ctx.auto_pop` with the exception object instead of `None`, in the
event that a `BaseException` such as `KeyboardInterrupt` is raised in a
request handler.
Version 0.12.1
--------------