1. 17 Jun, 2022 2 commits
  2. 16 Jun, 2022 2 commits
  3. 14 Jun, 2022 6 commits
  4. 13 Jun, 2022 3 commits
  5. 12 Jun, 2022 4 commits
  6. 11 Jun, 2022 13 commits
  7. 02 Jun, 2022 1 commit
  8. 22 May, 2022 1 commit
  9. 20 May, 2022 2 commits
  10. 17 May, 2022 4 commits
  11. 09 May, 2022 1 commit
    • revparse: Remove error-prone, redundant test · 7f53d7b6
      Originally introduced in: 776a6a8e
      
      This test case has recently been fixed in bdab2238, but that fix will only last for a year. Next year the same problem will crop up and the test will need to be re-edited.
      
      This is not ideal as
      - This test case becomes an unnecessary burden for developers
      - Downstream distros or even just users who want to build older versions of libgit2 are guaranteed to have this test fail
      
      Furthermore, this test case is entirely unnecessary, as the functionality that was originally (see 776a6a8e) intended to be tested is well-covered by subsequent tests which specify a date instead of a "x ago" specification.
      Carl Dong committed
  12. 03 May, 2022 1 commit
    • midx: do not verify the checksum on load · a3f9617b
      This is something we only want to do during explicit verification rather than on
      every load.
      
      Verifying does not seem like a big deal when we're running with test workloads
      but once your `multi-pack-index` reaches gigabytes, we spend more time hashing
      this than doing any work.
      Carlos Martín Nieto committed