Skip to content

Commit f262846

Browse files
committed
Merge tag 'v3.7.9' into develop
2 parents ed9334d + fa3f977 commit f262846

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

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

5+
## [3.7.9]
6+
7+
- chore: Remove legacy `viur-queued-tasks` code (#1433)
8+
- feat: Evaluate `x-viur-bonelist` on default `viewSkel()` (light-version) (#1415)
9+
- feat: Implement `conf.tasks_default_queues` (#1434)
10+
- feat: Implement `on_delete` hook/event for sessions (#1438)
11+
- fix: `File.onEdit()` executes "leaf"-related stuff regardless of the `skelType` (#1439)
12+
- fix: `NumericBone.singleValueUnserialize` can't handle `str` (#1437)
13+
- fix: Check in `updateRelations` if `request_data` exist (#1435)
14+
- fix: Make `skeleton.listKnownSkeletons` always sorted (#1430)
15+
- fix: Type annotation `None` now correctly supported with value-check and `"null"` (#1429)
16+
- perf: Add check to avoid redundant `ensureDerived` calls (#1428)
17+
518
## [3.7.8]
619

720
- fix: `NumericBone` ignores precision on read & write (#1425)

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.8"
6+
__version__ = "3.7.9"
77

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

0 commit comments

Comments
 (0)