yaml-diff
yaml-diff copied to clipboard
Make a diff between 2 yaml files.
Bumps [github.com/golangci/golangci-lint](https://github.com/golangci/golangci-lint) from 1.56.2 to 1.58.1. Release notes Sourced from github.com/golangci/golangci-lint's releases. v1.58.1 golangci-lint is a free and open-source project built by volunteers. If you value it, consider supporting us,...
I want diff long string values, but give wrong result test case c.yaml ```yaml data: config: | logging.a: false logging.b: false ``` d.yaml ```yaml data: config: | logging.a: false logging.c:...
Testcase: ```go package main import ( "testing" "github.com/sters/yaml-diff/yamldiff" ) var yaml1 = ` value: |- foo bar baz special multiline ` var yaml2 = ` value: "foo\nbar\nbaz\n\ special\n\ \ multiline"...
Bumps [github.com/golangci/golangci-lint](https://github.com/golangci/golangci-lint) from 1.56.2 to 1.59.1. Release notes Sourced from github.com/golangci/golangci-lint's releases. v1.59.1 golangci-lint is a free and open-source project built by volunteers. If you value it, consider supporting us,...
Currently the entire file is displayed. This is inconvenient to manually review as these files can be hundreds of lines. It would be nice to have flag that allows us...
Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.10.0 to 1.11.1. Release notes Sourced from github.com/stretchr/testify's releases. v1.11.1 This release fixes #1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (String() string)...
Bumps [github.com/go-viper/mapstructure/v2](https://github.com/go-viper/mapstructure) from 2.2.1 to 2.4.0. Release notes Sourced from github.com/go-viper/mapstructure/v2's releases. v2.4.0 What's Changed refactor: replace interface{} with any by @sagikazarmark in go-viper/mapstructure#115 build(deps): bump github/codeql-action from 3.29.0 to...
Bumps [github.com/goccy/go-yaml](https://github.com/goccy/go-yaml) from 1.17.1 to 1.18.0. Release notes Sourced from github.com/goccy/go-yaml's releases. 1.18.0 What's Changed feat: add global OmitEmpty encoding option by @bwplotka in goccy/go-yaml#691 chore: clarify omitempty behaviour. by...