File tree 1 file changed +10
-14
lines changed 1 file changed +10
-14
lines changed Original file line number Diff line number Diff line change 1
1
Flask Changelog
2
2
===============
3
3
4
- Here you can see the full list of changes between each Flask release.
5
-
6
- Version 0.13
7
- ------------
8
-
9
- Major release, unreleased
10
-
11
- - Make `app.run()` into a noop if a Flask application is run from the
12
- development server on the command line. This avoids some behavior that
13
- was confusing to debug for newcomers.
14
- - Change default configuration `JSONIFY_PRETTYPRINT_REGULAR=False`. jsonify()
15
- method returns compressed response by default, and pretty response in
16
- debug mode.
17
4
18
5
Version 0.12.3
19
6
--------------
20
7
21
8
Bugfix release, unreleased
22
9
23
- - Fix a ValueError caused by invalid Range requests in some cases
10
+ - :func:`Request.get_json` no longer accepts arbitrary encodings.
11
+ Incoming JSON should be encoded using UTF-8 per :rfc:`8259`, but
12
+ Flask will autodetect UTF-8, -16, or -32. (`#2692`_)
13
+ - Fix a Python warning about imports when using ``python -m flask``.
14
+ (`#2666`_)
15
+ - Fix a ``ValueError`` caused by invalid ``Range`` requests in some
16
+ cases.
17
+
18
+ .. _#2666: https://github.com/pallets/flask/issues/2666
19
+ .. _#2692: https://github.com/pallets/flask/issues/2692
24
20
25
21
26
22
Version 0.12.2
You can’t perform that action at this time.
0 commit comments