File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) , and this project adheres
66to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
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+
815## [ 0.15.0] - 2025-05-21
916
1017### Breaking Changes
Original file line number Diff line number Diff line change 1- __version__ = "0.15.0 "
1+ __version__ = "0.15.1 "
22
33from ._types import ExportType as ExportType
44from ._types import RequestAction as RequestAction
Original file line number Diff line number Diff line change @@ -211,6 +211,7 @@ def _setup_templates(self) -> None:
211211 ]
212212 ),
213213 extensions = ["jinja2.ext.i18n" ],
214+ autoescape = True ,
214215 )
215216 templates = Jinja2Templates (env = env )
216217
You can’t perform that action at this time.
0 commit comments