Backwards compatibility import

This commit is contained in:
Armin Ronacher 2011-07-07 13:14:15 +02:00
parent 10f8dc18b8
commit f29ec355e9
2 changed files with 13 additions and 0 deletions

View file

@ -19,6 +19,16 @@ installation, make sure to pass it the ``-U`` parameter::
$ easy_install -U Flask
Version 0.8
-----------
Flask introduced a new session interface system. We also noticed that
there was a naming collision between `flask.session` the module that
implements sessions and :data:`flask.session` which is the global session
object. With that introduction we moved the implementation details for
the session system into a new module called :mod:`flask.sessions`. If you
used the previously undocumented session support we urge you to upgrade.
Version 0.7
-----------

View file

@ -35,3 +35,6 @@ from .signals import signals_available, template_rendered, request_started, \
# only import json if it's available
if json_available:
from .helpers import json
# backwards compat, goes away in 1.0
from .sessions import SecureCookieSession as Session