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) ## 1.2.0 (2026-06-21)
### Feat ### Feat

View file

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

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project] [project]
name = "rougail-base" name = "rougail-base"
version = "1.2.0" version = "1.2.1"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}] authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md" readme = "README.md"
description = "A consistency handling system that was initially designed in the configuration management" 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] [project]
name = "rougail" name = "rougail"
version = "1.2.0" version = "1.2.1"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}] authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md" readme = "README.md"
description = "A consistency handling system that was initially designed in the configuration management" description = "A consistency handling system that was initially designed in the configuration management"
@ -27,7 +27,7 @@ classifiers = [
dependencies = [ dependencies = [
"ruamel.yaml ~= 0.19.1", # same version as rougail-user-data-yaml "ruamel.yaml ~= 0.19.1", # same version as rougail-user-data-yaml
"pydantic ~= 2.13.4", "pydantic ~= 2.13.4",
"rougail-base == 1.2.0", "rougail-base == 1.2.1",
] ]
[tool.flit.sdist] [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 # it's the good dynamic variable but it's not linked to a variable
# so cannot change the variable # so cannot change the variable
continue continue
option_type = self.config.option(dynamic_variable).information.get( option = self.config.option(dynamic_variable)
option_type = option.information.get(
"type" "type"
) )
dyn_options_values = ( dyn_options_values = option.value.default(uncalculated=True)
self.config.option(dynamic_variable).get().impl_getdefault()
)
if "{{ identifier }}" in dynamic_variable: if "{{ identifier }}" in dynamic_variable:
for s in identifiers: for s in identifiers:
dynamic_variable = dynamic_variable.replace( dynamic_variable = dynamic_variable.replace(
@ -186,7 +185,7 @@ class UserData:
) )
# do not add values in variable if has already a value # do not add values in variable if has already a value
if dynamic_variable not in self.values and not dyn_options_values: 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) added.append(dynamic_variable)
elif dynamic_variable not in added: elif dynamic_variable not in added:
continue continue