forked from orbit-oss/flask
Merge branch '0.8-maintenance'
This commit is contained in:
commit
d04c9a61e3
2 changed files with 10 additions and 1 deletions
9
CHANGES
9
CHANGES
|
|
@ -8,6 +8,15 @@ Version 0.9
|
||||||
|
|
||||||
Relase date to be decided, codename to be chosen.
|
Relase date to be decided, codename to be chosen.
|
||||||
|
|
||||||
|
Version 0.8.1
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Bugfix release, release date to be decided
|
||||||
|
|
||||||
|
- Fixed an issue with the undocumented `flask.session` module to not
|
||||||
|
work properly on Python 2.5. It should not be used but did cause
|
||||||
|
some problems for package managers.
|
||||||
|
|
||||||
Version 0.8
|
Version 0.8
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
from warnings import warn
|
from warnings import warn
|
||||||
warn(DeprecationWarning('please use flask.sessions instead'))
|
warn(DeprecationWarning('please use flask.sessions instead'))
|
||||||
|
|
||||||
from .sessions import *
|
from .sessions import SecureCookieSession, NullSession
|
||||||
|
|
||||||
Session = SecureCookieSession
|
Session = SecureCookieSession
|
||||||
_NullSession = NullSession
|
_NullSession = NullSession
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue