Skip to content

csv-diff 0.3.1

Compare
Choose a tag to compare
@simonw simonw released this 07 Apr 19:46

Added and deleted rows now display in a more human-friendly format than raw JSON:

$ csv-diff one.csv two.csv --key=id
1 row changed, 1 row added, 1 row removed

1 row changed

  Row 1
    age: "4" => "5"

1 row added

  id: 3
  name: Bailey
  age: 1

1 row removed

  id: 2
  name: Pancakes
  age: 2

Example commit here: simonw/sf-tree-history@184efa - compare with simonw/sf-tree-history@dd08cc which demonstrates the previous behaviour.