@@ -323,34 +323,42 @@ Released on December 21st 2016, codename Punsch.
323
323
324
324
- the cli command now responds to `--version `.
325
325
- 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 `_)
327
327
- 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 `_)
329
329
- Make ``flask.safe_join `` able to join multiple paths like ``os.path.join ``
330
- (pull request `` #1730 `` ).
330
+ (` #1730 `_ ).
331
331
- 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 `_ ).
333
333
- Correctly invoke response handlers for both regular request dispatching as
334
334
well as error handlers.
335
335
- Disable logger propagation by default for the app logger.
336
336
- Add support for range requests in ``send_file ``.
337
337
- ``app.test_client `` includes preset default environment, which can now be
338
338
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
339
344
340
345
Version 0.11.2
341
346
--------------
342
347
343
348
Bugfix release, unreleased
344
349
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
346
353
347
354
Version 0.11.1
348
355
--------------
349
356
350
357
Bugfix release, released on June 7th 2016.
351
358
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
354
362
355
363
Version 0.11
356
364
------------
@@ -414,22 +422,29 @@ Released on May 29th 2016, codename Absinthe.
414
422
- The automatically provided ``OPTIONS `` method is now correctly disabled if
415
423
the user registered an overriding rule with the lowercase-version
416
424
``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 `_).
419
426
- 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 `_ ).
422
429
- Updated extension dev guidelines.
423
430
424
431
- ``flask.g `` now has ``pop() `` and ``setdefault `` methods.
425
432
- 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 `_ ).
428
435
- ``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 `_ ).
431
438
- Exceptions during teardown handling will no longer leave bad application
432
439
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
433
448
434
449
Version 0.10.2
435
450
--------------
0 commit comments