The Wayback Machine - https://web.archive.org/web/20220706162357/https://github.com/topics/configuration
Skip to content
#

configuration

Here are 4,925 public repositories matching this topic...

myitcv
myitcv commented Aug 10, 2021

Originally posted by knieriem August 8, 2021 in cue-lang/cue#1196

When upgrading a program importing a package from cue v0.3.0-beta* to v0.4.0 I noted that CUE's new dependency github.com/protocolbuffers/txtpbfmt adds another dependency, github.com/golang/glog (leveled execution logs for Go). go mod why lists, for instance:

cuelang.org/go/cue/load
NeedsFix good first issue Discuss
dynaconf
groundnuty
groundnuty commented Aug 27, 2021

What steps did you take:

Input:

#@ def group_alpha():
name: alpha
#@ end
groups: &all_groups
  - #@ group_alpha()
foo:
  groups: *all_groups

Result:

groups:
- null
foo:
  groups:
  - name: alpha

Expected:

groups:
- alpha
foo:
  groups:
  - name: alpha

Expected according to [limitations](https://carvel.dev/ytt/docs/latest/known-limitat

good first issue documentation priority/unprioritized-backlog

Improve this page

Add a description, image, and links to the configuration topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the configuration topic, visit your repo's landing page and select "manage topics."

Learn more