This repository has been archived by the owner on Jan 29, 2020. It is now read-only.
zend-expressive-session-ext 1.1.0
Added
- Nothing.
Changed
-
#12 updates the
PhpSessionPersistence
class such that it is now responsible for
emitting the various cache limiter headers (Expires
,Cache-Control
,Last-Modified
, andPragma
) normally
emitted by ext-session and controlled by thesession.cache_limiter
andsession.cache_expire
INI settings.
This approach ensures that those headers are not overwritten by ext-session if set elsewhere in your
application. -
#9 swaps a call to
session_commit
tosession_write_close
withingPhpSessionPersistence
,
as the former is an alias for the latter.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #13 fixes an issue whereby a new session cookie is not always sent
following an ID regeneration.