Skip to content

Commit

Permalink
Merge tag 'v3.6.30'
Browse files Browse the repository at this point in the history
  • Loading branch information
phorward committed Dec 19, 2024
2 parents 87ce810 + 84d80ba commit e3e5a37
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

## [3.7.0.rc8]
## [3.7.0]

- chore: Adding file deprecations (#1268)
- chore: Drop python 3.10 support (#1175)
Expand Down Expand Up @@ -95,6 +95,10 @@ This file documents any relevant changes done to ViUR-core since version 3.
- refactor: Send emails from `EmailTransport` instances instead of class (#1250)
- refactor: Sub-class `Session` from `db.Entity` to behave `dict`-compliant (#1153)

## [3.6.30]

- fix: `SelectBone.singleValueFromClient` doesn't accept `Enum` (#1320, #1351)

## [3.6.29]

- fix: Don't create a CSP nonce if unsafe-inline is enabled (#1347)
Expand Down
2 changes: 1 addition & 1 deletion src/viur/core/bones/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def postSavedHandler(self, skel, boneName, key):
def handleDerives(values):
if isinstance(values, dict):
values = [values]
for val in values: # Ensure derives getting build for each file referenced in this relation
for val in (values or ()): # Ensure derives getting build for each file referenced in this relation
ensureDerived(val["dest"]["key"], f"{skel.kindName}_{boneName}", self.derive)

values = skel[boneName]
Expand Down
2 changes: 1 addition & 1 deletion src/viur/core/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This will mark it as a pre-release as well on PyPI.
# See CONTRIBUTING.md for further information.

__version__ = "3.7.0.rc9"
__version__ = "3.7.0"

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

0 comments on commit e3e5a37

Please sign in to comment.