File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) , and this project adheres
6
6
to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 0.15.1] - 2025-05-26
9
+
10
+ ### Fixed
11
+
12
+ - Reenable autoescaping in template rendering by [ @jowilf ] ( https://github.com/jowilf )
13
+ in [ #662 ] ( https://github.com/jowilf/starlette-admin/pull/662 )
14
+
8
15
## [ 0.15.0] - 2025-05-21
9
16
10
17
### Breaking Changes
Original file line number Diff line number Diff line change 1
- __version__ = "0.15.0 "
1
+ __version__ = "0.15.1 "
2
2
3
3
from ._types import ExportType as ExportType
4
4
from ._types import RequestAction as RequestAction
Original file line number Diff line number Diff line change @@ -211,6 +211,7 @@ def _setup_templates(self) -> None:
211
211
]
212
212
),
213
213
extensions = ["jinja2.ext.i18n" ],
214
+ autoescape = True ,
214
215
)
215
216
templates = Jinja2Templates (env = env )
216
217
You can’t perform that action at this time.
0 commit comments