-
Notifications
You must be signed in to change notification settings - Fork 294
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/cue: add diff support #8
Comments
Original reply by @jugaadi in cuelang/cue#8 (comment) Any updates on this feature? |
Original reply by @mpvl in cuelang/cue#8 (comment) It would be good for people to give examples of how they would like to use this functionality in a CLI. |
Original reply by @myitcv in cuelang/cue#8 (comment) Commenting simply to add the word semantic into the mix 😄 I've taken (perhaps incorrectly) to referring to |
Original reply by @eonpatapon in cuelang/cue#8 (comment) Would be nice to have a diff API in cue lib. Currently I'm using However this works if the instances have only concrete values. So a similar API that can diff cue values directly would be nice (and required in my case to be able to use the flow API) |
Original reply by @myitcv in cuelang/cue#8 (comment) @eonpatapon take a look at https://pkg.go.dev/cuelang.org/[email protected]/internal/diff. That is internal for now, but as we shape up the API it should be made non-internal. |
Original reply by @vikstrous2 in cuelang/cue#8 (comment) A semantic diff would be really interesting. I think with diffing kubernetes files, the most awkward part is the way that the kubernetes API wants to be given a list of yaml objects but the identity of those objects is usually best defined by their name rather than their position in a list. My current idea for diffing them is to write them out into a directory tree where the name of the file is based on the name and type of the object and then using git diff. Then as long as the yaml and all of its fields and lists of named objects are sorted in some stable way, this is good enough for most kubernetes things. |
Original reply by @myitcv in cuelang/cue#8 (comment) Adding something of an experience report here from the world of
In the case of point one this will look like:
Some questions:
Stepping back a bit further, we should also be able to write a semantic diff for point 2, on the basis that CUE knows about the semantics of these different formats (even to some extent the different versions of, say, Yaml, JSON). |
In the case of generating kubernetes configs, we use a _tool.cue file to write out the config to many different yaml files. Those files can be individually diff'd by git diff. A fancier diffing algorithm would probably just do some sorting and normalization before diffing, which would bring it pretty close to a semantic diff. There isn't anything really cue specific needed for that. If cue eval is used for diffing, it might produce unusual looking output if most users of the cue config usually interact with it through a _tool.cue command. A diff of cue configs is interesting, but it seems like a very open ended topic. I think my understanding of CUE is not sufficient to have an opinion on how that should work. |
FWIW what we are currently doing is output the result of That's less than optimal (!) and a proper semantic diff would be much appreciated. |
@vikstrous2 @PierreR I've used https://github.com/homeport/dyff for creating diffs of outputs from CUE for CloudFormation. Quite nice. Works really well for semantic diffs. Worth a look! And, hopefully we can build something similar for CUE at some point. :) |
The query extension offers some nice potential for good semantic diff output. |
A sub-feature-request: allow the user to specify if/that certain lists' contents can be treated as being identical based on member contents, not ordering. In other words (I /think/): to mark specific lists as sets, not lists, for diff purposes. Rationale: field ordering in a struct is always(?) semantically unimportant. Ordering in a list is /sometimes/ unimportant, but it's case-specific. The Example: I'm currently using CUE to emit GitHub Actions (GHA) workflow .yml files, and I needed to assert that a specific commit had only reorganised the input CUE, and hadn't change the output .yml. One list in my workflow file is "the jobs to run". Obviously, order is important there. But there's a job at the /end/ of the workflow, which waits for all other jobs, and reports if all jobs succeeded. This final job's input is a list of job names, but it doesn't care about the order, merely that they're present. Being able to |
Having been kindly pointed towards #14 and onwards to #165 (comment), I can amend my sub-request to be: please could |
As part of the recent issue garden, we are focussing on non-feature requests. As such, I'm removing the milestone on this feature request. We will revisit feature requests in a later pass, at which point we will start to milestone and prioritise new features (in addition to those that we are already working on). |
Originally opened by @mpvl in cuelang/cue#8
Allow diffing between (snapshots of) previous version and current version.
The text was updated successfully, but these errors were encountered: