Skip to content

Commit b354c37

Browse files
committed
add changelog for 0.12.3
1 parent b178e89 commit b354c37

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

CHANGES

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,22 @@
11
Flask Changelog
22
===============
33

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.
174

185
Version 0.12.3
196
--------------
207

218
Bugfix release, unreleased
229

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
2420

2521

2622
Version 0.12.2

0 commit comments

Comments
 (0)