Skip to content

Commit f52ce30

Browse files
committed
Merge tag 'v3.6.18' into develop
2 parents f82edf2 + 429f4e6 commit f52ce30

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This file documents any relevant changes done to ViUR-core since version 3.
44

5+
## [3.6.18]
6+
7+
- fix: Cast category to str() for ascii check (#1263)
8+
59
## [3.6.17]
610

711
- feat: `type_postfix` on `BaseBone` and `select.access` in `UserSkel` (#1261)

src/viur/core/render/html/env/viur.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ def renderEditForm(render: Render,
635635

636636
res += sectionTpl.render(
637637
categoryName=category,
638-
categoryClassName="".join([x for x in category if x in string.ascii_letters]),
638+
categoryClassName="".join(ch for ch in str(category) if ch in string.ascii_letters),
639639
categoryContent=categoryContent,
640640
allReadOnly=allReadOnly,
641641
allHidden=allHidden

src/viur/core/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This will mark it as a pre-release as well on PyPI.
44
# See CONTRIBUTING.md for further information.
55

6-
__version__ = "3.7.0.dev3"
6+
__version__ = "3.7.0.dev4"
77

88
assert __version__.count(".") >= 2 and "".join(__version__.split(".", 3)[:3]).isdigit(), \
99
"Semantic __version__ expected!"

0 commit comments

Comments
 (0)