Skip to content

Commit 87a9f9b

Browse files
committed
FeinCMS v26.2.1
1 parent 7ae6b6f commit 87a9f9b

File tree

2 files changed

+44
-1
lines changed

2 files changed

+44
-1
lines changed

CHANGELOG.rst

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,50 @@ Change log
66
Next version
77
~~~~~~~~~~~~
88

9+
- Fixed double submission issue when changing page templates in the admin by
10+
disabling submit buttons after template change confirmation.
11+
- Added end-to-end tests using Playwright to verify browser-based functionality.
12+
Run with ``tox -e e2e``.
13+
- Optimized JavaScript performance by using JSON strings instead of inline
14+
JavaScript structures and removing whitespace from JSON output.
15+
- Removed IE8 compatibility shims (``Array.indexOf``).
16+
- Dropped legacy clearfix CSS hack.
17+
18+
19+
v25.5.1 (2025-05-05)
20+
~~~~~~~~~~~~~~~~~~~~
21+
22+
- Added Python 3.13 support.
23+
- Fixed Django 5.1 compatibility issue with tab generation in admin (fieldsets
24+
now include ``<details>`` and ``<summary>`` elements).
25+
- Fixed preview handler to properly return 404 instead of 500 when re-entering
26+
with insufficient arguments.
27+
28+
29+
v24.12.3 (2024-12-21)
30+
~~~~~~~~~~~~~~~~~~~~~
31+
32+
- Fixed tinymce 7 state management.
33+
34+
35+
v24.12.2 (2024-12-20)
36+
~~~~~~~~~~~~~~~~~~~~~
37+
38+
- Fixed tinymce 7 toolbar configuration.
39+
40+
41+
v24.12.1 (2024-12-17)
42+
~~~~~~~~~~~~~~~~~~~~~
43+
944
- Added a tinymce 7 integration for the richtext content type.
45+
- Fixed documentation example (``User.is_authenticated`` is now a boolean).
46+
- Minor code quality improvements.
47+
48+
49+
v24.8.2 (2024-08-08)
50+
~~~~~~~~~~~~~~~~~~~~
51+
52+
- Minor fixes.
1053

1154

1255
v24.8.1 (2024-08-07)

feincms/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (25, 5, 1)
1+
VERSION = (26, 2, 1)
22
__version__ = ".".join(map(str, VERSION))
33

44

0 commit comments

Comments
 (0)