Compare commits
No commits in common. "130bb4d8da692fe4a8198cb563e5cfca1b9d0743" and "594dfb2f7fd90eca82027ec93dfbb3a73a631ee1" have entirely different histories.
130bb4d8da
...
594dfb2f7f
6 changed files with 8 additions and 15 deletions
|
|
@ -1,9 +1,3 @@
|
|||
## 1.2.0a66 (2026-03-02)
|
||||
|
||||
### Fix
|
||||
|
||||
- allow calculation with identifier
|
||||
|
||||
## 1.2.0a65 (2026-03-02)
|
||||
|
||||
### Fix
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "rougail"
|
||||
version = "1.2.0a66"
|
||||
version = "1.2.0a65"
|
||||
|
||||
[tool.commitizen]
|
||||
name = "cz_conventional_commits"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail-base"
|
||||
version = "1.2.0a66"
|
||||
version = "1.2.0a65"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "A consistency handling system that was initially designed in the configuration management"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail"
|
||||
version = "1.2.0a66"
|
||||
version = "1.2.0a65"
|
||||
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.18.6",
|
||||
"pydantic ~= 2.9.2",
|
||||
"rougail-base == 1.2.0a66",
|
||||
"rougail-base == 1.2.0a65",
|
||||
]
|
||||
|
||||
[tool.flit.sdist]
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "1.2.0a66"
|
||||
__version__ = "1.2.0a65"
|
||||
|
|
|
|||
|
|
@ -295,7 +295,6 @@ class JinjaCalculation(Calculation):
|
|||
"choices",
|
||||
"dynamic",
|
||||
"secret_manager",
|
||||
"identifier",
|
||||
]
|
||||
jinja: StrictStr
|
||||
params: Optional[List[Param]] = None
|
||||
|
|
@ -877,7 +876,7 @@ class VariablePropertyCalculation(_VariableCalculation):
|
|||
|
||||
|
||||
class InformationCalculation(Calculation):
|
||||
attribute_name: Literal["default", "choice", "dynamic", "identifier"]
|
||||
attribute_name: Literal["default", "choice", "dynamic"]
|
||||
information: StrictStr
|
||||
variable: Optional[StrictStr]
|
||||
|
||||
|
|
@ -936,7 +935,7 @@ class _IdentifierCalculation(Calculation):
|
|||
|
||||
|
||||
class IdentifierCalculation(_IdentifierCalculation):
|
||||
attribute_name: Literal["default", "choice", "dynamic", "identifier"]
|
||||
attribute_name: Literal["default", "choice", "dynamic"]
|
||||
|
||||
def to_function(
|
||||
self,
|
||||
|
|
@ -997,7 +996,7 @@ class IdentifierPropertyCalculation(_IdentifierCalculation):
|
|||
|
||||
|
||||
class IndexCalculation(Calculation):
|
||||
attribute_name: Literal["default", "choice", "dynamic", "identifier"]
|
||||
attribute_name: Literal["default", "choice", "dynamic"]
|
||||
|
||||
def to_function(
|
||||
self,
|
||||
|
|
|
|||
Loading…
Reference in a new issue