Skip to content

Commit 42cbd18

Browse files
committed
Release
1 parent db1d225 commit 42cbd18

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

HISTORY.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,30 @@
11
Changelog
22
---------
33

4+
7.23.0 (2026-02-20)
5+
~~~~~~~~~~~~~~~~~~~
6+
7+
* SECURITY: Fixed open redirect vulnerability
8+
9+
* SECURITY: Further security checks for live edit. It will now only allow localhost connections.
10+
11+
* Endpoints can now be called via POST
12+
13+
* `Query` is now a `Tag`, meaning its outer HTML element is configurable (tag, attrs, id, etc.) instead of being hard-coded to a `div` with a fixed id
14+
15+
* New semantic registration functions for FK/M2M relations: `register_related_factory`, `register_related_field_factory`, `register_related_filter_factory`, `register_related_column_factory`, `register_related_multiple_factory`, `register_related_multiple_field_factory`, `register_related_multiple_filter_factory`, `register_related_multiple_column_factory`
16+
17+
* SQL Trace: click to trigger `explain` for individual queries directly from the SQL trace output
18+
19+
* Fixed `limit_choices_to` for ForeignKey relations - both forward and reverse now work (fixes #441)
20+
21+
* Fixed attribute escape correctness (`&` was not being escaped to `&`). This should not affect anything, but the old code was strictly speaking not following the HTML spec.
22+
23+
* Fixed `MainMenu` bug when `template` is present in style and also passed as an argument
24+
25+
* Live edit works for classes
26+
27+
428
7.22.1 (2026-01-19)
529
~~~~~~~~~~~~~~~~~~~
630

iommi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '7.22.1'
1+
__version__ = '7.23.0'
22

33
from functools import wraps
44

0 commit comments

Comments
 (0)