Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

zend-expressive-session-ext 1.1.0

Compare
Choose a tag to compare
@weierophinney weierophinney released this 10 May 17:35
· 119 commits to master since this release

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, and Pragma) normally
    emitted by ext-session and controlled by the session.cache_limiter and session.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 to session_write_close withing PhpSessionPersistence,
    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.