dyff icon indicating copy to clipboard operation
dyff copied to clipboard

/ˈdʏf/ - diff tool for YAML files, and sometimes JSON

Results 55 dyff issues
Sort by recently updated
recently updated
newest added

In case 2 Kubernetes manifests files are being compared but 1 file missing some block (I.E `HorizontalPodAutoscaler`), DYFF fails to execute with the below output: ``` panic: runtime error: invalid...

Hey all, thanks for this great tool! Can you please help me with the following questions?: - How can I get diff types from YAML files? - Is there a...

On the model of the `human report`, support a `unified report`. https://www.gnu.org/software/diffutils/manual/html_node/Detailed-Unified.html

Code mostly copied from `dyff between` , trying to resolve #189 - accepts all arguments passed from git - generate similar diff context like built-in git diff - omit dyff...

Hey all, thanks a lot for maintaining this great tool! This is a feature request/suggestion for `isWhitespaceOnlyChange`s: https://github.com/homeport/dyff/blob/416d58b8e8ce6f9f208a662c4b3a6e2a9bb142ee/pkg/dyff/output_human.go#L337-L342 It would be amazing to have a `--omit-whitespace` flag on `dyff between`....

`old.yaml` ```yaml hello: world: abc: 1 ``` `new.yaml` ```yaml hello: world: abc: 2 def: 1 ``` Requested functionality: `dyff between --filter "hello.*" "old.yaml" "new.yaml"` > Expected to show dyff for...

Follow-up from #190 and check whether we can create a PR with updates to the [MacPorts `Portfile`](https://github.com/macports/macports-ports/blob/master/textproc/dyff/Portfile) for `dyff` when there is a new release.

enhancement
help wanted

This would make it more useful in scripts,

It would be quite nice to have a dyff command called "git" which would accept command line arguments in the way that: ``` GIT_EXTERNAL_DIFF="dyff git" git diff ``` would accept....

Any idea how to handle sensitive values in output ? Its easy to determine sensitive values based on Kind type for Kubernetes for example, but wondering what can be used...