github GitoxideLabs/gitoxide gix-blame-v0.1.0
gix-blame v0.1.0

2 days ago

Chore

  • uniformize deny attributes
  • remove default link to cargo doc everywhere

Bug Fixes

  • note that crates have been renamed from git-* to gix-*.
    This also means that the git-* prefixed crates of the gitoxide project
    are effectively unmaintained.
    Use the crates with the gix-* prefix instead.

    If you were using git-repository, then gix is its substitute.

New Features (BREAKING)

  • upgrade edition to 2021 in most crates.
    MSRV for this is 1.56, and we are now at 1.60 so should be compatible.
    This isn't more than a patch release as it should break nobody
    who is adhering to the MSRV, but let's be careful and mark it
    breaking.

    Note that git-features and git-pack are still on edition 2018
    as they make use of a workaround to support (safe) mutable access
    to non-overlapping entries in a slice which doesn't work anymore
    in edition 2021.

  • add diff_algorithm to blame::file()

  • add since to blame::file()

  • skip uninteresting commits for blame
    This is breaking because it takes a commitgraph cache as argument
    , and because it replaces the traverse by suspect.

    Switch to date order for traversing the commit history, as opposed to
    topo order. This is also what git blame does.

    Skip suspects that have no associated unblamed hunks

    Pass blame to parent in process_change. git’s algorithm only seems
    to keep the current suspect for unblamed hunks that were the direct
    result of splitting an existing unblamed hunk because it matched with a
    change. All other hunks appear to be blamed on the parent without
    further checks.

    Add assertion that lines always match.

Commit Statistics

  • 19 commits contributed to the release.
  • 3 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Thanks Clippy

Clippy helped 1 time to make code idiomatic.

Commit Details

view details
  • Uncategorized
    • Update changelogs prior to release (38dff41)
    • Merge pull request #1910 from cruessler/add-tree-id-to-either (544cdaf)
    • Make use gix_traverse::commit::Either::tree_id() (3fad860)
    • Merge pull request #1901 from cruessler/make-either-copy (85b060c)
    • Derive Clone and Copy for Either (3c1b1df)
    • Merge pull request #1888 from cruessler/respect-diff-algorithm-in-blame (dce127e)
    • Add diff_algorithm to blame::file() (e9a493c)
    • Merge pull request #1858 from cruessler/add-git-blame-since (7059609)
    • Add since to blame::file() (e08cf88)
    • Merge pull request #1854 from GitoxideLabs/montly-report (16a248b)
    • Thanks clippy (8e96ed3)
    • Merge pull request #1824 from cruessler/replace-find-commit-by-find (8ab0a6b)
    • Replace odb.find_commit by gix_traverse::commit::find (e09ec3e)
    • Merge pull request #1743 from cruessler/skip-uninteresting-commits-for-blame (aa05ef0)
    • Refactor (4428838)
    • Skip uninteresting commits for blame (1250df3)
    • Merge pull request #1823 from cruessler/add-test-for-differing-date-and-topo-order (18e163e)
    • Add test for commits not ordered chronologically (a9de4f0)
    • Merge pull request #1778 from GitoxideLabs/new-release (8df0db2)

Don't miss a new gitoxide release

NewReleases is sending notifications on new releases.