Merge pull request #1222 from defuz/templates_auto_reload-eq-none

Set TEMPLATE_AUTO_RELOAD default value to None
This commit is contained in:
Markus Unterwaditzer 2014-11-02 20:46:48 +01:00
commit a1b273658d
4 changed files with 39 additions and 15 deletions

View file

@ -23,9 +23,8 @@ Version 1.0
- Added :meth:`flask.Config.from_json`.
- Added :attr:`flask.Flask.config_class`.
- Added :meth:`flask.config.Config.get_namespace`.
- Added ``TEMPLATES_AUTO_RELOAD`` config key. If disabled the
templates will be reloaded only if the application is running in
debug mode. For higher performance its possible to disable that.
- Templates are no longer automatically reloaded outside of debug mode. This
can be configured with the new ``TEMPLATES_AUTO_RELOAD`` config key.
- Added a workaround for a limitation in Python 3.3's namespace loader.
- Added support for explicit root paths when using Python 3.3's namespace
packages.