forked from pallets-eco/flask-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
60 lines (40 loc) · 1.12 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Changelog
---------
Version 0.1
```````````
First public preview release.
Version 0.1.1
`````````````
Fixed MongoDB backend InvalidDocument Error.
Version 0.2
```````````
- Added `SqlAlchemySessionInterface`.
- Added support for cookie session id signing.
- Various bugfixes.
Version 0.2.1
`````````````
Fixed signing failure.
Version 0.2.2
`````````````
Added support for non-permanent session.
Version 0.2.3
`````````````
- Fixed signing failure in Python 3.x
- Fixed MongoDBSessionInterface failure in Python 3.x
- Fixed SqlAlchemySessionInterface failure in Python 3.x
- Fixed StrictRedis support
Version 0.3
```````````
- SqlAlchemySessionInterface is using LargeBinary type to store data now
- Fixed MongoDBSessionInterface delete method not found
- Fixed TypeError when getting store_id using a signer
Version 0.3.1
`````````````
- SqlAlchemySessionInterface is using VARCHAR(255) to store session id now
- SqlAlchemySessionInterface won't run `db.create_all` anymore
Version 0.3.2
`````````````
- Changed `werkzeug.contrib.cache` to `cachelib`
Version 0.4.0
`````````````
- Added support for `SESSION_COOKIE_SAMESITE`