Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 917 Bytes

CHANGES.rst

File metadata and controls

33 lines (23 loc) · 917 Bytes

Version 0.3.0

Unreleased

  • FilesystemSessionStore tries to create path if the specified location does not exist. :pr:`66`
  • Support for Werkzeug version 2.1.0+ (PR nr to be determined)

Version 0.2.0

Released 2021-08-17

  • Drop Python 2 and 3.5 support. :pr:`62`
  • Replace posixemulation from Werkzeug with os.replace. :issue:`12`

Version 0.1.0

Released 2020-02-26

  • Extracted from Werkzeug 0.15.
  • Dropped support for Python 3.4.
  • SessionMiddleware sets secure_cookie.session in the environ instead of werkzeug.session.
  • FilesystemSessionStore uses the filename template secure_cookie_%s.session instead of werkzeug_%s.sess.
  • SecureCookie.serialization_method is json instead of pickle. To upgrade existing tokens, override unquote to try pickle if json fails.