Compare commits

..

No commits in common. "130bb4d8da692fe4a8198cb563e5cfca1b9d0743" and "594dfb2f7fd90eca82027ec93dfbb3a73a631ee1" have entirely different histories.

6 changed files with 8 additions and 15 deletions

View file

@ -1,9 +1,3 @@
## 1.2.0a66 (2026-03-02)
### Fix
- allow calculation with identifier
## 1.2.0a65 (2026-03-02) ## 1.2.0a65 (2026-03-02)
### Fix ### Fix

View file

@ -1,6 +1,6 @@
[project] [project]
name = "rougail" name = "rougail"
version = "1.2.0a66" version = "1.2.0a65"
[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.0a66" version = "1.2.0a65"
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.0a66" version = "1.2.0a65"
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.18.6", "ruamel.yaml ~= 0.18.6",
"pydantic ~= 2.9.2", "pydantic ~= 2.9.2",
"rougail-base == 1.2.0a66", "rougail-base == 1.2.0a65",
] ]
[tool.flit.sdist] [tool.flit.sdist]

View file

@ -1 +1 @@
__version__ = "1.2.0a66" __version__ = "1.2.0a65"

View file

@ -295,7 +295,6 @@ class JinjaCalculation(Calculation):
"choices", "choices",
"dynamic", "dynamic",
"secret_manager", "secret_manager",
"identifier",
] ]
jinja: StrictStr jinja: StrictStr
params: Optional[List[Param]] = None params: Optional[List[Param]] = None
@ -877,7 +876,7 @@ class VariablePropertyCalculation(_VariableCalculation):
class InformationCalculation(Calculation): class InformationCalculation(Calculation):
attribute_name: Literal["default", "choice", "dynamic", "identifier"] attribute_name: Literal["default", "choice", "dynamic"]
information: StrictStr information: StrictStr
variable: Optional[StrictStr] variable: Optional[StrictStr]
@ -936,7 +935,7 @@ class _IdentifierCalculation(Calculation):
class IdentifierCalculation(_IdentifierCalculation): class IdentifierCalculation(_IdentifierCalculation):
attribute_name: Literal["default", "choice", "dynamic", "identifier"] attribute_name: Literal["default", "choice", "dynamic"]
def to_function( def to_function(
self, self,
@ -997,7 +996,7 @@ class IdentifierPropertyCalculation(_IdentifierCalculation):
class IndexCalculation(Calculation): class IndexCalculation(Calculation):
attribute_name: Literal["default", "choice", "dynamic", "identifier"] attribute_name: Literal["default", "choice", "dynamic"]
def to_function( def to_function(
self, self,