Compare commits

...

2 commits
1.3.0 ... main

6 changed files with 15 additions and 10 deletions

View file

@ -1,3 +1,9 @@
## 1.2.1 (2026-08-19)
### Fix
- in each layers a dynamic family could be add, so aggregate all of those families
## 1.2.0 (2026-06-21)
### Feat

View file

@ -1,6 +1,6 @@
[project]
name = "rougail"
version = "1.2.0"
version = "1.2.1"
[tool.commitizen]
name = "cz_conventional_commits"

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project]
name = "rougail-base"
version = "1.2.0"
version = "1.2.1"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md"
description = "A consistency handling system that was initially designed in the configuration management"

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project]
name = "rougail"
version = "1.2.0"
version = "1.2.1"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md"
description = "A consistency handling system that was initially designed in the configuration management"
@ -27,7 +27,7 @@ classifiers = [
dependencies = [
"ruamel.yaml ~= 0.19.1", # same version as rougail-user-data-yaml
"pydantic ~= 2.13.4",
"rougail-base == 1.2.0",
"rougail-base == 1.2.1",
]
[tool.flit.sdist]

View file

@ -1 +1 @@
__version__ = "1.2.0"
__version__ = "1.2.1"

View file

@ -173,12 +173,11 @@ class UserData:
# it's the good dynamic variable but it's not linked to a variable
# so cannot change the variable
continue
option_type = self.config.option(dynamic_variable).information.get(
option = self.config.option(dynamic_variable)
option_type = option.information.get(
"type"
)
dyn_options_values = (
self.config.option(dynamic_variable).get().impl_getdefault()
)
dyn_options_values = option.value.default(uncalculated=True)
if "{{ identifier }}" in dynamic_variable:
for s in identifiers:
dynamic_variable = dynamic_variable.replace(
@ -186,7 +185,7 @@ class UserData:
)
# do not add values in variable if has already a value
if dynamic_variable not in self.values and not dyn_options_values:
self.values[dynamic_variable] = [{"values": []}]
self.values[dynamic_variable] = [{"values": option.value.get()}]
added.append(dynamic_variable)
elif dynamic_variable not in added:
continue