session_cookie_name
fix
- Move from aioredis to redis
- Updated memcached support (removed asyncio.loop, removed coroutine decorator)
- MongoDB support
- Transfer copyright to Kroket Ltd.
- Migrated to aioredis 2
- SameSite support https://github.com/kroketio/quart-session/commit/8daae3a6734e8f7da13954d5a1a5da8f5fc5a49a
- Memcached stuff https://github.com/filak/quart-session/commit/004871c495a069784e57e604b69f65af1b7e645a
- Added support for arbitrary usage of caching backends.
- Exposed
get
,set
,delete
on the session interface for direct usage.
- Exposed
- Renamed
SESSION_HIJACK_REVERSE_PROXY
toSESSION_REVERSE_PROXY
. - Renamed
SESSION_HIJACK_PROTECTION
toSESSION_PROTECTION
. - Removed fallback when
X-Forwarded-For
is not present whilst USINGSESSION_REVERSE_PROXY
, emit error instead. - Fixed a bug where session timeouts would default to 600 seconds.
- Deprecated/disabled the
dirty()
method.
- Released initial pre alpha version.