From 7567cc0d92563f514ece89a32dc81a4b5630f4b0 Mon Sep 17 00:00:00 2001 From: David Lord Date: Sun, 29 Apr 2018 18:46:54 -0700 Subject: [PATCH] release 1.0.1 --- CHANGES.rst | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index c1d0275e..5bf4c9d2 100644 --- a/CHANGES.rst +++ b/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 --------------