From 962cc014c0eaab44903f7c649b364bd3bb9f8bc3 Mon Sep 17 00:00:00 2001 From: Matthias Kestenholz Date: Mon, 8 Apr 2024 16:06:13 +0200 Subject: [PATCH] FeinCMS v24.4.0 --- CHANGELOG.rst | 8 ++++++++ feincms/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c7bde06d..27a68900 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,14 @@ Change log `Next version`_ ~~~~~~~~~~~~~~~ +v24.4.0 (2024-04-08) +~~~~~~~~~~~~~~~~~~~~~ + +- Fetched the CSRF token value from the input field instead of from the cookie. + This allows making the CSRF cookie ``httponly``. Thanks to Samuel Lin for the + contribution! + + v23.12.0 (2023-12-22) ~~~~~~~~~~~~~~~~~~~~~ diff --git a/feincms/__init__.py b/feincms/__init__.py index 944fd8de..8edbdbb1 100644 --- a/feincms/__init__.py +++ b/feincms/__init__.py @@ -1,4 +1,4 @@ -VERSION = (23, 12, 0) +VERSION = (24, 4, 0) __version__ = ".".join(map(str, VERSION))