Skip to content

Commit 1955d6a

Browse files
author
dayiguizhen
committed
Add the link of pull so that it’s easy for readers to check the changes in code.
1 parent 54869a0 commit 1955d6a

File tree

1 file changed

+30
-15
lines changed

1 file changed

+30
-15
lines changed

CHANGES.rst

Lines changed: 30 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -323,34 +323,42 @@ Released on December 21st 2016, codename Punsch.
323323

324324
- the cli command now responds to `--version`.
325325
- Mimetype guessing and ETag generation for file-like objects in ``send_file``
326-
has been removed, as per issue ``#104``. See pull request ``#1849``.
326+
has been removed, as per issue ``#104``. (`#1849`_)
327327
- Mimetype guessing in ``send_file`` now fails loudly and doesn't fall back to
328-
``application/octet-stream``. See pull request ``#1988``.
328+
``application/octet-stream``. (`#1988`_)
329329
- Make ``flask.safe_join`` able to join multiple paths like ``os.path.join``
330-
(pull request ``#1730``).
330+
(`#1730`_).
331331
- Revert a behavior change that made the dev server crash instead of returning
332-
an Internal Server Error (pull request ``#2006``).
332+
an Internal Server Error (`#2006`_).
333333
- Correctly invoke response handlers for both regular request dispatching as
334334
well as error handlers.
335335
- Disable logger propagation by default for the app logger.
336336
- Add support for range requests in ``send_file``.
337337
- ``app.test_client`` includes preset default environment, which can now be
338338
directly set, instead of per ``client.get``.
339+
340+
.. _#1849: https://github.com/pallets/flask/pull/1849
341+
.. _#1988: https://github.com/pallets/flask/pull/1988
342+
.. _#1730: https://github.com/pallets/flask/pull/1730
343+
.. _#2006: https://github.com/pallets/flask/pull/2006
339344

340345
Version 0.11.2
341346
--------------
342347

343348
Bugfix release, unreleased
344349

345-
- Fix crash when running under PyPy3, see pull request ``#1814``.
350+
- Fix crash when running under PyPy3. (`#1814`_)
351+
352+
.. _#1814: https://github.com/pallets/flask/pull/1814
346353

347354
Version 0.11.1
348355
--------------
349356

350357
Bugfix release, released on June 7th 2016.
351358

352-
- Fixed a bug that prevented ``FLASK_APP=foobar/__init__.py`` from working. See
353-
pull request ``#1872``.
359+
- Fixed a bug that prevented ``FLASK_APP=foobar/__init__.py`` from working. (`#1872`_)
360+
361+
.. _#1872: https://github.com/pallets/flask/pull/1872
354362

355363
Version 0.11
356364
------------
@@ -414,22 +422,29 @@ Released on May 29th 2016, codename Absinthe.
414422
- The automatically provided ``OPTIONS`` method is now correctly disabled if
415423
the user registered an overriding rule with the lowercase-version
416424
``options`` (issue ``#1288``).
417-
- ``flask.json.jsonify`` now supports the ``datetime.date`` type (pull request
418-
``#1326``).
425+
- ``flask.json.jsonify`` now supports the ``datetime.date`` type (`#1326`_).
419426
- Don't leak exception info of already catched exceptions to context teardown
420-
handlers (pull request ``#1393``).
421-
- Allow custom Jinja environment subclasses (pull request ``#1422``).
427+
handlers (`#1393`_).
428+
- Allow custom Jinja environment subclasses (`#1422`_).
422429
- Updated extension dev guidelines.
423430

424431
- ``flask.g`` now has ``pop()`` and ``setdefault`` methods.
425432
- Turn on autoescape for ``flask.templating.render_template_string`` by default
426-
(pull request ``#1515``).
427-
- ``flask.ext`` is now deprecated (pull request ``#1484``).
433+
(`#1515`_).
434+
- ``flask.ext`` is now deprecated (`#1484`_).
428435
- ``send_from_directory`` now raises BadRequest if the filename is invalid on
429-
the server OS (pull request ``#1763``).
430-
- Added the ``JSONIFY_MIMETYPE`` configuration variable (pull request ``#1728``).
436+
the server OS (`#1763`_).
437+
- Added the ``JSONIFY_MIMETYPE`` configuration variable (`#1728`_).
431438
- Exceptions during teardown handling will no longer leave bad application
432439
contexts lingering around.
440+
441+
.. _#1326: https://github.com/pallets/flask/pull/1326
442+
.. _#1393: https://github.com/pallets/flask/pull/1393
443+
.. _#1422: https://github.com/pallets/flask/pull/1422
444+
.. _#1515: https://github.com/pallets/flask/pull/1515
445+
.. _#1484: https://github.com/pallets/flask/pull/1484
446+
.. _#1763: https://github.com/pallets/flask/pull/1763
447+
.. _#1728: https://github.com/pallets/flask/pull/1728
433448

434449
Version 0.10.2
435450
--------------

0 commit comments

Comments
 (0)