Daniel Martí
Daniel Martí
Note that this is related to https://github.com/cue-lang/cue/issues/2893.
Yes, please add a new migration step. As far as I can tell, and from what we agreed with @p4u, we are treating the database as stable and we should...
I think the point is to not litter every single CUE file with the experiment; it's only added to those that need it. In terms of a "fix" for existing...
I should note that I'm borrowing this idea from Go, where its "godebug knobs" can be set in `go.mod` for all packages in the module: https://go.dev/doc/modules/gomod-ref#godebug
I lean towards a `cue.mod/module.cue` directive to enable a language experiment for a whole module over "add the experiment attribute to all module files" precisely because then I can add...
Indeed this spec deviation bug will disappear with the `aliasv2` language change: https://github.com/cue-lang/cue/discussions/4014
The reason that `cue export .` and `cue export file.cue .hidden.cue .cue` are not equivalent is explained in `cue help inputs`: > Directory and file names that begin with "."...
What remains to be done here? https://github.com/cue-lang/cue/issues/3380 tracked proper support for `oneOf` in jsonschema and it was resolved. The related commits in master mentioned this issue, but did not mark...
We can close this on the basis that oneof support in JSON Schema is done, and the language has support for them in general in the form of `matchN`. If...
My 2c: the only reason Go ended up with flags like `-cache` and `-modcache` is that `go clean` used to be for cleaning build artifacts from packages. Nowadays, almost noone...