This repository has been archived by the owner on Jan 31, 2020. It is now read-only.
zend-session 2.8.2
weierophinney
released this
29 Nov 19:58
·
163 commits
to master
since this release
Added
- Nothing.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
-
#85 fixes an issue with how the expiration seconds are handled when a long-running request occurs. Previously, when called, it would use the value of
$_SERVER['REQUEST_TIME']
to calculate the expiration time; this would cause failures if the expiration seconds had been reached by the time the value was set. It now correctly uses the currenttime()
. -
#99 fixes how
Zend\Session\Config\SessionConfig
handles attaching save handlers to ensure it will honor any handlers registered with the PHP engine (e.g., redis, rediscluster, etc.).