forked from orbit-oss/flask
release 1.0.1
This commit is contained in:
parent
6e1e3e03ca
commit
7567cc0d92
1 changed files with 18 additions and 1 deletions
19
CHANGES.rst
19
CHANGES.rst
|
|
@ -7,12 +7,27 @@ Flask Changelog
|
|||
Version 1.0.1
|
||||
-------------
|
||||
|
||||
unreleased
|
||||
Released on April 29 2018
|
||||
|
||||
- Fix registering partials (with no ``__name__``) as view functions.
|
||||
(`#2730`_)
|
||||
- Don't treat lists returned from view functions the same as tuples.
|
||||
Only tuples are interpreted as response data. (`#2736`_)
|
||||
- Extra slashes between a blueprint's ``url_prefix`` and a route URL
|
||||
are merged. This fixes some backwards compatibility issues with the
|
||||
change in 1.0. (`#2731`_, `#2742`_)
|
||||
- Only trap ``BadRequestKeyError`` errors in debug mode, not all
|
||||
``BadRequest`` errors. This allows ``abort(400)`` to continue
|
||||
working as expected. (`#2735`_)
|
||||
- The ``FLASK_SKIP_DOTENV`` environment variable can be set to ``1``
|
||||
to skip automatically loading dotenv files. (`#2722`_)
|
||||
|
||||
.. _#2722: https://github.com/pallets/flask/issues/2722
|
||||
.. _#2730: https://github.com/pallets/flask/pull/2730
|
||||
.. _#2731: https://github.com/pallets/flask/issues/2731
|
||||
.. _#2735: https://github.com/pallets/flask/issues/2735
|
||||
.. _#2736: https://github.com/pallets/flask/issues/2736
|
||||
.. _#2742: https://github.com/pallets/flask/issues/2742
|
||||
|
||||
|
||||
Version 1.0
|
||||
|
|
@ -224,6 +239,8 @@ Released on April 26th 2018
|
|||
.. _#2691: https://github.com/pallets/flask/pull/2691
|
||||
.. _#2693: https://github.com/pallets/flask/pull/2693
|
||||
.. _#2709: https://github.com/pallets/flask/pull/2709
|
||||
|
||||
|
||||
Version 0.12.4
|
||||
--------------
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue