forked from orbit-oss/flask
Merge branch '1.0-maintenance'
This commit is contained in:
commit
1fa9185c7e
12 changed files with 153 additions and 37 deletions
39
CHANGES.rst
39
CHANGES.rst
|
|
@ -7,15 +7,40 @@ Flask Changelog
|
|||
Version 1.1
|
||||
-----------
|
||||
|
||||
unreleased
|
||||
Unreleased
|
||||
|
||||
|
||||
Version 1.0.2
|
||||
-------------
|
||||
|
||||
Unreleased
|
||||
|
||||
|
||||
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
|
||||
|
||||
- Fix registering partials (with no ``__name__``) as view functions
|
||||
|
||||
Version 1.0
|
||||
-----------
|
||||
|
|
@ -228,6 +253,14 @@ Released on April 26th 2018
|
|||
.. _#2709: https://github.com/pallets/flask/pull/2709
|
||||
|
||||
|
||||
Version 0.12.4
|
||||
--------------
|
||||
|
||||
Released on April 29 2018
|
||||
|
||||
- Repackage 0.12.3 to fix package layout issue. (`#2728`_)
|
||||
|
||||
|
||||
Version 0.12.3
|
||||
--------------
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue