kcl-lang / kcl-py

KCL Python SDK
Apache License 2.0
9 stars 5 forks source link

feat: support config entry mutual reference. #8

Closed Peefy closed 1 year ago

Peefy commented 1 year ago

1. Does this PR affect any open issues?(Y/N) and add issue references (e.g. "fix #123", "re #123".):

re #368. With the mutual-reference feature of attributes in the KCL config entry, we can write fewer KCL codes to eliminate more templates in the configuration and improve the convenience of configuration writing.

data = {
    name = "nginx"
    metadata.name = "nginx"
}
data = {
    name = "nginx"
    metadata.name = name  # Can reference `name` directly.
}

2. What is the scope of this PR (e.g. component or file name):

3. Provide a description of the PR(e.g. more details, effects, motivations or doc link):

4. Are there any breaking changes?(Y/N) and describe the breaking changes(e.g. more details, motivations or doc link):

5. Are there test cases for these changes?(Y/N) select and add more details, references or doc links:

6. Release note

Please refer to Release Notes Language Style Guide to write a quality release note.

None