@@ -7,12 +7,27 @@ Flask Changelog
7
7
Version 1.0.1
8
8
-------------
9
9
10
- unreleased
10
+ Released on April 29 2018
11
11
12
12
- Fix registering partials (with no ``__name__ ``) as view functions.
13
13
(`#2730 `_)
14
-
14
+ - Don't treat lists returned from view functions the same as tuples.
15
+ Only tuples are interpreted as response data. (`#2736 `_)
16
+ - Extra slashes between a blueprint's ``url_prefix `` and a route URL
17
+ are merged. This fixes some backwards compatibility issues with the
18
+ change in 1.0. (`#2731 `_, `#2742 `_)
19
+ - Only trap ``BadRequestKeyError `` errors in debug mode, not all
20
+ ``BadRequest `` errors. This allows ``abort(400) `` to continue
21
+ working as expected. (`#2735 `_)
22
+ - The ``FLASK_SKIP_DOTENV `` environment variable can be set to ``1 ``
23
+ to skip automatically loading dotenv files. (`#2722 `_)
24
+
25
+ .. _#2722 : https://github.com/pallets/flask/issues/2722
15
26
.. _#2730 : https://github.com/pallets/flask/pull/2730
27
+ .. _#2731 : https://github.com/pallets/flask/issues/2731
28
+ .. _#2735 : https://github.com/pallets/flask/issues/2735
29
+ .. _#2736 : https://github.com/pallets/flask/issues/2736
30
+ .. _#2742 : https://github.com/pallets/flask/issues/2742
16
31
17
32
18
33
Version 1.0
@@ -224,6 +239,8 @@ Released on April 26th 2018
224
239
.. _#2691 : https://github.com/pallets/flask/pull/2691
225
240
.. _#2693 : https://github.com/pallets/flask/pull/2693
226
241
.. _#2709 : https://github.com/pallets/flask/pull/2709
242
+
243
+
227
244
Version 0.12.4
228
245
--------------
229
246
0 commit comments