Skip to content

Commit

Permalink
[ckan#7602] Mention extra requirement in migration notes for 2.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed May 25, 2023
1 parent 13c6d75 commit 6eeac01
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,20 @@ Migration notes
store the session data in the `client-side cookie <https://beaker.readthedocs.io/en/latest/sessions.html#cookie-based>`_.
This will probably be the default behaviour in future CKAN versions::

# ckan.ini
beaker.session.type = cookie
# ckan.ini

beaker.session.type = cookie
beaker.session.data_serializer = json
beaker.session.validate_key = CHANGE_ME
# Use a long, random string for this setting
beaker.session.validate_key = CHANGE_ME

beaker.session.httponly = True
beaker.session.secure = True
beaker.session.samesite = Lax
beaker.session.httponly = True
beaker.session.secure = True
beaker.session.samesite = Lax
# or Strict, depending on your setup

.. note:: You might need to install an additional library that can provide AES encryption, e.g. ``pip install cryptography``


v.2.9.8 2023-02-15
==================
Expand Down

0 comments on commit 6eeac01

Please sign in to comment.