jsondiff icon indicating copy to clipboard operation
jsondiff copied to clipboard

Compute the diff between two JSON documents as a series of RFC6902 (JSON Patch) operations

Results 4 jsondiff issues
Sort by recently updated
recently updated
newest added

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 4 to 6. Release notes Sourced from golangci/golangci-lint-action's releases. v6.0.0 What's Changed This version removes annotations option (because it was useless), and removes the default output format...

dependencies

``` json1 := []byte(`{"a": { "b": [ {"c": [3,2]}, 2, 1 ]}}`) json2 := []byte(`{"a": { "b": [ {"c": [2,3]}, 1, 2 ]}}`) patch, err := jsondiff.CompareJSON(json1[:], json2[:], jsondiff.Equivalent()) if...

When doing `LCS` diffs of very large and very different files we would keep seeing crashes when calling the `prepend` function. Adding this (dumb) check fixes it, it appears that...

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 8 to 9. Release notes Sourced from golangci/golangci-lint-action's releases. v9.0.0 In the scope of this release, we change Nodejs runtime from node20 to node24 (https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/). What's Changed...

dependencies
github_actions