We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16aa242 commit af05608Copy full SHA for af05608
.codecov.yml
@@ -0,0 +1,4 @@
1
+codecov:
2
+ branch: master
3
+ notify:
4
+ wait_for_ci: yes
CHANGES.txt
@@ -1,7 +1,13 @@
.. towncrier release notes start
+2.11.0 (2021-01-31)
+===================
5
+
6
+* Support initialising `EncryptedCookieStorage` with `Fernet` object directly.
7
+* Fix an issue where the session would get reset before the cookie expiry.
8
9
2.10.0 (2021-12-30)
-=====================
10
11
12
* Typing support
13
* Add samesite cookie option
aiohttp_session/__init__.py
@@ -1,6 +1,6 @@
"""User sessions for aiohttp.web."""
-__version__ = "2.10.0"
+__version__ = "2.11.0"
import abc
import json
0 commit comments