PackageTrack
Sign in Get early access

gix

Interact with git repositories just like git would

0.87.0 43M downloads/mo #1355 most downloaded on crates.io GitoxideLabs/gitoxide

What this package is like to depend on

Last release today

22 Aug 2026

Ships on a steady schedule

a new release about every 4 weeks

Nearly every release is documented

notes for 57 of 59 stable releases

12 versions withdrawn

withdrawn after publishing

4 years old

71 releases · first in 2023

15 releases in the last 12 months

see the full history below

Release timeline

71 releases · Feb 2023 to Aug 2026
2024 2025 2026
Release Pre-release Withdrawn

Releases

latest 60 of 71
  1. 0.87.0 22 Aug 2026

    Nothing published for this version

  2. 0.86.0 23 Jul 2026

    Nothing published for this version

  3. 0.85.0 22 Jun 2026
    Release notes

    Bug Fixes

    • <csr-id-e7c748426159d948089d0df0ddc8dab840bc40a4/> adopt the remote's object format when cloning A clone into a freshly initialized repository hit an unimplemented! panic when the remote used sha256, since the local repository defaults to sha1.

      Reconfigure the still-empty local repository to the remote's object format and retry the fetch, matching git's behavior of inheriting the remote's hash on clone.

      Without the sha256 feature gix_hash::Kind has a single variant, so the local and remote hashes can never differ; the mismatch check is compiled out entirely in that case.

    • <csr-id-fa42565eb48df91f6671e82074876b99481d74c8/> write fetched remote symrefs as direct refs Previously gix had made-up behaviour to 'improve' on standard Git, but it's clear this isn't backed up or tested well enough to be worth the risk of introducing subtle or not so subtle bugs.

    • <csr-id-67303164b1960c40332d948071b6d718c277d229/> resolve remote HEAD fetches against remote refs Fetching a local transport remote with a refspec like +HEAD:refs/test/repo could write a symbolic local ref to the client repository's refs/heads/main when the remote HEAD was symbolic and the client happened to have a same-named branch. That made the fetched destination resolve to the local branch instead of the remote HEAD object.

      Add a fetch regression that creates distinct local and remote repositories with matching HEAD target names but different commits, then fetches +HEAD:refs/test/repo and asserts the destination is the remote object as a direct ref.

      Match Git behavior observed with the local Git checkout: git fetch <remote> +HEAD:refs/test/repo creates refs/test/repo as the remote HEAD object, and Git's remote.c resolves symrefs against the advertised remote ref list.

      Fix the unmapped remote-symbolic-ref fallback to peel born remote symrefs to their advertised object id instead of consulting local refs. Mapped symrefs still rewrite to their corresponding local tracking ref, and unborn remote refs remain symbolic.

    • <csr-id-3b4a6bc63b793607ad689a35d1e3c7bff8941bec/> set trust for GIT_DIR environment discovery A Helix user reported that opening a repository with GIT_DIR set could panic in gix while discovering a repository through environment overrides. The reported reproductions used GIT_DIR=.git with Helix or git --git-dir=.git invoking an editor, and the panic came from open_from_paths() expecting git-dir trust to have already been determined.

      The GIT_DIR override path in open_with_environment_overrides() already determines ownership trust for the effective git directory and selects options from the trust mapping, but it did not store that trust in the Options passed to open_from_paths(). Store the determined trust there, matching discover_opts(), so configuration loading receives an explicit trust value instead of reaching the internal expect().

      Git baseline: git --git-dir=<repo/.git> --work-tree=<repo> status --short exits successfully.

    • <csr-id-b859b92b5241a011ebb2bd1b921dc55fd4f7e440/> reject implicit sha1 repos in sha256-only builds A missing extensions.objectFormat means legacy Sha1.

      In sha256-only builds, Kind::default() is Sha256, so such repos were silently mislabeled as Sha256.

      Resolve the implicit case to Sha1 when supported, else error out to avoid any mislabeling.

      Also reject extensions.objectFormat when repositoryFormatVersion is 0, matching git, which treats it as an invalid v1-only extension.

    • <csr-id-9f432ef509daf09dc1a5bb3cd8201bef81d881ed/> handle loose ref path-prefix collisions The GitButler branch creation flow reported that repo.try_find_reference("refs/heads/A/new") could fail with a low-level NotADirectory error when refs/heads/A already exists as a loose ref. That lookup is asking whether the longer ref exists; the path-prefix collision matters to creation/update code, but find should report absence for that candidate.

      Git reference: refs/refs-internal.h documents ENOTDIR as the case where a ref prefix is not a directory, alongside ENOENT for non-existing refs. For lookup, both mean the requested ref candidate was not found.

    • <csr-id-9ad2e24e47d783d5a4296c3ea3eb016faebff8e1/> write new remote sections to the local config file.

    • <csr-id-2bd9dfe2a8754b3daff230e407c1b3233169cb5d/> Add support for gix_object::Write::*with_known_id() and use it. This means the Repository::write_object() won't recalculate the hash.

    • <csr-id-bd2881eb781c85e789b2e7c983621eb1f1993ec8/> handle relative worktree gidir files Git 2.48 can link worktrees with relative paths. In that layout the checkout .git file points at the private git dir relative to the checkout, while worktrees/<id>/gitdir points back to the checkout relative to the private git dir.

      Discovery already handled the checkout-side gitdir file, but paths read from the private git dir were treated as-is. That made discovery from .git/worktrees/<id> and Repository::worktrees() proxy base resolution produce relative paths anchored to the process cwd instead of the gitdir file location.

      Git reference: /Users/byron/dev/github.com/git/git worktree.c:write_worktree_linking_files writes both relative links with relative_path(), and t/t2400-worktree-add.sh covers the resulting relative files.

    • <csr-id-92c8130d6df54d3632396650f123864cd54e12a2/> fetching and cloning with refspecs that are tags (in shallow clones) Fix shallow clone refspecs for explicit tag refs

      When a shallow clone was created with with_ref_name(), the clone setup treated the requested name as a branch and generated a refspec under refs/heads/. For tag names this produced an unmatched required mapping like +refs/heads/<tag>:refs/remotes/origin/<tag>.

      Resolve the requested ref name against the remote before constructing the shallow single-ref refspec. Branches continue to map to refs/remotes/<remote>/*, while tags and other non-branch refs map to themselves.

      Baseline Git behavior was checked with /Users/byron/dev/github.com/git/git: non-shallow --branch <tag> clones keep the normal branch wildcard fetch refspec, while shallow --depth 1 --branch <tag> clones store +refs/tags/<tag>:refs/tags/<tag>.

    • <csr-id-6b5c2ea5b7994bfe96de57cdc50b7c9c176c70fa/> reject deleted prior checkout branches

    New Features (BREAKING)

    • <csr-id-cd610db8801f101132ba6c3c26a112a1d45a5fd7/> add leaf-only tree-editor removal via Editor::remove_leaf() Motivation comes from https://github.com/gitbutlerapp/gitbutler/pull/14312, where callers had to split tree-entry deletions from additions to avoid accidentally deleting a newly-added subtree after adding A/one and then deleting A.

      Add Editor::remove_leaf() to gix-object and expose it through gix object tree editors and cursors. The new API keeps remove() behavior unchanged, remains tolerant of absent paths, but returns an error when the target entry exists and is a tree.

    Bug Fixes (BREAKING)

    • <csr-id-9929ece41ecfde5cbabf25fc8d7a707d2eb21021/> avoid duplicate network connection when adopting a remote-controlled hash kind. Connections can now be created from detached remotes, internally, which makes them independent of the underlying repository.

      This is breaking as it comes with a cleanup of Connection lifetimes, which will break anyone who stores them in a struct. So hopefully nobody is affected.

    • <csr-id-28b726d6900992dc055bb4edd5150b11dccdb22b/> bound the clone object-hash adoption retry The clone fetch loop adopts the remote's object format and retries when it differs from the freshly initialized local repository. Adoption makes the next iteration's hashes match, but if the reopened repository somehow still disagrees the loop would re-handshake forever. Track whether we already retried and fail with IncompatibleObjectHash on a second mismatch instead. The error variant is introduced here, as this is its only user.

      Also silence clippy::never_loop on default (sha1) features, where the sha256-gated continue is absent and the loop always returns first pass.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 50 commits contributed to the release over the course of 27 calendar days.
    • 27 days passed between releases.
    • 14 commits were understood as conventional.
    • 3 unique issues were worked on: #1951, #2609, #2613

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #1951
      • Write new remote sections to the local config file. (9ad2e24)
    • #2609
      • Reject deleted prior checkout branches (6b5c2ea)
    • #2613
      • Resolve remote HEAD fetches against remote refs (6730316)
    • Uncategorized
      • Release gix-date v0.15.5, gix-hashtable v0.15.2, gix-object v0.62.0, gix-attributes v0.33.2, gix-filter v0.32.0, gix-revwalk v0.33.0, gix-traverse v0.59.0, gix-worktree-stream v0.34.0, gix-archive v0.34.0, gix-tempfile v23.0.2, gix-index v0.53.0, gix-worktree v0.54.0, gix-imara-diff v0.2.3, gix-diff v0.65.0, gix-blame v0.15.0, gix-ref v0.65.0, gix-config v0.58.0, gix-discover v0.53.0, gix-dir v0.27.0, gix-revision v0.47.0, gix-merge v0.18.0, gix-negotiate v0.33.0, gix-pack v0.72.0, gix-odb v0.82.0, gix-refspec v0.43.0, gix-transport v0.57.2, gix-protocol v0.63.0, gix-status v0.32.0, gix-submodule v0.32.0, gix-worktree-state v0.32.0, gix v0.85.0, gix-fsck v0.23.0, gitoxide-core v0.59.0, gitoxide v0.55.0, safety bump 28 crates (6428edc)
      • Merge pull request #2642 from 10ne1/dev/aratiu/sha256-transport (da6b267)
      • Avoid duplicate network connection when adopting a remote-controlled hash kind. (9929ece)
      • Review (ed998d1)
      • Map fetch pack/index checksums to their SHA-256 values (325d2a1)
      • Derive update_refs expected ids from the fixture (hash-aware) (470e689)
      • Cover sha256 remote object-format adoption on clone (77e11be)
      • Bound the clone object-hash adoption retry (28b726d)
      • Adopt the remote's object format when cloning (e7c7484)
      • Merge pull request #2660 from GitoxideLabs/resolve-fetch-head-againnst-remote-refs (a8c5257)
      • Adjust clone expectations for peeled remote symrefs (00f64fc)
      • Write fetched remote symrefs as direct refs (fa42565)
      • Merge pull request #2622 from ameyypawar/tests/repository-mailmap (3755396)
      • Review (590b206)
      • Merge pull request #2654 from GitoxideLabs/tree-editor-improvement (f051396)
      • Add leaf-only tree-editor removal via Editor::remove_leaf() (cd610db)
      • Add tests for Repository::open_mailmap and open_mailmap_into (73ffc99)
      • Merge pull request #2637 from ameyypawar/fix-remote-save-1951 (847eb4a)
      • Review (5217d66)
      • Merge pull request #2652 from GitoxideLabs/override-upward-trust (52d26d7)
      • Adjust the comment in discovery_opts to inform about upwards::Options trust handling. (7ba53e1)
      • Merge pull request #2651 from GitoxideLabs/allow-sha256-only-builds (f1f8b6f)
      • Address review feedback about repository formats (2a5b8d4)
      • Merge pull request #2648 from GitoxideLabs/investigate-git-dir-panic (5dfb44d)
      • Set trust for GIT_DIR environment discovery (3b4a6bc)
      • Review (c391a12)
      • Cover the sha256-only legacy object-hash path (14a1a11)
      • Test rejection of objectFormat on version-0 repositories (ad9354e)
      • Reject implicit sha1 repos in sha256-only builds (b859b92)
      • Allow sha256-only builds (b0155ce)
      • Merge pull request #2645 from GitoxideLabs/try-find-reference-path-prefix-collision (4f089fc)
      • Handle loose ref path-prefix collisions (9f432ef)
      • Merge pull request #2628 from GitoxideLabs/dependabot/cargo/tar-0.4.46 (5aadd6e)
      • Thanks clippy (137794d)
      • Merge pull request #2598 from cruessler/run-gix-index-tests-with-sha-256 (b5b2d54)
      • Review (bc4064c)
      • Merge pull request #2549 from GitoxideLabs/no-dupl-compute (69caccd)
      • Add support for gix_object::Write::*with_known_id() and use it. (2bd9dfe)
      • Merge pull request #2599 from GitoxideLabs/relative-workree-path (a209dc1)
      • Address auto-review (1d80b47)
      • Handle relative worktree gidir files (bd2881e)
      • Merge pull request #2556 from GitoxideLabs/shallow-clone-tag-refspecs (3dd621c)
      • Address auto-review (0c1645a)
      • Finally implement find_custom_refname as in Git (7734fb0)
      • Fetching and cloning with refspecs that are tags (in shallow clones) (92c8130)
      • Merge pull request #2610 from GitoxideLabs/fix-rev-parse (a4be01b)
      • Merge pull request #2618 from GitoxideLabs/report (f7d4f33) </details>
    Open source →
  4. 0.84.0 26 May 2026
    Release notes

    New Features

    • <csr-id-011316ec4cd7d3513c2caa22cb533c84ab5d1828/> Add SHA-256 support for object-format parsing.

    Bug Fixes

    • <csr-id-82c483a98cfe964efd153f9e517565e495a2aecb/> Follow submodule gitdir files when opening and perform basic validation Modern submodules store a .git file in the worktree whose gitdir: value points at the repository to open. The previous resolver treated every non-directory .git path like an uninitialized submodule and fell back to .git/modules/<name>, which can open the wrong repository after a submodule gitdir is relocated or renamed. That shows up as phantom submodule HEAD changes in gix status.

      Git baseline: Git setup.c::read_gitfile_gently() parses gitdir: files and resolves relative targets against the .git file location; submodule.c::submodule_to_gitdir() consults that gitfile before falling back to the name-derived .git/modules path.

      Update Submodule::git_dir_try_old_form() to validate the submodule name, then follow worktree .git files when present while preserving the old-form directory and uninitialized fallback behavior. Validate present gitdir file targets for direct state/open/status queries so broken submodule checkouts are reported if the gitlink doesn't point to a directory. For status ignore=all, still parse valid gitdir files to keep state accurate, but skip target validation and fall back without error if the gitdir file itself is malformed or unreadable. Derive State::is_old_form directly from whether the worktree .git path is a directory so a divergent modern gitlink is not misclassified as old form.

    • <csr-id-1f82a9ffa3059b175feec68f05d8fbe835fe9000/> Repository::is_dirty() won't fail on unborn repositories

    New Features (BREAKING)

    • <csr-id-e75fbfa8dbb5072381073aa0d433a0668ba66a08/> Allow checkouts of empty repositories Also make turn destination_must_be_empty into Option<bool>

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 38 commits contributed to the release over the course of 28 calendar days.
    • 28 days passed between releases.
    • 4 commits were understood as conventional.
    • 2 unique issues were worked on: #, #2585

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #
      • Repository::is_dirty() won't fail on unborn repositories (1f82a9f)
    • #2585
      • Follow submodule gitdir files when opening and perform basic validation (82c483a)
    • Uncategorized
      • Release gix-error v0.2.4, gix-date v0.15.4, gix-actor v0.41.1, gix-trace v0.1.20, gix-validate v0.11.2, gix-path v0.12.1, gix-utils v0.3.3, gix-features v0.48.1, gix-hash v0.25.1, gix-hashtable v0.15.1, gix-object v0.61.0, gix-glob v0.26.1, gix-quote v0.7.2, gix-attributes v0.33.1, gix-command v0.9.1, gix-packetline v0.21.4, gix-filter v0.31.0, gix-fs v0.21.2, gix-chunk v0.7.2, gix-commitgraph v0.37.1, gix-revwalk v0.32.0, gix-traverse v0.58.0, gix-worktree-stream v0.33.0, gix-archive v0.33.0, gix-bitmap v0.3.2, gix-tempfile v23.0.1, gix-lock v23.0.1, gix-index v0.52.0, gix-config-value v0.18.1, gix-pathspec v0.18.1, gix-ignore v0.21.1, gix-worktree v0.53.0, gix-imara-diff v0.2.2, gix-diff v0.64.0, gix-blame v0.14.0, gix-ref v0.64.0, gix-sec v0.14.1, gix-config v0.57.0, gix-prompt v0.15.1, gix-url v0.36.1, gix-credentials v0.38.1, gix-discover v0.52.0, gix-dir v0.26.0, gix-mailmap v0.33.1, gix-revision v0.46.0, gix-merge v0.17.0, gix-negotiate v0.32.0, gix-pack v0.71.0, gix-odb v0.81.0, gix-refspec v0.42.0, gix-shallow v0.12.1, gix-transport v0.57.1, gix-protocol v0.62.0, gix-status v0.31.0, gix-submodule v0.31.0, gix-worktree-state v0.31.0, gix v0.84.0, gix-fsck v0.22.0, gitoxide-core v0.58.0, gitoxide v0.54.0, safety bump 27 crates (10c58bb)
      • Merge pull request #2595 from cruessler/add-hex-to-id-sha1-only (87433ed)
      • Review (f962ed1)
      • Add hex_to_id_sha1_only, use in SHA-1 only tests (d80c534)
      • Merge pull request #2508 from j-walther/feat/allow-empty-dir (9013c3f)
      • Review (8606b7a)
      • Allow checkouts of empty repositories (e75fbfa)
      • Merge pull request #2578 from cruessler/run-gix-tests-with-sha-256 (2d4a6f2)
      • Review (31c2de3)
      • Return SHA-1 when there's no corresponding SHA-256 (b8510b2)
      • Feat! add object_hash to gix::create::Options (b123b4c)
      • Merge pull request #2588 from GitoxideLabs/fix/gix-status-phantom-submodule-modifications-2585 (db925ec)
      • Merge pull request #2589 from GitoxideLabs/fix-status-in-unborn-repo (ba7d9a4)
      • Address auto-review (5a37fbd)
      • Add another test to learn what is_dirty() does when there are modifications. (3406b1d)
      • Merge pull request #2581 from GitoxideLabs/improvements (8af2691)
      • Add SHA-256 support for object-format parsing. (011316e)
      • Merge pull request #2583 from tisonkun/patch-1 (a791ea3)
      • Improve comment in object/commit.rs (a8f7717)
      • Merge pull request #2573 from cruessler/run-gix-traverse-tests-with-sha-256 (278d7ec)
      • Address auto-review (0ec3bb7)
      • Cleanup the justfile and automate feature tests (db7b97b)
      • Cleanup sha1 feature in gix to just set what's needed. (16a6fc4)
      • Merge pull request #2575 from SarthakB11/fix/issue-2316 (4743361)
      • Review (1980190)
      • Document why each fixture archive is .gitignored (e3d5a04)
      • Merge pull request #2568 from GitoxideLabs/dependabot/cargo/cargo-56d6b174d8 (ab2fee1)
      • Update crates to Rust 2024 edition (2cb17b2)
      • Raise MSRV for hash dependency updates (3675a8d)
      • Merge pull request #2559 from GitoxideLabs/fix/symlink-prefix-reuse-worktree-escape-ghsa-f89h-2fjh-2r9q (3af9b4a)
      • Release gix-fs v0.21.1 (d3e4c17)
      • Address auto-review (1d9bae2)
      • Add clone reproducer for symlink prefix reuse checkout escape (c2ae6cd)
      • Merge pull request #2543 from cruessler/run-gix-worktree-stream-tests-with-sha-256 (23af41a)
      • Adapt to changes in gix_object::Data (4309fa4)
      • Merge pull request #2546 from GitoxideLabs/fix-2545 (adb8328) </details>
    Open source →
  5. 0.83.0 27 Apr 2026
    Release notes

    Bug Fixes (BREAKING)

    • <csr-id-91c854e7b9f41738d0fde825cd474b8c00c1a49b/> remove winnow and replace it with hand-implemented parsers everywhere. This will allow for simplified maintenance and editing (both human and machine) down the road, and enable additional performance optimisations.

      Parser compbinators to me ultimately were a failed experiment as I couldn't maintain them anyway, with it being too difficult for me to grasp and express everything in its very own kind of language, with a lot of different things to consider.

      Note that this also removes detailed errors from all parsers that previously used winnow, with the option to re-add those if there is demand.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 6 commits contributed to the release over the course of 2 calendar days.
    • 4 days passed between releases.
    • 1 commit was understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-error v0.2.3, gix-date v0.15.3, gix-actor v0.41.0, gix-path v0.12.0, gix-features v0.48.0, gix-hash v0.25.0, gix-hashtable v0.15.0, gix-object v0.60.0, gix-glob v0.26.0, gix-attributes v0.33.0, gix-command v0.9.0, gix-filter v0.30.0, gix-fs v0.21.0, gix-commitgraph v0.37.0, gix-revwalk v0.31.0, gix-traverse v0.57.0, gix-worktree-stream v0.32.0, gix-archive v0.32.0, gix-tempfile v23.0.0, gix-lock v23.0.0, gix-index v0.51.0, gix-config-value v0.18.0, gix-pathspec v0.18.0, gix-ignore v0.21.0, gix-worktree v0.52.0, gix-imara-diff v0.2.1, gix-diff v0.63.0, gix-blame v0.13.0, gix-ref v0.63.0, gix-sec v0.14.0, gix-config v0.56.0, gix-prompt v0.15.0, gix-url v0.36.0, gix-credentials v0.38.0, gix-discover v0.51.0, gix-dir v0.25.0, gix-mailmap v0.33.0, gix-revision v0.45.0, gix-merge v0.16.0, gix-negotiate v0.31.0, gix-pack v0.70.0, gix-odb v0.80.0, gix-refspec v0.41.0, gix-shallow v0.12.0, gix-transport v0.57.0, gix-protocol v0.61.0, gix-status v0.30.0, gix-submodule v0.30.0, gix-worktree-state v0.30.0, gix v0.83.0, gix-fsck v0.21.0, gitoxide-core v0.57.0, gitoxide v0.53.0, safety bump 48 crates (53f880c)
      • Adapt to changes in gix-object (91bfab0)
      • Remove winnow and replace it with hand-implemented parsers everywhere. (91c854e)
      • Merge pull request #2540 from GitoxideLabs/reporting (4d5ba23)
      • Merge pull request #2529 from GitoxideLabs/reflog-newline-handling (2c3a08e)
      • Adapt to changes in gix-error (2e2a126) </details>
    Open source →
  6. 0.82.0 24 Apr 2026 withdrawn
    Release notes

    Documentation

    • <csr-id-b1102c24055bbf15987a6a8c2e66338aa8a56438/> add crate-root doctests

    New Features

    • <csr-id-95b0399abca3e040686591388991b08c794050cd/> automatically limit allocation size on untrusted repositories. This can be controlled via gitoxide.objects.allocLimitIfReducedTrust.
    • <csr-id-acffd6b97ce2bc5c893d9dcb659c08d952b47430/> read GIX_ALLOC_BYTES and pass them to gix-odb for reading untrusted input
    • <csr-id-dce21dd97943b496fef58ee113fe8c52bdf630f4/> add sha256 to gix

    Bug Fixes

    • <csr-id-52485a9eb9d5df81e7f79908134b142cabbe2c04/> do not open .gitmodule files through symlinks This could lead to places outside of the repository that are attacker controller.

    • <csr-id-d2e193fe6ecbf98a1db83895d348abb6fc565422/> don't follow submodule names with relative paths in them This made it possible to trick submodule repos to be opened outside of the actual repository.

    • <csr-id-5b229c6f560ff832ca1b2b72032e025e1ca235c3/> Restore Category::to_full_name() to be able to produce any full name. Previously it learned to reject certain invalid branch names, but this has to be done separately and led to some unpleasant changes in gix as well.

    • <csr-id-1adc44c323de3f160dba1d2f76364b89b1e03292/> reject refs/heads/HEAD as branch name during repo initialisation Also document that refs/heads/HEAD is allowed if FullName was created directly.

    • <csr-id-7f77169996b79cb80637465a9456267750f06ff9/> Tree::peel_to_entry() peel to the final tree entry (and only if it's a tree)

    • <csr-id-b37fef12302160b448191103b1d344e6adf0af6a/> deduplicate entry-finding logic The logic for finding entries is duplicated 3 times.

      Use std::ops::ControlFlow for simpler, callback-friendly code.

    • <csr-id-0e173d6e75df6cfcce86e1f198e4b582d4709909/> std::path::Component has infallible conversion to &[u8] Instead of relying on a fallible path and using a default value, we can convert directly between a Component and a &[u8].

    Other

    • <csr-id-8a2b474e8d29f0b661ea686b87e6b7eb91f26abe/> remove confusing map()

    New Features (BREAKING)

    • <csr-id-91d0c261c2ca4e3f771f37ea0ed11adbc533829b/> enforce the specification of alloc_init_bytes to handle untrusted input This breaking change is intended to force a decision about how much memory allocation an untrusted party can command by tempering with binary file formats.
    • <csr-id-8094f5dcd4f24f4d54f7fbe7f716f80f2974b586/> Use imara-diff-v2 with git sliders processing The slider post-processing imrpoves the diff quality for about 8% slower diffs. Line-counts, however, will be 50% faster to compute.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 50 commits contributed to the release over the course of 32 calendar days.
    • 33 days passed between releases.
    • 14 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Update changelogs prior to release (f9fbcba)
      • Merge pull request #2530 from GitoxideLabs/advisories (63b8419)
      • Add fuzz tests for 10 more crates, and related fixes (0396152)
      • Do not open .gitmodule files through symlinks (52485a9)
      • Don't follow submodule names with relative paths in them (d2e193f)
      • Automatically limit allocation size on untrusted repositories. (95b0399)
      • Enforce the specification of alloc_init_bytes to handle untrusted input (91d0c26)
      • More alloc_limit tests to validate limit for loose objects as well. (9473d32)
      • Pass alloc_limit_bytes to gix-index (054494f)
      • Read GIX_ALLOC_BYTES and pass them to gix-odb for reading untrusted input (acffd6b)
      • Add reproductions for all known advisories (392336f)
      • Merge pull request #2497 from cruessler/pass-hash-len-to-tree-ref-iter (7d50c30)
      • Review (d9b358b)
      • Adapt to changes in gix-object (6df1d55)
      • Merge pull request #2523 from GitoxideLabs/improvements (6f47e98)
      • Adapt to changes in gix-traverse (a1bd845)
      • Merge pull request #2513 from GitoxideLabs/v2-diff (2a5db88)
      • Thanks clippy (e4f380e)
      • Use imara-diff-v2 with git sliders processing (8094f5d)
      • Merge pull request #2518 from GitoxideLabs/improvements (444a92b)
      • Make package.include patterns more specific so they don't match ignored files (c2c917f)
      • Merge pull request #2507 from GitoxideLabs/improvements (e51c40b)
      • Restore Category::to_full_name() to be able to produce any full name. (5b229c6)
      • Merge pull request #2505 from GitoxideLabs/improvements (420c5df)
      • Address auto-review (6a5a0ec)
      • Reject refs/heads/HEAD as branch name during repo initialisation (1adc44c)
      • Merge pull request #2492 from datdenkikniet/peel_to_entry (a298901)
      • Refactor (3542230)
      • Remove confusing map() (8a2b474)
      • Merge pull request #2494 from GitoxideLabs/improvements (50fb46f)
      • Adapt to changes in gix-config. (344218a)
      • Merge pull request #2493 from GitoxideLabs/improvements (af1ad55)
      • Adapt to changes in gix-config (7bda16a)
      • Merge pull request #2489 from GitoxideLabs/fix-entry-by-path (ec66ceb)
      • Address auto-review (6b45cfa)
      • Tree::peel_to_entry() peel to the final tree entry (and only if it's a tree) (7f77169)
      • Merge pull request #2487 from GitoxideLabs/top-level-examples (29c275e)
      • Add crate-root doctests (b1102c2)
      • Merge pull request #2459 from datdenkikniet/unify-traversal (de3f064)
      • Refactor (fc09ed2)
      • Deduplicate entry-finding logic (b37fef1)
      • Merge pull request #2485 from GitoxideLabs/fintohaps/fix-ls-refs-prefixing (700ad9e)
      • Fail on missing explicit refs after exact ls-refs ([df41a64`](https://github.com/GitoxideLabs/gitoxide/commit/df41a64851de31b5b5581b39efe18af4e5becfbc))
      • Merge pull request #2448 from cruessler/add-sha-256-to-gix-refspec (9a78ae2)
      • Alter documentation of feature flags (3cf53e2)
      • Add sha256 to gix (dce21dd)
      • Merge pull request #2480 from GitoxideLabs/report (98bae84)
      • Merge branch 'main' into report (7eb98cb)
      • Merge pull request #2458 from datdenkikniet/direct-u8 (2ce6dde)
      • std::path::Component has infallible conversion to &[u8] (0e173d6) </details>
    Open source →
  7. 0.81.0 22 Mar 2026
    Release notes

    New Features

    • <csr-id-f15911c78391d2f7f0a17d5e24c8f41724006635/> add Repository::reopen() as quick way to reload all configuration and drop caches.
    • <csr-id-383291689c659a2cc0bee7687f5a9b9f7a3659a4/> add sha1 and sha256 features to gix. This way one can control which hashes are compiled in exactly, while having reasonable defaults automatically.

    Bug Fixes

    • <csr-id-c80fa4cbabc84669a4a76b02f95889661f9cdd92/> gix::open::Permissions now can be compared, and add is_isolated() method.
    • <csr-id-72134f5603639faee050c0fce0ee01a5d226b3eb/> ignore assume-unchanged submodule path replaced by symlink in status

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 18 commits contributed to the release.
    • 28 days passed between releases.
    • 4 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-error v0.2.1, gix-date v0.15.1, gix-path v0.11.2, gix-features v0.46.2, gix-hash v0.23.0, gix-hashtable v0.13.0, gix-object v0.58.0, gix-packetline v0.21.2, gix-filter v0.28.0, gix-fs v0.19.2, gix-commitgraph v0.35.0, gix-revwalk v0.29.0, gix-traverse v0.55.0, gix-worktree-stream v0.30.0, gix-archive v0.30.0, gix-tempfile v21.0.2, gix-lock v21.0.2, gix-index v0.49.0, gix-pathspec v0.16.1, gix-ignore v0.19.1, gix-worktree v0.50.0, gix-diff v0.61.0, gix-blame v0.11.0, gix-ref v0.61.0, gix-sec v0.13.2, gix-config v0.54.0, gix-prompt v0.14.1, gix-credentials v0.37.1, gix-discover v0.49.0, gix-dir v0.23.0, gix-revision v0.43.0, gix-merge v0.14.0, gix-negotiate v0.29.0, gix-pack v0.68.0, gix-odb v0.78.0, gix-refspec v0.39.0, gix-shallow v0.10.0, gix-transport v0.55.1, gix-protocol v0.59.0, gix-status v0.28.0, gix-submodule v0.28.0, gix-worktree-state v0.28.0, gix v0.81.0, gix-fsck v0.19.0, gitoxide-core v0.55.0, gitoxide v0.52.0, safety bump 31 crates (c389a2c)
      • Merge pull request #2470 from GitoxideLabs/improvements (1a72380)
      • gix::open::Permissions now can be compared, and add is_isolated() method. (c80fa4c)
      • Merge pull request #2469 from GitoxideLabs/improvements (26d5197)
      • Add Repository::reopen() as quick way to reload all configuration and drop caches. (f15911c)
      • Merge pull request #2454 from GitoxideLabs/dependabot/cargo/cargo-da044b9bb0 (6183fd0)
      • Make CI work again (5213afe)
      • Bump the cargo group with 68 updates (6bdb331)
      • Merge pull request #2441 from cruessler/remove-sha-1-from-default-features (e8bf096)
      • Add sha1 and sha256 features to gix. (3832916)
      • Adapt to sha1 not being default feature of gix-hash (e71c703)
      • Merge pull request #2437 from GitoxideLabs/copilot/fix-issue-2435-in-gix-crate (dad2a82)
      • Address Codex review (34d3c17)
      • Refactor (fa65501)
      • Ignore assume-unchanged submodule path replaced by symlink in status (72134f5)
      • Merge pull request #2445 from GitoxideLabs/improvements (6a7287c)
      • Add cargo machete CI job including exclusions (abd0724)
      • Merge pull request #2442 from GitoxideLabs/report (f7277f3) </details>
    Open source →
  8. 0.80.0 22 Feb 2026
    Release notes

    Bug Fixes

    • <csr-id-94b35a1585c94bee18db6a422d7ee50c95548282/> make status work despite broken or invalid symlinks. Related to https://github.com/gitbutlerapp/gitbutler/issues/12399

    New Features (BREAKING)

    • <csr-id-78b0a6faf821a092c6f2d8a3f469e152062c2532/> encode shallow commit lists as non-empty, and introduced nonempty in gix-protocol
    • <csr-id-231fda44d3de46776d19227100d52459e37bcaf5/> model merge-bases as a non-empty type in gix-revision and gix-merge Adapt gix accordingly (even though it's nonbreaking).

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 10 commits contributed to the release over the course of 10 calendar days.
    • 12 days passed between releases.
    • 3 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-error v0.2.0, gix-date v0.15.0, gix-actor v0.40.0, gix-object v0.57.0, gix-quote v0.7.0, gix-attributes v0.31.0, gix-command v0.8.0, gix-filter v0.27.0, gix-chunk v0.7.0, gix-commitgraph v0.34.0, gix-revwalk v0.28.0, gix-traverse v0.54.0, gix-worktree-stream v0.29.0, gix-archive v0.29.0, gix-bitmap v0.3.0, gix-index v0.48.0, gix-pathspec v0.16.0, gix-worktree v0.49.0, gix-diff v0.60.0, gix-blame v0.10.0, gix-ref v0.60.0, gix-config v0.53.0, gix-prompt v0.14.0, gix-url v0.35.2, gix-credentials v0.37.0, gix-discover v0.48.0, gix-dir v0.22.0, gix-mailmap v0.32.0, gix-revision v0.42.0, gix-merge v0.13.0, gix-negotiate v0.28.0, gix-pack v0.67.0, gix-odb v0.77.0, gix-refspec v0.38.0, gix-shallow v0.9.0, gix-transport v0.55.0, gix-protocol v0.58.0, gix-status v0.27.0, gix-submodule v0.27.0, gix-worktree-state v0.27.0, gix v0.80.0, gix-fsck v0.18.0, gitoxide-core v0.54.0, gitoxide v0.51.0, safety bump 42 crates (ecf90fc)
      • Merge pull request #2440 from GitoxideLabs/improvements (93f39fb)
      • Make status work despite broken or invalid symlinks. (94b35a1)
      • Merge pull request #2433 from GitoxideLabs/codex/nonempty-rewrite (29040a8)
      • Adopt to changes related to the introduction of nonempty. (e033441)
      • Encode shallow commit lists as non-empty, and introduced nonempty in gix-protocol (78b0a6f)
      • Model merge-bases as a non-empty type in gix-revision and gix-merge (231fda4)
      • Merge pull request #2377 from cruessler/add-sha-256-to-gix-commitgraph (228caf7)
      • Use GIX_TEST_FIXTURE_HASH for gix-commitgraph and gix-pack. (d51b858)
      • Merge branch 'release' (9327b73) </details>
    Open source →
  9. 0.79.0 10 Feb 2026
    Release notes

    Bug Fixes

    • <csr-id-02fe02b1de6e162e31269be5a25b8aaa8aa9e0fe/> Differentiate between core.bare being known or not. This allows Repository::is_bare() to only make assumptions based on the configuration value, which is what Git does.

    New Features (BREAKING)

    • <csr-id-0128df7104feefc528ee6c71a8f147fe196163cc/> gix-error instead of thiserror
    • <csr-id-b8059ab06b304a1fbb97dd86f3e93ff7a4a5d875/> gix-error instead of thiserror

    Bug Fixes (BREAKING)

    • <csr-id-8ea42ea7f2c56e00b0e227fa67696a9985663b62/> Improve Repository::kind() for better classification Previously it wasn't clear what it really is as it chose the wrong categories.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 22 commits contributed to the release over the course of 19 calendar days.
    • 19 days passed between releases.
    • 4 commits were understood as conventional.
    • 1 unique issue was worked on: #2402

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #2402
      • Differentiate between core.bare being known or not. (02fe02b)
    • Uncategorized
      • Release gix-error v0.1.0, gix-date v0.14.0, gix-actor v0.39.0, gix-trace v0.1.18, gix-path v0.11.1, gix-features v0.46.1, gix-hash v0.22.1, gix-object v0.56.0, gix-quote v0.6.2, gix-attributes v0.30.1, gix-command v0.7.1, gix-packetline v0.21.1, gix-filter v0.26.0, gix-fs v0.19.1, gix-chunk v0.6.0, gix-commitgraph v0.33.0, gix-revwalk v0.27.0, gix-traverse v0.53.0, gix-worktree-stream v0.28.0, gix-archive v0.28.0, gix-bitmap v0.2.16, gix-tempfile v21.0.1, gix-lock v21.0.1, gix-index v0.47.0, gix-config-value v0.17.1, gix-pathspec v0.15.1, gix-worktree v0.48.0, gix-diff v0.59.0, gix-blame v0.9.0, gix-ref v0.59.0, gix-sec v0.13.1, gix-config v0.52.0, gix-prompt v0.13.1, gix-url v0.35.1, gix-credentials v0.36.0, gix-discover v0.47.0, gix-dir v0.21.0, gix-mailmap v0.31.0, gix-revision v0.41.0, gix-merge v0.12.0, gix-negotiate v0.27.0, gix-pack v0.66.0, gix-odb v0.76.0, gix-refspec v0.37.0, gix-shallow v0.8.1, gix-transport v0.54.0, gix-protocol v0.57.0, gix-status v0.26.0, gix-submodule v0.26.0, gix-worktree-state v0.26.0, gix v0.79.0, safety bump 35 crates (d66ac10)
      • Merge pull request #2420 from cruessler/remove-imara-diff-0-1-in-gix-blame (28fbeb8)
      • Merge pull request #2400 from GitoxideLabs/gix-error (e4f016b)
      • Address Copilot review (0b0e9f8)
      • Refactor (c7f84c2)
      • gix-error instead of thiserror (0128df7)
      • gix-error instead of thiserror (b8059ab)
      • Remove feature flag blame-experimental (44e447b)
      • Merge pull request #2415 from GitoxideLabs/improvements (5c9e6ae)
      • Adapt to changes in gix-testtools (fb60c8a)
      • Merge pull request #2407 from GitoxideLabs/dependabot/cargo/cargo-fb4135702f (8bceefb)
      • Bump the cargo group with 59 updates (7ce3c55)
      • Merge pull request #2404 from fenhl/patch-1 (aaf0a76)
      • Refactor (d820846)
      • Clarify that blocking-http-transport-reqwest doesn't enable reqwest's default features (c45cdaf)
      • Merge pull request #2403 from GitoxideLabs/improvements (75ac1d0)
      • Improve Repository::kind() for better classification (8ea42ea)
      • Merge pull request #2396 from GitoxideLabs/gix-error (e8612b5)
      • Adapt to changes in gix-error (a304f13)
      • Adapt to changes in gix-actor (b80d026)
      • Merge pull request #2393 from GitoxideLabs/report (f7d0975) </details>
    Open source →
  10. 0.78.0 22 Jan 2026
    Release notes

    New Features

    • <csr-id-08d7966bc50eaf5ca4204cb4fe84129fd75cfa32/> Enable auto-chain-error by default. This way, the behaviour of gix::Error is the same as it was before without actually exposing an Exn error tree.
    • <csr-id-3774a03f35f9748605aa9f0ddaac5a57fd9850a2/> add http-client-curl-rust-openssl feature, and make it the default. Previously it was implicit, now it's explicit so it can be turned off. When that's the case, the openssl dependencies will be removed.

    Bug Fixes

    • <csr-id-4773fd171ec12db75761052d8a5de4dc513f71ff/> Correctly use $COMMON_DIR/info/exclude to make excludes work in worktrees. It turns out there is no per-worktree excludes file either.

    Chore (BREAKING)

    • <csr-id-2358b1d250d3d2348210fb61dcb95ebe7aa6314b/> Upgrade prodash and crosstermion to the latest version. This will fix the cargo deny issue as it brings in a newer lru crate.

    New Features (BREAKING)

    • <csr-id-5c1bd0387f98eee37265a42ba4b6624c783c9a71/> Use std::ops::ControlFlow where possible
    • <csr-id-5ab19a7a3344c58ad1185a23a789848ed5e02241/> Use gix-error in gix-date This will make for easier introspection for users of these errors.

    Refactor (BREAKING)

    • <csr-id-f8517bedcbb9b3328f435aa37f4c63bd30b19fc0/> catch up Exn designs with the upstream refactor!: rename Exn::from_iter to raise_all

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 30 commits contributed to the release over the course of 21 calendar days.
    • 22 days passed between releases.
    • 7 commits were understood as conventional.
    • 2 unique issues were worked on: #2363, #2384

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #2363
      • Regenerate all changelogs with a more recent CSR version (cbbdef5)
    • #2384
      • Catch up Exn designs with the upstream (f8517be)
    • Uncategorized
      • Release gix-error v0.0.0, gix-date v0.13.0, gix-actor v0.38.0, gix-validate v0.11.0, gix-path v0.11.0, gix-features v0.46.0, gix-hash v0.22.0, gix-hashtable v0.12.0, gix-object v0.55.0, gix-glob v0.24.0, gix-attributes v0.30.0, gix-command v0.7.0, gix-packetline v0.21.0, gix-filter v0.25.0, gix-fs v0.19.0, gix-chunk v0.5.0, gix-commitgraph v0.32.0, gix-revwalk v0.26.0, gix-traverse v0.52.0, gix-worktree-stream v0.27.0, gix-archive v0.27.0, gix-tempfile v21.0.0, gix-lock v21.0.0, gix-index v0.46.0, gix-config-value v0.17.0, gix-pathspec v0.15.0, gix-ignore v0.19.0, gix-worktree v0.47.0, gix-diff v0.58.0, gix-blame v0.8.0, gix-ref v0.58.0, gix-sec v0.13.0, gix-config v0.51.0, gix-prompt v0.13.0, gix-url v0.35.0, gix-credentials v0.35.0, gix-discover v0.46.0, gix-dir v0.20.0, gix-mailmap v0.30.0, gix-revision v0.40.0, gix-merge v0.11.0, gix-negotiate v0.26.0, gix-pack v0.65.0, gix-odb v0.75.0, gix-refspec v0.36.0, gix-shallow v0.8.0, gix-transport v0.53.0, gix-protocol v0.56.0, gix-status v0.25.0, gix-submodule v0.25.0, gix-worktree-state v0.25.0, gix v0.78.0, gix-fsck v0.17.0, gitoxide-core v0.53.0, gitoxide v0.50.0, safety bump 50 crates (562e684)
      • Merge pull request #2383 from GitoxideLabs/gix-error (9d39656)
      • Enable auto-chain-error by default. (08d7966)
      • Various improvements to how errors are defined for consistency (1c5598e)
      • Merge pull request #2378 from GitoxideLabs/gix-error (6cff657)
      • Adapt to changes in gix-commitgraph (1f58905)
      • Change ErrorExt::erased() to ErrorExt::raise_erased(). (373fced)
      • Use std::ops::ControlFlow where possible (5c1bd03)
      • Merge pull request #2374 from GitoxideLabs/gix-error (25233ce)
      • Turn Exn::into_box() to Exn::into_inner(). (939b8fc)
      • Merge pull request #2352 from GitoxideLabs/gix-error (ae23762)
      • Actually introduce gix-error into gix-revision. (4819ea8)
      • Add http-client-curl-rust-openssl feature, and make it the default. (3774a03)
      • Merge pull request #2364 from GitoxideLabs/changelogs (0a333e5)
      • Adadpt exn to most pressing needs of gitoxide (abedade)
      • Use gix-error in gix-date (5ab19a7)
      • Merge pull request #2354 from canac/worktree-info-exclude (10bdf7e)
      • Refactor (3f0e26e)
      • Correctly use $COMMON_DIR/info/exclude to make excludes work in worktrees. (4773fd1)
      • Merge pull request #2353 from GitoxideLabs/improvements (ee0a1f6)
      • Upgrade prodash and crosstermion to the latest version. (2358b1d)
      • Merge pull request #2346 from GitoxideLabs/release (c663b3f)
      • Release gix-trace v0.1.17, gix-features v0.45.2, gix-command v0.6.5, gix-hash v0.21.2, gix-date v0.12.1, gix-actor v0.37.1, gix-object v0.54.1, gix-filter v0.24.1, gix-fs v0.18.2, gix-tempfile v20.0.1, gix-lock v20.0.1, gix-traverse v0.51.1, gix-index v0.45.1, gix-diff v0.57.1, gix-pack v0.64.1 (7be8f90)
      • Merge pull request #2341 from GitoxideLabs/dependabot/cargo/cargo-cf4a2135ae (d914d95)
      • Bump the cargo group across 1 directory with 51 updates (4edc5dd)
      • Merge pull request #2333 from GitoxideLabs/improvements (9e1ba5e)
      • Release gix-command v0.6.4, gix-credentials v0.34.1, gix-transport v0.52.1 (3bc0c47)
      • Merge pull request #2322 from GitoxideLabs/report (211b4fb) </details>
    Open source →
  11. 0.77.0 31 Dec 2025
    Release notes

    Documentation

    • <csr-id-e29e95210b6962f1dba57d20d3391c3226f37a9b/> using PrepareFetch::with_ref_name with non-branch refs causes panics

    Bug Fixes

    • <csr-id-2ffee22e32cda4da0f483956f79205c5d99b2cdc/> obtain correct worktree directories for submodule status when behind symlinks. Related to https://github.com/gitui-org/gitui/issues/2820

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 15 commits contributed to the release over the course of 9 calendar days.
    • 9 days passed between releases.
    • 2 commits were understood as conventional.
    • 1 unique issue was worked on: #2320

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #2320
      • Create configuration file before possibly probing the filesystem. (b1d6c67)
    • Uncategorized
      • Release gix-date v0.12.0, gix-actor v0.37.0, gix-features v0.45.1, gix-hash v0.21.1, gix-object v0.54.0, gix-filter v0.24.0, gix-fs v0.18.1, gix-revwalk v0.25.0, gix-traverse v0.51.0, gix-worktree-stream v0.26.0, gix-archive v0.26.0, gix-index v0.45.0, gix-worktree v0.46.0, gix-diff v0.57.0, gix-blame v0.7.0, gix-ref v0.57.0, gix-config v0.50.0, gix-credentials v0.34.0, gix-discover v0.45.0, gix-dir v0.19.0, gix-mailmap v0.29.0, gix-revision v0.39.0, gix-merge v0.10.0, gix-negotiate v0.25.0, gix-pack v0.64.0, gix-odb v0.74.0, gix-refspec v0.35.0, gix-transport v0.52.0, gix-protocol v0.55.0, gix-status v0.24.0, gix-submodule v0.24.0, gix-worktree-state v0.24.0, gix v0.77.0, gix-fsck v0.16.0, gitoxide-core v0.52.0, gitoxide v0.49.0, safety bump 32 crates (115e208)
      • Merge pull request #2314 from GitoxideLabs/copilot/fix-shallow-cloning-issue (30d8d5c)
      • Refactor (3529428)
      • Merge pull request #2312 from GitoxideLabs/copilot/adapt-script-for-gix-test-suite (0b29bd3)
      • Obtain correct worktree directories for submodule status when behind symlinks. (2ffee22)
      • Fix shallow clone to respect remote HEAD instead of local defaults (f087953)
      • Merge pull request #2321 from GitoxideLabs/improvements (ac0af1d)
      • Merge pull request #2315 from decathorpe/main (7c59cf4)
      • More standard panic heading. (7d900a6)
      • Using PrepareFetch::with_ref_name with non-branch refs causes panics (e29e952)
      • Merge pull request #2307 from cruessler/add-feature-flag-to-binary (d602d7e)
      • Refactor (d532bbf)
      • Add feature flag blame-experimental to gix (826effb)
      • Merge pull request #2299 from GitoxideLabs/report (d6c5b9d) </details>
    Open source →
  12. 0.76.0 22 Dec 2025
    Release notes

    New Features

    • <csr-id-580bee9f9cb30beaa31ac5a7c164a91f21e2632d/> respect the :(optional) prefix when interpolating paths via ConfigSnapshot::trusted_path(). Optional, but non-existing paths are now returned as None.

    Bug Fixes (BREAKING)

    • <csr-id-1955b5b1a436518c036cfc9bf642170f9c7b6540/> expose raw commit/tag actor headers for round-tripping. Note that this means you have to call CommitRef::commiter|author()? and TagRef::tagger()? instead of assuming pre-parsed fields.

      This PR makes signature handling truly lossless for "creative" emails and other info. We now stash the raw name <email> slice on IdentityRef/SignatureRef and fall back to it when rewriting, so even commits with embedded angle brackets round-trip cleanly (might want to expand to other malformed characters before merging? Parsing and serialization honor that flag but still keep strict validation for normal input. I also added regression coverage for these scenarios.

    Refactor (BREAKING)

    • <csr-id-ab3cce472efc4f6469d99a0d3a425d58ac2140b9/> split async and blocking implementations for Handshake::fetch_or_extract_refmap()
    • <csr-id-c26efb9e733cb33a38ef885eded915e17e61bd9c/> split Handshake::fetch_or_extract_refmap()

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 14 commits contributed to the release.
    • 30 days passed between releases.
    • 4 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-date v0.11.1, gix-actor v0.36.1, gix-trace v0.1.16, gix-features v0.45.0, gix-hash v0.21.0, gix-hashtable v0.11.0, gix-object v0.53.0, gix-glob v0.23.0, gix-attributes v0.29.0, gix-filter v0.23.0, gix-fs v0.18.0, gix-commitgraph v0.31.0, gix-revwalk v0.24.0, gix-traverse v0.50.0, gix-worktree-stream v0.25.0, gix-archive v0.25.0, gix-tempfile v20.0.0, gix-lock v20.0.0, gix-index v0.44.0, gix-config-value v0.16.0, gix-pathspec v0.14.0, gix-ignore v0.18.0, gix-worktree v0.45.0, gix-diff v0.56.0, gix-blame v0.6.0, gix-ref v0.56.0, gix-config v0.49.0, gix-prompt v0.12.0, gix-url v0.34.0, gix-credentials v0.33.0, gix-discover v0.44.0, gix-dir v0.18.0, gix-mailmap v0.28.1, gix-revision v0.38.0, gix-merge v0.9.0, gix-negotiate v0.24.0, gix-pack v0.63.0, gix-odb v0.73.0, gix-refspec v0.34.0, gix-shallow v0.7.0, gix-transport v0.51.0, gix-protocol v0.54.0, gix-status v0.23.0, gix-submodule v0.23.0, gix-worktree-state v0.23.0, gix v0.76.0, gix-fsck v0.15.0, gitoxide-core v0.51.0, gitoxide v0.48.0, safety bump 43 crates (21fecdf)
      • Merge pull request #2291 from j-walther/main (e4775d2)
      • Also call for the initial connection in shallow clones (201ec78)
      • Merge pull request #2274 from djc/simplify-ls-refs (eab774c)
      • Refactor (9d936fb)
      • Merge pull request #2283 from GitoxideLabs/copilot/add-optional-prefix-support (e343ed9)
      • Respect the :(optional) prefix when interpolating paths via ConfigSnapshot::trusted_path(). (580bee9)
      • Split async and blocking implementations for Handshake::fetch_or_extract_refmap() (ab3cce4)
      • Split Handshake::fetch_or_extract_refmap() (c26efb9)
      • Merge pull request #2253 from Pingasmaster/raw-email-attempt-fix (f471ac5)
      • Refactor (6f7b23a)
      • Expose raw commit/tag actor headers for round-tripping. (1955b5b)
      • Merge pull request #2275 from GitoxideLabs/dependabot/cargo/cargo-92eaa62a2e (93dd630)
      • Bump the cargo group across 1 directory with 14 updates (703644c) </details>
    Open source →
  13. 0.75.0 22 Nov 2025
    Release notes

    New Features

    • <csr-id-a004329195ff9dcbe11e6d52195ff30536fe7a16/> add Repository::worktree_proxy_by_id(id). That way it's more straightforward to obtain information about worktrees which are known by ID.
    • <csr-id-aeee98234002f0cf79bd3629ada5d3ec3d7b86cd/> add Handshake::ref_map() to produce a ref-map from a V1 or V2 handshake.
    • <csr-id-0ed01645e2284f86e1afaf1486f08cad3243ed76/> add Repository::set_workdir(). Force this repository instance to use the given worktree directory.

    Bug Fixes

    • <csr-id-f7700e452c79ff5582626bb3377d0429a921d869/> refspec for shallow clones uses a single-branch When doing shallow clones (depth != NoChange), it now uses a single-branch refspec instead of fetching all branches. This matches Git's behavior and significantly reduces the repository size for shallow clones.

      For shallow clones:

      • If ref_name is specified: uses that branch
      • Otherwise: attempts to detect from Protocol V1 handshake or falls back to init.defaultBranch config or "main"

      This addresses issue #2227 where gix clone --depth 1 was creating repositories ~130MB vs Git's ~70MB due to fetching all branches.

    Bug Fixes (BREAKING)

    • <csr-id-bb2cec09db45c10e58527b56682e602692a5628d/> respect diff.algorithm in Repository::blame_file
    • <csr-id-c2050d0ec74e2c2d1d70b68e57bbb79e196796b9/> make gix-transport I/O mode features additive

    Refactor (BREAKING)

    • <csr-id-36c2be80e61a7a0ef637a5385e1960de13261984/> simplify gix-protocol handshake API by avoiding duplicates that remove the server parameter.
    • <csr-id-19a005135b91641a19a3a70fd714985ce1203333/> hoist handshake ref handling out of transport code
    • <csr-id-50120de92dab3d8347672df7a43df02291162c9a/> store all_refspecs in Options
    • <csr-id-37ab03687a940c89131141b882e5ef1a7fef85be/> store fetch refspecs in Options
    • <csr-id-f05dfab881481de5de1d23e3266cad9c069f59c5/> flatten RefMap::new() arguments

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 36 commits contributed to the release.
    • 30 days passed between releases.
    • 11 commits were understood as conventional.
    • 1 unique issue was worked on: #2227

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #2227
      • Refspec for shallow clones uses a single-branch (f7700e4)
    • Uncategorized
      • Release gix-date v0.11.0, gix-actor v0.36.0, gix-path v0.10.22, gix-object v0.52.0, gix-packetline v0.20.0, gix-filter v0.22.0, gix-revwalk v0.23.0, gix-traverse v0.49.0, gix-worktree-stream v0.24.0, gix-archive v0.24.0, gix-index v0.43.0, gix-worktree v0.44.0, gix-diff v0.55.0, gix-blame v0.5.0, gix-ref v0.55.0, gix-config v0.48.0, gix-url v0.33.2, gix-credentials v0.32.0, gix-discover v0.43.0, gix-dir v0.17.0, gix-mailmap v0.28.0, gix-revision v0.37.0, gix-merge v0.8.0, gix-negotiate v0.23.0, gix-pack v0.62.0, gix-odb v0.72.0, gix-refspec v0.33.0, gix-transport v0.50.0, gix-protocol v0.53.0, gix-status v0.22.0, gix-submodule v0.22.0, gix-worktree-state v0.22.0, gix v0.75.0, gix-fsck v0.14.0, gitoxide-core v0.50.0, gitoxide v0.47.0, safety bump 32 crates (82ff92f)
      • Merge branch 'copilot/fix-issue-2258' (b20d9e9)
      • Fix dead code warnings in gix and gitoxide-core (b170451)
      • Merge pull request #2250 from djc/rm-handshake-layers (3c2b422)
      • Bring the service parameter back to not hardcode the handshake for fetches. (c9a97db)
      • Simplify gix-protocol handshake API by avoiding duplicates that remove the server parameter. (36c2be8)
      • Merge pull request #2252 from GitoxideLabs/improvements (2f14246)
      • Add Repository::worktree_proxy_by_id(id). (a004329)
      • Merge pull request #2249 from iczero/fetch-performance-fix (c3beb20)
      • Move worktree_branches call out of loop (37e7e02)
      • Merge pull request #2242 from djc/ls-refs (0ac3080)
      • Add Handshake::ref_map() to produce a ref-map from a V1 or V2 handshake. (aeee982)
      • Adapt to changes in gix-protocol: Outcome -> Handshake (a61b2ab)
      • Refactor (48fdf5d)
      • Hoist handshake ref handling out of transport code (19a0051)
      • Store all_refspecs in Options (50120de)
      • Store fetch refspecs in Options (37ab036)
      • Flatten RefMap::new() arguments (f05dfab)
      • Merge pull request #2238 from GitoxideLabs/copilot/update-refspec-parsing-logic (c2c1a61)
      • Refactor (ba2301f)
      • Merge pull request #2248 from GitoxideLabs/improvements (c400dd3)
      • Adapt to changes in gix-date (2bcac0c)
      • Merge pull request #2247 from GitoxideLabs/improvements (3087b76)
      • Adapt to changes in gix-date (d5e194d)
      • Merge pull request #2229 from GitoxideLabs/copilot/fix-refspec-for-shallow-clone (bc62b1e)
      • Refactor (c331afc)
      • Merge pull request #2197 from cruessler/add-tests-for-slider-problem (ab44f45)
      • Merge pull request #2240 from cruessler/add-gix-repository-blame-options (385ab16)
      • Refactor (2a187ca)
      • Respect diff.algorithm in Repository::blame_file (bb2cec0)
      • Merge pull request #2204 from cruessler/improve-blame-ranges (663b41e)
      • Add Repository::set_workdir(). (0ed0164)
      • Merge pull request #2236 from djc/additive-transport (6e89afa)
      • Make gix-transport I/O mode features additive (c2050d0)
      • Merge pull request #2230 from yuki0iq/doc_auto_cfg (fbf9c39) </details>
    Open source →
  14. 0.74.1 23 Oct 2025
    Release notes

    Commit Statistics

    • 2 commits contributed to the release.
    • 1 day passed between releases.
    • 0 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    view details
    • Uncategorized
      • Use fundamental-type comparisons throughout tests (47536a5)
      • Merge pull request #2933 from GitoxideLabs/report-august (b8914ff)
    Open source →
    Release notes

    <csr-id-6f469a6fea59c88e6c69a5f94b0bc8a5977cb75b/>

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 3 commits contributed to the release over the course of 1 calendar day.
    • 1 day passed between releases.
    • 1 commit was understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-date v0.10.7, gix-actor v0.35.6, gix-trace v0.1.15, gix-features v0.44.1, gix-hash v0.20.1, gix-object v0.51.1, gix-glob v0.22.1, gix-attributes v0.28.1, gix-packetline-blocking v0.19.3, gix-commitgraph v0.30.1, gix-archive v0.23.1, gix-tempfile v19.0.1, gix-index v0.42.1, gix-config-value v0.15.3, gix-ignore v0.17.1, gix-worktree v0.43.1, gix-diff v0.54.1, gix-ref v0.54.1, gix-sec v0.12.2, gix-config v0.47.1, gix-url v0.33.1, gix-credentials v0.31.1, gix-mailmap v0.27.4, gix-revision v0.36.1, gix-pack v0.61.1, gix-odb v0.71.1, gix-packetline v0.19.3, gix-transport v0.49.1, gix-protocol v0.52.1, gix-status v0.21.1, gix v0.74.1 (bdcce5f)
      • Remove doc_auto_cfg feature to fix docs.rs documentation. (6f469a6)
      • Merge pull request #2224 from GitoxideLabs/report (3313233) </details>
    Open source →
    Release notes

    gix-pack v0.74.1

    Compare

    Choose a tag to compare

    Open source →
  15. 0.74.0 22 Oct 2025
    Release notes

    New Features

    • <csr-id-03804965f5723de001349cf3fe7399ac4815c9ef/> replace Reference::peel_to_id_in_place_packed Also, update documentation where it was still referring to deprecated in_place methods to refer to the new methods instead.

    • <csr-id-1d4a7f534d076d2793a8f17a36b11212ddc84d6e/> ability to change the fetch url of a remote The remote has a couple of "builder" methods to change is fields, e.g. push_url for setting the push url.

      A builder method for changing the fetch url of a remote was missing. This makes it impossible to fully replicate the functionality of git remote set-url.

    • <csr-id-b6fbf053925d6530ca97e75bf1d99402eb98f202/> replace Head::(try_)peel_to_x_in_place with Head::peel_to_x. The _in_place() suffixed methods are now deprecated.

    • <csr-id-3c0b7374f113017e47d384ccc799a8ada368855c/> Add Repository::new_commit and Repository::new_commit_as() methods.

    • <csr-id-cdb1100d7ec85868298c5ebe30d2bc5711c4b7eb/> add Repository::blame_file

    • <csr-id-fa1287f2e218a0959700cb858b41465f315db9d9/> Add gix::discover_with_environment_overrides()

    • <csr-id-6693ab9bfc123eb0cb8fb7a35654e01fe5853318/> support diff.ignoreSubmodules overrides in status

    Bug Fixes

    • <csr-id-620d275beacf5f47c2ec56c9d077e7121b9570ca/> deprecate Remote::push_url*() in favor of Remote::with_push*().

    • <csr-id-e0879603475051c65cc2fe39f768fc71b53181b6/> remove special handling for empty blob hash to match Git behaviour This feature was recently introduced, but was never released.

    • <csr-id-2fc9dbe7e5ee7a0d122ee3ed9c94f7e9f8ee3afc/> empty blob hashes are now automatically considered present.

    • <csr-id-ba563b0e39ebc3ce635f399accd8a4be5210f816/> extend lifetime of iterators Previously the iterators would return references with lifetimes that were shorter than the actual lifetimes of the gix::Reference themselves. This was dues to a footgun with '_ (eliding the lifetime).

      When a function returns an elided lifetime, this lifetime usually is the lifetime of the &self parameter, but sometimes it is the lifetime of the type itself (e.g. Iter<'_>).

      I made the lifetimes explicit to ensure we were using the correct ones.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 65 commits contributed to the release over the course of 99 calendar days.
    • 99 days passed between releases.
    • 11 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-date v0.10.6, gix-utils v0.3.1, gix-actor v0.35.5, gix-trace v0.1.14, gix-validate v0.10.1, gix-path v0.10.21, gix-features v0.44.0, gix-hash v0.20.0, gix-hashtable v0.10.0, gix-object v0.51.0, gix-glob v0.22.0, gix-quote v0.6.1, gix-attributes v0.28.0, gix-command v0.6.3, gix-packetline-blocking v0.19.2, gix-filter v0.21.0, gix-fs v0.17.0, gix-chunk v0.4.12, gix-commitgraph v0.30.0, gix-revwalk v0.22.0, gix-traverse v0.48.0, gix-worktree-stream v0.23.0, gix-archive v0.23.0, gix-bitmap v0.2.15, gix-tempfile v19.0.0, gix-lock v19.0.0, gix-index v0.42.0, gix-config-value v0.15.2, gix-pathspec v0.13.0, gix-ignore v0.17.0, gix-worktree v0.43.0, gix-diff v0.54.0, gix-blame v0.4.0, gix-ref v0.54.0, gix-sec v0.12.1, gix-config v0.47.0, gix-prompt v0.11.2, gix-url v0.33.0, gix-credentials v0.31.0, gix-discover v0.42.0, gix-dir v0.16.0, gix-mailmap v0.27.3, gix-revision v0.36.0, gix-merge v0.7.0, gix-negotiate v0.22.0, gix-pack v0.61.0, gix-odb v0.71.0, gix-refspec v0.32.0, gix-shallow v0.6.0, gix-packetline v0.19.2, gix-transport v0.49.0, gix-protocol v0.52.0, gix-status v0.21.0, gix-submodule v0.21.0, gix-worktree-state v0.21.0, gix v0.74.0, gix-fsck v0.13.0, gitoxide-core v0.49.0, gitoxide v0.46.0, safety bump 42 crates (89fb308)
      • Merge pull request #2217 from GitoxideLabs/copilot/update-msrv-to-rust-1-82 (4da2927)
      • Fixup Copilot commits and thank clippy (b188a7d)
      • Update MSRV to 1.82 and replace once_cell with std equivalents (6cc8464)
      • Adapt to change in gix-blame (268dac4)
      • Merge pull request #2202 from GitoxideLabs/dependabot/cargo/cargo-4a7155215a (9365cc3)
      • Bump the cargo group across 1 directory with 64 updates (838ff95)
      • Merge pull request #2174 from cruessler/deprecate-in-place-methods (442f800)
      • Replace Reference::peel_to_id_in_place_packed (0380496)
      • Merge pull request #2173 from metlos/remote-with-url (51f998f)
      • Deprecate Remote::push_url*() in favor of Remote::with_push*(). (620d275)
      • Ability to change the fetch url of a remote (1d4a7f5)
      • Merge pull request #2171 from cruessler/deprecate-in-place-methods-on-head (81c0c16)
      • Merge pull request #2170 from GitoxideLabs/copilot/fix-7a3e1d32-c145-43e2-8e87-319b255dbc2f (d302fa2)
      • Replace Head::(try_)peel_to_x_in_place with Head::peel_to_x. (b6fbf05)
      • Refactor (3499050)
      • Implement WriteTo trait for gix::Blob with comprehensive tests (ca99882)
      • Merge pull request #2169 from GitoxideLabs/copilot/fix-54bce74a-dc5e-4361-b53b-326c16b34046 (e60e253)
      • Refactor (b9c7a7e)
      • Remove special handling for empty blob hash to match Git behaviour (e087960)
      • Merge pull request #2168 from GitoxideLabs/copilot/fix-01a02b99-91ef-4e27-b90f-19af7d0d252c (f891c37)
      • Refactor (d4c2542)
      • Add Repository::new_commit and Repository::new_commit_as() methods. (3c0b737)
      • Merge pull request #2167 from GitoxideLabs/copilot/fix-3952f55e-8faf-4737-886f-09e74cab4ca8 (1a4c84d)
      • Refactor (689d839)
      • Empty blob hashes are now automatically considered present. (2fc9dbe)
      • Merge pull request #2163 from cruessler/deprecate-in-place-methods (42f8db5)
      • Adapt to changes in gix-ref (44922d0)
      • Merge pull request #2153 from cruessler/add-blame-file-on-repository (bd47fb5)
      • Add blame to extras, and asssure it's tested separately on CI (3c54e5b)
      • Merge pull request #2155 from folkertdev/skip-flate2 (752d6dc)
      • Refactor (0e7aa81)
      • In gix-features, use libz-rs-sys directly, skipping flate2 (5a2361b)
      • Merge pull request #2154 from folkertdev/fix-gix-blame-performance-regression (768164a)
      • Add Repository::blame_file (cdb1100)
      • Fix gix-blame performance regresion (8dc5e98)
      • Merge pull request #2143 from GitoxideLabs/improvements (eee5199)
      • Fix one failing test on MacOS (888b763)
      • Merge pull request #2137 from tmm1/typo-fix (ad1e2ed)
      • Fix (8e451cf)
      • Merge pull request #2106 from cruessler/add-open-with-environment-overrides (c149116)
      • Fail gix tag list when JSON is requested (fb2766b)
      • Add gix::discover_with_environment_overrides() (fa1287f)
      • Merge pull request #2132 from EliahKagan/run-ci/overlap (a4b0d2c)
      • Add regenerated make_remote_config_repos archive (c8c84e4)
      • Use git config to make overlapping remotes in a test repo (4de96fc)
      • Make git remote failure clearer in make_remote_config_repos (8cabd16)
      • Merge pull request #2119 from GitoxideLabs/improvements (f3be6e3)
      • Adapt to changes in gix-status (5da38e5)
      • Merge pull request #2113 from GitoxideLabs/release (dc7343c)
      • Release gix-actor v0.35.4, gix-fs v0.16.1, gix-object v0.50.2, gix-ref v0.53.1 (79ba9d0)
      • Merge pull request #2110 from jpgrayson/fix/gix-date-parse-raw (651f9fa)
      • Release gix-date v0.10.5 (4289ae6)
      • Merge pull request #2107 from davidkna/feat-diff-ignore-sm (d4dd783)
      • Refactor (453bb2c)
      • Support diff.ignoreSubmodules overrides in status (6693ab9)
      • Merge pull request #2105 from jalil-salame/fix-2103 (04a18f3)
      • Refactor (d4130c3)
      • Extend lifetime of iterators (ba563b0)
      • Merge pull request #2100 from GitoxideLabs/release (202bc6d)
      • Release gix-actor v0.35.3, gix-path v0.10.20, gix-features v0.43.1, gix-object v0.50.1 (d64f257)
      • Merge pull request #2097 from GitoxideLabs/fix-gix-date (589d63e)
      • Release gix-date v0.10.4 (007e3f6)
      • Remove a hack which makes '1979-02-26 18:30:00' special. (91b3220)
      • Merge pull request #2075 from GitoxideLabs/improvements (784c046) </details>
    Open source →
  16. 0.73.0 15 Jul 2025
    Release notes

    <csr-id-b7c1f2c25c7485095022fec290492aa4b7c5c5a2/>

    New Features

    • <csr-id-2affbab7491d6b4667572d4d17db864c5b703c7a/> add repo.references().pseudo() for traversing refs like HEAD and FETCH_HEAD.
    • <csr-id-d7db360d5b42ec9d2b4d9977f7b7bee0f6cc4d58/> add Repository::committer_or_set_generic_fallback(). That way one can always obtain a committer, even though it might not represent the entity actually committing.
    • <csr-id-a9befb284dc17d3656cf83859836bc221a42d67e/> add revision::walk::Platform::hide(). This finally makes safe traversals possible and is what most people would want to use instead of boundary().
    • <csr-id-85a24b3a07f08bc83a3ef34c3f07ed00cdbd9fe2/> add gitoxide.parsePrecious configuration key to opt-in to precious file parsing.
    • <csr-id-b985766c9c9c5eb09ea4c4b17be9e380bfdad9b4/> add Repository::is_empty() to emulate the similar git2 API
    • <csr-id-f687cb16676dcae37db517c5d6905be08cd9395a/> add Repository::merge_bases_many() for simplified retrieval of multiple mergebases.
    • <csr-id-3a5068eb3f9e112cf21c4c6a8bd17aa3081c5edf/> add tree::EntryRef::to_owned(). That way it's in a more reasonable spot as sibling to Entry and it's clearer how to convert noe into the other.
    • <csr-id-3ef6b5595f6d71d27a00b178fbe356257fe4b8a5/> add EntryRef::kind() as shortcut for EntryRef::mode().kind().

    Bug Fixes

    • <csr-id-427274bdf64d30e3bcd330e849ea067e359588fe/> don't panic if remote::Connection::ref_map() doesn't finish the handshake
    • <csr-id-a75b4a2bc0cc602da336421ebcfda11dd36545b7/> Repository::branch_remote_ref_name() won't fail on short names anymore. Instead, these partial names are turned into branch names, which seems more in line with what Git can do.
    • <csr-id-3f85bf5e97cee359264051bb64357361c7a0f33e/> strict_config in conjunction with GIT_WORK_TREE no longer triggers an error.

    Bug Fixes (BREAKING)

    • <csr-id-26ae766b182218151ae4c3f30306b6d41bab358a/> allow querying Repository::submodules() in an unborn repository. It's a breaking change merely because the error type changed.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 53 commits contributed to the release over the course of 79 calendar days.
    • 80 days passed between releases.
    • 13 commits were understood as conventional.
    • 2 unique issues were worked on: #1985, #2055

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #1985
      • strict_config in conjunction with GIT_WORK_TREE no longer triggers an error. (3f85bf5)
    • #2055
      • Don't panic if remote::Connection::ref_map() doesn't finish the handshake (427274b)
    • Uncategorized
      • Release gix-date v0.10.3, gix-actor v0.35.2, gix-trace v0.1.13, gix-path v0.10.19, gix-features v0.43.0, gix-hash v0.19.0, gix-hashtable v0.9.0, gix-object v0.50.0, gix-glob v0.21.0, gix-attributes v0.27.0, gix-command v0.6.2, gix-packetline-blocking v0.19.1, gix-filter v0.20.0, gix-fs v0.16.0, gix-commitgraph v0.29.0, gix-revwalk v0.21.0, gix-traverse v0.47.0, gix-worktree-stream v0.22.0, gix-archive v0.22.0, gix-tempfile v18.0.0, gix-lock v18.0.0, gix-index v0.41.0, gix-config-value v0.15.1, gix-pathspec v0.12.0, gix-ignore v0.16.0, gix-worktree v0.42.0, gix-diff v0.53.0, gix-blame v0.3.0, gix-ref v0.53.0, gix-sec v0.12.0, gix-config v0.46.0, gix-prompt v0.11.1, gix-url v0.32.0, gix-credentials v0.30.0, gix-discover v0.41.0, gix-dir v0.15.0, gix-mailmap v0.27.2, gix-revision v0.35.0, gix-merge v0.6.0, gix-negotiate v0.21.0, gix-pack v0.60.0, gix-odb v0.70.0, gix-refspec v0.31.0, gix-shallow v0.5.0, gix-packetline v0.19.1, gix-transport v0.48.0, gix-protocol v0.51.0, gix-status v0.20.0, gix-submodule v0.20.0, gix-worktree-state v0.20.0, gix v0.73.0, gix-fsck v0.12.0, gitoxide-core v0.48.0, gitoxide v0.45.0, safety bump 43 crates (5a919c4)
      • Update changelogs prior to release (65037b5)
      • Merge pull request #2061 from orthros/pseudo-refs (60c29a5)
      • Refactor (43f92b5)
      • Add repo.references().pseudo() for traversing refs like HEAD and FETCH_HEAD. (2affbab)
      • Merge pull request #2071 from cruessler/add-accessors-to-change-ref (5335c84)
      • Adapt to changes in gix-diff (a0cef8b)
      • Merge pull request #2070 from GitoxideLabs/dependabot/cargo/cargo-827bceb7eb (dab97f7)
      • Bump the cargo group across 1 directory with 68 updates (a9a8ea1)
      • Merge pull request #2065 from cruessler/add-asset-dir-to-blame-copy-royal (3f2be40)
      • Fix CI by not using -t bad (73a30f8)
      • Merge pull request #2062 from rickprice/minor_documentation_fixups (c2eb0c1)
      • Merge pull request #2057 from GitoxideLabs/improvements (e8b7a4e)
      • Small documentation fixes (bfb1c34)
      • Thanks clippy (554ce13)
      • Repository::branch_remote_ref_name() won't fail on short names anymore. (a75b4a2)
      • Merge pull request #2048 from ralphmodales/fetch-without-commiter-config (5cf6d05)
      • Add Repository::committer_or_set_generic_fallback(). (d7db360)
      • Add committer fallback for fetch (62e4bab)
      • Merge pull request #2045 from uberroot4/main (298f22e)
      • Fixed no_locations options for diffing (b7c1f2c)
      • Merge pull request #2037 from GitoxideLabs/hide (92febae)
      • Add revision::walk::Platform::hide(). (a9befb2)
      • Merge pull request #2033 from GitoxideLabs/dependabot/cargo/cargo-b72232998d (f8d7c0a)
      • Bump the cargo group with 56 updates (151e3a5)
      • Merge pull request #2029 from GitoxideLabs/submodule-all (b199c6e)
      • Add a test to assure subomdule.<name>.ignore = all is handled correctly. (657dec4)
      • Merge pull request #2026 from EliahKagan/run-ci/check-msrv-next (40f5a56)
      • Use gix manifest rust-version in all MSRV checks (654a8fa)
      • Merge pull request #2019 from GitoxideLabs/precious-opt-in (5f9de52)
      • Adapt to changes in gix-ignore and gix-glob, and more. (4ef7806)
      • Add gitoxide.parsePrecious configuration key to opt-in to precious file parsing. (85a24b3)
      • Merge pull request #2016 from GitoxideLabs/improvements (7ae3797)
      • Add Repository::is_empty() to emulate the similar git2 API (b985766)
      • Allow querying Repository::submodules() in an unborn repository. (26ae766)
      • Merge pull request #2014 from GitoxideLabs/zip (648022b)
      • Release gix-glob v0.20.1, gix-attributes v0.26.1, gix-command v0.6.1, gix-filter v0.19.2, gix-worktree-stream v0.21.2, gix-archive v0.21.2 (f0ed2cc)
      • Merge pull request #2009 from GitoxideLabs/release-gix-index (c3f06ae)
      • Release gix-path v0.10.18, gix-date v0.10.2, gix-traverse v0.46.2, gix-index v0.40.1 (d2b4c44)
      • Merge pull request #2000 from GitoxideLabs/improvements (fdfb239)
      • Add Repository::merge_bases_many() for simplified retrieval of multiple mergebases. (f687cb1)
      • Merge pull request #1993 from EliahKagan/run-ci/baseline (7a33e2a)
      • Completely remove :/ baseline skip (b623bf1)
      • Flip :/ baseline skip from CI to local and extend (2400158)
      • Merge pull request #1987 from GitoxideLabs/fix-1985 (189d1a0)
      • Merge pull request #1975 from GitoxideLabs/improvements (28935a5)
      • Add tree::EntryRef::to_owned(). (3a5068e)
      • Merge pull request #1977 from GitoxideLabs/dependabot/cargo/cargo-811d7b929d (800738a)
      • Bump the cargo group with 12 updates (4408166)
      • Add EntryRef::kind() as shortcut for EntryRef::mode().kind(). (3ef6b55)
      • Merge pull request #1971 from GitoxideLabs/new-release (8d4c4d1) </details>
    Open source →
  17. 0.72.1 26 Apr 2025
    Release notes

    Commit Statistics

    <csr-read-only-do-not-edit/>

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

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-date v0.10.1, gix-utils v0.3.0, gix-actor v0.35.1, gix-validate v0.10.0, gix-path v0.10.17, gix-features v0.42.1, gix-hash v0.18.0, gix-hashtable v0.8.1, gix-object v0.49.1, gix-glob v0.20.0, gix-quote v0.6.0, gix-attributes v0.26.0, gix-command v0.6.0, gix-packetline-blocking v0.19.0, gix-filter v0.19.1, gix-fs v0.15.0, gix-commitgraph v0.28.0, gix-revwalk v0.20.1, gix-traverse v0.46.1, gix-worktree-stream v0.21.1, gix-archive v0.21.1, gix-tempfile v17.1.0, gix-lock v17.1.0, gix-index v0.40.0, gix-config-value v0.15.0, gix-pathspec v0.11.0, gix-ignore v0.15.0, gix-worktree v0.41.0, gix-diff v0.52.1, gix-blame v0.2.1, gix-ref v0.52.1, gix-sec v0.11.0, gix-config v0.45.1, gix-prompt v0.11.0, gix-url v0.31.0, gix-credentials v0.29.0, gix-discover v0.40.1, gix-dir v0.14.1, gix-mailmap v0.27.1, gix-revision v0.34.1, gix-merge v0.5.1, gix-negotiate v0.20.1, gix-pack v0.59.1, gix-odb v0.69.1, gix-refspec v0.30.1, gix-shallow v0.4.0, gix-packetline v0.19.0, gix-transport v0.47.0, gix-protocol v0.50.1, gix-status v0.19.1, gix-submodule v0.19.1, gix-worktree-state v0.19.0, gix v0.72.1, gix-fsck v0.11.1, gitoxide-core v0.47.1, gitoxide v0.44.0 (e104545)
      • Bump all prior pratch levels to majors (5f7f805)
      • Merge pull request #1969 from GitoxideLabs/new-release (631f07a) </details>
    Open source →
  18. 0.72.0 25 Apr 2025 withdrawn
    Release notes

    Bug Fixes

    • <csr-id-b07f907ba2e01849744c72df35dac57b624f2f85/> Adapt to changes in gix-actor Use the committer date and author date that are now backed by bytes and interpret these bytes into a gix_date::Time on demand.

    • <csr-id-ca165174e3502aa75e74ef90728d192f517f4406/> correctly handle safe.directory for worktrees

    • <csr-id-24d235d7a6bdb01c5c1cff79b5be14f1d5afa11a/> safe.directory now applies to configuration as well This means that repo-local configuration that is considered safe, ideally with safe.directory=safe/dir/* notation, will be usable for sensitive operations.

    • <csr-id-38b63c2fc9d407b3c634d8b0c72d4d0c104aa5ad/> make fs::walkdir_sorted_new() sort entries by paths literally This follows up 7b1b5bf864e74706aefeb1213e8bdb0545d5464a. Since packed-refs appears to be sorted by full ref name, loose-refs should also be emitted in that order.

      The comparison function is copied from gix::diff::object::tree::EntryRef. Non-utf8 file names are simply mapped to "" on Windows. We could add some fallback, but callers can't handle such file names anyway.

    New Features (BREAKING)

    • <csr-id-a6d7d701517f7eafe1e2ed15d564114aa5c1d07c/> use RelativePath for prefixed ref iteration. Its type captures the requirements better.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 41 commits contributed to the release.
    • 21 days passed between releases.
    • 5 commits were understood as conventional.
    • 3 unique issues were worked on: #1788, #1912, #1928

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #1788
      • Add test to assure dynamic allocation of slots works (5396b2b)
    • #1912
      • Correctly handle safe.directory for worktrees (ca16517)
      • safe.directory now applies to configuration as well (24d235d)
    • #1928
      • Make fs::walkdir_sorted_new() sort entries by paths literally (38b63c2)
    • Uncategorized
      • Release gix-path v0.10.16, gix-features v0.42.0, gix-hash v0.17.1, gix-object v0.49.0, gix-glob v0.19.1, gix-quote v0.5.1, gix-attributes v0.25.1, gix-command v0.5.1, gix-packetline-blocking v0.18.4, gix-filter v0.19.0, gix-fs v0.14.1, gix-commitgraph v0.27.1, gix-revwalk v0.20.0, gix-traverse v0.46.0, gix-worktree-stream v0.21.0, gix-archive v0.21.0, gix-tempfile v17.0.1, gix-lock v17.0.1, gix-index v0.39.1, gix-config-value v0.14.13, gix-pathspec v0.10.1, gix-ignore v0.14.1, gix-worktree v0.40.1, gix-diff v0.52.0, gix-blame v0.2.0, gix-ref v0.52.0, gix-sec v0.10.13, gix-config v0.45.0, gix-prompt v0.10.1, gix-url v0.30.1, gix-credentials v0.28.1, gix-discover v0.40.0, gix-dir v0.14.0, gix-mailmap v0.27.0, gix-revision v0.34.0, gix-merge v0.5.0, gix-negotiate v0.20.0, gix-pack v0.59.0, gix-odb v0.69.0, gix-refspec v0.30.0, gix-shallow v0.3.1, gix-packetline v0.18.5, gix-transport v0.46.1, gix-protocol v0.50.0, gix-status v0.19.0, gix-submodule v0.19.0, gix-worktree-state v0.18.1, gix v0.72.0, gix-fsck v0.11.0, gitoxide-core v0.47.0, gitoxide v0.43.0 (cc5b696)
      • Adjusting changelogs prior to release of gix-path v0.10.16, gix-features v0.42.0, gix-hash v0.17.1, gix-object v0.49.0, gix-glob v0.19.1, gix-quote v0.5.1, gix-attributes v0.25.1, gix-command v0.5.1, gix-packetline-blocking v0.18.4, gix-filter v0.19.0, gix-fs v0.14.1, gix-commitgraph v0.27.1, gix-revwalk v0.20.0, gix-traverse v0.46.0, gix-worktree-stream v0.21.0, gix-archive v0.21.0, gix-tempfile v17.0.1, gix-lock v17.0.1, gix-index v0.39.1, gix-config-value v0.14.13, gix-pathspec v0.10.1, gix-ignore v0.14.1, gix-worktree v0.40.1, gix-diff v0.52.0, gix-blame v0.2.0, gix-ref v0.52.0, gix-sec v0.10.13, gix-config v0.45.0, gix-prompt v0.10.1, gix-url v0.30.1, gix-credentials v0.28.1, gix-discover v0.40.0, gix-dir v0.14.0, gix-mailmap v0.27.0, gix-revision v0.34.0, gix-merge v0.5.0, gix-negotiate v0.20.0, gix-pack v0.59.0, gix-odb v0.69.0, gix-refspec v0.30.0, gix-shallow v0.3.1, gix-packetline v0.18.5, gix-transport v0.46.1, gix-protocol v0.50.0, gix-status v0.19.0, gix-submodule v0.19.0, gix-worktree-state v0.18.1, gix v0.72.0, gix-fsck v0.11.0, gitoxide-core v0.47.0, gitoxide v0.43.0, safety bump 7 crates (49fa9f3)
      • Release gix-date v0.10.0, gix-utils v0.2.1, gix-actor v0.35.0, gix-validate v0.9.5, gix-path v0.10.15, gix-features v0.42.0, gix-hash v0.17.1, gix-object v0.49.0, gix-glob v0.19.1, gix-quote v0.5.1, gix-attributes v0.25.0, gix-command v0.5.1, gix-packetline-blocking v0.18.4, gix-filter v0.19.0, gix-fs v0.14.0, gix-commitgraph v0.27.1, gix-revwalk v0.20.0, gix-traverse v0.46.0, gix-worktree-stream v0.21.0, gix-archive v0.21.0, gix-tempfile v17.0.1, gix-lock v17.0.1, gix-index v0.39.0, gix-config-value v0.14.13, gix-pathspec v0.10.1, gix-ignore v0.14.1, gix-worktree v0.40.0, gix-diff v0.52.0, gix-blame v0.2.0, gix-ref v0.51.0, gix-sec v0.10.13, gix-config v0.45.0, gix-prompt v0.10.1, gix-url v0.30.1, gix-credentials v0.28.1, gix-discover v0.40.0, gix-dir v0.14.0, gix-mailmap v0.27.0, gix-revision v0.34.0, gix-merge v0.5.0, gix-negotiate v0.20.0, gix-pack v0.59.0, gix-odb v0.69.0, gix-refspec v0.30.0, gix-shallow v0.3.1, gix-packetline v0.18.5, gix-transport v0.46.0, gix-protocol v0.50.0, gix-status v0.19.0, gix-submodule v0.19.0, gix-worktree-state v0.18.0, gix v0.72.0, gix-fsck v0.11.0, gitoxide-core v0.46.0, gitoxide v0.43.0, safety bump 30 crates (db0b095)
      • Update changelogs prior to release (0bf84db)
      • Merge pull request #1935 from pierrechevalier83/fix_1923 (3b1bef7)
      • J fmt (c3c6504)
      • Thanks clippy (6f009d7)
      • Adapt to changes in gix-date and gix-actor (afdf1a5)
      • Apply feedback from discussion (70097c0)
      • Adapt to changes in gix-actor (b07f907)
      • Merge pull request #1965 from GitoxideLabs/report (737bb49)
      • Merge pull request #1964 from GitoxideLabs/fix-1912 (359914c)
      • Merge pull request #1963 from joshtriplett/zlib-rs-default (9e075b9)
      • Switch to zlib-rs by default and drop other zlib backends (96164c5)
      • Merge pull request #1921 from cruessler/introduce-repository-path (fdc06b1)
      • Refactor (294902e)
      • Use RelativePath for prefixed ref iteration. (a6d7d70)
      • Merge pull request #1853 from GitoxideLabs/odb-issue (cd1a777)
      • Merge pull request #1825 from DianaNites/diananites-reftable (edb449c)
      • Show that ref-tables aren't currently supported. (3c16e53)
      • Merge pull request #1957 from EliahKagan/run-ci/versioning (5823b22)
      • Adapt Cargo.toml files in workspace to gix-features bump (6315536)
      • Merge pull request #1954 from GitoxideLabs/fix-recursive-list-refs-prefix (71275d1)
      • Adapt to changes in gix-ref. (52142b4)
      • Fix ci failures (57c9014)
      • Merge pull request #1953 from GitoxideLabs/dependabot/cargo/cargo-4a3cda0de8 (3aec7fb)
      • Bump the cargo group with 3 updates (9f1fbc7)
      • Merge pull request #1949 from GitoxideLabs/dependabot/cargo/cargo-6893e2988a (b5e9059)
      • Bump the cargo group with 21 updates (68e6b2e)
      • Use Into<Cow<>> (507d682)
      • Handle trailing slash in ref list prefix filtering (3ca6811)
      • Merge pull request #1933 from GitoxideLabs/release-gix-features (1612c73)
      • Release gix-features v0.41.1 (fc5faf2)
      • Merge pull request #1931 from yuja/push-klrqpplwxrkx (7502b4a)
      • Merge pull request #1917 from pierrechevalier83/issue_1887 (6307f57)
      • Adapt to changes in gix-object (8969245)
      • Merge pull request #1919 from GitoxideLabs/release (420e730) </details>
    Open source →
  19. 0.71.0 04 Apr 2025
    Release notes

    <csr-id-866affde8ef17f201884b8a4b36cc4c7f449d6fe/>

    Changed

    • <csr-id-9800e9c25c2a61dbe5d502270a962f20bf305f47/> read config losslessly even without debug_assertions This should hopefully not be a breaking change, as the same code could produce the same behaviour if compiled with different flags, and the semantic meaning of the resulting configuration should be the same. But Hyrum’s law is always lurking…

    Documentation

    • <csr-id-687322b45787a2552fb16a8d1fed8630318f9148/> specify ThreadSafeRepository is not Send/Sync without "parallel"

    New Features

    • <csr-id-5054780967ef7d5651d358337aa78e09b9007c38/> add Repository::checkout_options(). It's a low-level set of options to drive (quite unsafe) checkouts. They are unsafe as they may be configured to overwrite, and are in no way similar to git checkout.
    • <csr-id-02878c9c3418c904c61c8e0ef02f9448b11fd14c/> add Repository::head_tree_id_or_empty() for convenience.
    • <csr-id-776f9bec5bb0ad04ccc6e082d10eb421de1483ee/> add Repository::workdir_path() to easily obtain a Path for worktree items.
    • <csr-id-518fbbc7f4e66c908f33cc3b3dcf5f0a7d6f5d1b/> add Repository::workdir() as replacement for Repository::work_dir(). Keep the latter as deprecated though.
    • <csr-id-27e62d7e741b56418e174db0495a9ddc32f11b47/> filter::Pipeline::worktree_file_to_object() now can add Commit type objects.
    • <csr-id-70ebd5f4128e7dcf83175ca05a70741434b71379/> add filter::Pipeline::worktree_file_to_object(). That way it's easier to correctly add whole files into the object database.
    • <csr-id-23d2bed707e0c0cb164f3f279849536688ffa4c1/> make internal repo fields public for ease of use. That way, functions or methods taking such a type as argument have access to the underlying repository so it doesn't need to be passed as separate argument.
    • <csr-id-37582b089357ba9e06547374ea651c51d3608890/> add blob::platform::Resource::intern_source_strip_newline_separators() That way it will be easier to have typical Git-style patches diffs around files that don't end with a newline.
    • <csr-id-f3257f3c0fd1b91aecdb8f1d947e9648080d162f/> add Repository::big_file_threshold() to easily learn what Git considers a big file.

    Bug Fixes

    • <csr-id-aa8daf89bcc3c26baeb7d850c19bb9a5d403f555/> Don't panic when rev-parsing ^^^ and similar

    • <csr-id-dcdb8eae4b5c7897bef752a66bc17a8ee662da97/> filter::Pipeline::convert_to_git() now also works on Windows under all circumstances.

    • <csr-id-9bec947deb4313a9d1eb701555d96ea829132976/> assure Repository::commit_as() also uses the committer for reflogs Previously it would retrieve the configured committer, or trigger an error if there was none despite the commiter being provided to commit_as().

      This als adds Repository::edit_references_as(committer) to allow passing a given committer.

    Changed (BREAKING)

    • <csr-id-fd12ef89af29bf0684fc1df3e7b76ff367dee994/> drop obsolete SHA‐1 features The hashing API has moved to gix_hash::hasher, and we now use sha1-checked unconditionally.

    Bug Fixes (BREAKING)

    • <csr-id-b78e7dd99230077b694434e0ed7d236f97aba046/> make clear what with_pruned() is doing by renaming it to with_boundary(). This is how it acts, and it's not at all the same as hide() in git2.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 58 commits contributed to the release.
    • 76 days passed between releases.
    • 17 commits were understood as conventional.
    • 2 unique issues were worked on: #1829, #1914

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #1829
      • Assure Repository::commit_as() also uses the committer for reflogs (9bec947)
    • #1914
      • Don't panic when rev-parsing ^^^ and similar (aa8daf8)
    • Uncategorized
      • Release gix-dir v0.13.0, gix-mailmap v0.26.0, gix-revision v0.33.0, gix-merge v0.4.0, gix-negotiate v0.19.0, gix-pack v0.58.0, gix-odb v0.68.0, gix-refspec v0.29.0, gix-shallow v0.3.0, gix-packetline v0.18.4, gix-transport v0.46.0, gix-protocol v0.49.0, gix-status v0.18.0, gix-submodule v0.18.0, gix-worktree-state v0.18.0, gix v0.71.0, gix-fsck v0.10.0, gitoxide-core v0.46.0, gitoxide v0.42.0 (d248e3d)
      • Release gix-sec v0.10.12, gix-config v0.44.0, gix-prompt v0.10.0, gix-url v0.30.0, gix-credentials v0.28.0, gix-discover v0.39.0, gix-dir v0.13.0, gix-mailmap v0.26.0, gix-revision v0.33.0, gix-merge v0.4.0, gix-negotiate v0.19.0, gix-pack v0.58.0, gix-odb v0.68.0, gix-refspec v0.29.0, gix-shallow v0.3.0, gix-packetline v0.18.4, gix-transport v0.46.0, gix-protocol v0.49.0, gix-status v0.18.0, gix-submodule v0.18.0, gix-worktree-state v0.18.0, gix v0.71.0, gix-fsck v0.10.0, gitoxide-core v0.46.0, gitoxide v0.42.0 (ada5a94)
      • Release gix-date v0.9.4, gix-utils v0.2.0, gix-actor v0.34.0, gix-features v0.41.0, gix-hash v0.17.0, gix-hashtable v0.8.0, gix-path v0.10.15, gix-validate v0.9.4, gix-object v0.48.0, gix-glob v0.19.0, gix-quote v0.5.0, gix-attributes v0.25.0, gix-command v0.5.0, gix-packetline-blocking v0.18.3, gix-filter v0.18.0, gix-fs v0.14.0, gix-commitgraph v0.27.0, gix-revwalk v0.19.0, gix-traverse v0.45.0, gix-worktree-stream v0.20.0, gix-archive v0.20.0, gix-tempfile v17.0.0, gix-lock v17.0.0, gix-index v0.39.0, gix-config-value v0.14.12, gix-pathspec v0.10.0, gix-ignore v0.14.0, gix-worktree v0.40.0, gix-diff v0.51.0, gix-blame v0.1.0, gix-ref v0.51.0, gix-config v0.44.0, gix-prompt v0.10.0, gix-url v0.30.0, gix-credentials v0.28.0, gix-discover v0.39.0, gix-dir v0.13.0, gix-mailmap v0.26.0, gix-revision v0.33.0, gix-merge v0.4.0, gix-negotiate v0.19.0, gix-pack v0.58.0, gix-odb v0.68.0, gix-refspec v0.29.0, gix-shallow v0.3.0, gix-packetline v0.18.4, gix-transport v0.46.0, gix-protocol v0.49.0, gix-status v0.18.0, gix-submodule v0.18.0, gix-worktree-state v0.18.0, gix v0.71.0, gix-fsck v0.10.0, gitoxide-core v0.46.0, gitoxide v0.42.0, safety bump 48 crates (b41312b)
      • Update changelogs prior to release (38dff41)
      • Merge pull request #1915 from emilazy/push-qvyqmopsoltr (4660f7a)
      • Migrate gix_object::{try_ =>}compute_hash users (3d7e379)
      • Migrate hashing API users to fallible versions (fbf6cc8)
      • Drop obsolete SHA‐1 features (fd12ef8)
      • Merge pull request #1851 from GitoxideLabs/fix-1850 (cd96b64)
      • Adapt to changes in gix-features (5f8bff8)
      • Merge pull request #1916 from GitoxideLabs/fix-1914 (32b54b3)
      • Merge pull request #1909 from cruessler/take-to-components-in-fs-stack (5cb5337)
      • Use gix_fs::stack::ToNormalPathComponents everywhere. (1f98edb)
      • Update MSRV to 1.75 for access to impl returns in traits. (569c186)
      • Merge pull request #1911 from GitoxideLabs/improvements (bfa3253)
      • filter::Pipeline::convert_to_git() now also works on Windows under all circumstances. (dcdb8ea)
      • Merge pull request #1907 from EliahKagan/run-ci/raw (7b17da6)
      • Drop trailing , just before ) on same line in function calls (66a5ae1)
      • Use raw literals for more strings with backslashes (01bd76d)
      • Merge pull request #1898 from GitoxideLabs/improvements (7255a5f)
      • Improve documentation of a field that one can easily get wrong otherwise. (5a1b3d6)
      • Merge pull request #1873 from NobodyXu/zlib-rs (316f113)
      • Review adjustments for zlib-rs support. (5e618b6)
      • Add new feature zlib-rs (8b1b55c)
      • Revert "Instrument make_remote_repos.sh to view config corruption" (9061fc4)
      • Instrument make_remote_repos.sh to view config corruption (d290ad9)
      • Merge pull request #1884 from GitoxideLabs/improvements (0bf1d5b)
      • Merge pull request #1876 from joshtriplett/fix-tests-in-environments-with-env-variables-set (dc8bd63)
      • Fix tests when GIT_AUTHOR_NAME or GIT_COMMITTER_NAME are set (94dda22)
      • Add Repository::checkout_options(). (5054780)
      • Add Repository::head_tree_id_or_empty() for convenience. (02878c9)
      • Add Repository::workdir_path() to easily obtain a Path for worktree items. (776f9be)
      • Add Repository::workdir() as replacement for Repository::work_dir(). (518fbbc)
      • Merge pull request #1882 from emilazy/push-ylwwuwymlmwt (10e41ee)
      • Fix cargo-deny using a prodash-update and ignore directive (cf7f34d)
      • Read config losslessly even without debug_assertions (9800e9c)
      • Merge pull request #1854 from GitoxideLabs/montly-report (16a248b)
      • Thanks clippy (8e96ed3)
      • Merge pull request #1837 from GitoxideLabs/improvements (b4fe425)
      • Repository::commit() now explains how to create a commit without ref updates. (866affd)
      • Merge pull request #1835 from GitoxideLabs/fixes (503098d)
      • Merge pull request #1834 from GitoxideLabs/improvements (5c327bb)
      • filter::Pipeline::worktree_file_to_object() now can add Commit type objects. (27e62d7)
      • Merge pull request #1833 from GitoxideLabs/improvements (c042813)
      • Add filter::Pipeline::worktree_file_to_object(). (70ebd5f)
      • Make internal repo fields public for ease of use. (23d2bed)
      • Merge pull request #1821 from GitoxideLabs/improvements (914bf28)
      • Add blob::platform::Resource::intern_source_strip_newline_separators() (37582b0)
      • Merge pull request #1820 from GitoxideLabs/improvements (daa6d4a)
      • Make clear what with_pruned() is doing by renaming it to with_boundary(). (b78e7dd)
      • Merge pull request #1807 from bryceberger/bryce/push-xqrmpyoxlosq (79cb655)
      • Refactor (d7ddbb7)
      • Specify ThreadSafeRepository is not Send/Sync without "parallel" (687322b)
      • Merge pull request #1785 from GitoxideLabs/improvements (1a69c40)
      • Add Repository::big_file_threshold() to easily learn what Git considers a big file. (f3257f3)
      • Merge pull request #1778 from GitoxideLabs/new-release (8df0db2) </details>
    Open source →
  20. 0.70.0 18 Jan 2025
    Release notes

    <csr-id-17835bccb066bbc47cc137e8ec5d9fe7d5665af0/> <csr-id-9db21601b61601c01cd2419543e2c461a7dd568d/>

    New Features

    • <csr-id-da0e1c7a442e67a73a080ed2ffe80c65ed7851ed/> add Repository::upstream_branch_and_remote_name_for_tracking_branch() It's a way to learn about the Remote and upstream branch which would match the given local tracking branch.
    • <csr-id-5b6e5c8b0cfa714d0de0dc89d0a8fa7794e102a0/> more often check for interrupts in status iterator
    • <csr-id-3b53982db092e6c57a4ab9c979f7c104a7ced207/> add tree::Editor|editor::Cursor::get() to see if an entry is loaded at path. This can be useful to get a feeling for how far the tree was already made available, even though it won't reveal if an entry was edited.
    • <csr-id-8ae9e5729bd9e7d6308bd226f510b3415381de89/> Repository::is_dirty() now also checks for tree/index changes. This copmpletes the is_dirty() implementation.
    • <csr-id-83f3d93eaa1d7a96e0fa60840502f211c20edc3b/> Repository::tree_index_status() to see the changes between a tree and an index. It also respects status.rename and status.renameLimit to configure rename tracking.
    • <csr-id-592e250f8f01788d37f9fb7b1938b67446042bf3/> add Tree::depthfirst() with a delegate. This allows a depth-first traversal with a delegate.
    • <csr-id-25efbfb72e5a043ce8f7d196c1f7104ef93394df/> Add blame plumbing crate to the top-level. For now, it doesn't come with a simplified gix API though.

    Bug Fixes

    • <csr-id-cd8fabf583e75f59feda7a78b8710f26a8200cbb/> Repository::status() detects files added to the index in an unborn repository. Previously it wouldn't show them.

    • <csr-id-84019cb42cff153c305cb718307493df42a134a4/> Respository::status() iterator won't fail in unborn directories.

    • <csr-id-bc022845ace1962a2a85f9272cdbc0cf24745c62/> worktrees of submodules now know their correct worktree Previously they would use a very incorrect worktree which would cause the status to be calculated very wrongly.

    • <csr-id-3bbd1f7b60b09f9862ee88293c316a359d79e3d8/> status-iterator won't swallow legitimate modification during 'racy-git'. When a modification is marked as being racy, then previously the iterator would have kept the whole modification even though it should just have tracked the single change.

      This made the legitimate modification disappear.

    • <csr-id-a03bde58176e68850fa2d3299f9901a9b36b892f/> write_blob_stream() does not need Seek trait anymore. Internally, it has to turn it into a buffer so it's not needed anymore. It also counteracts the idea of using a stream with arbitrarily big files.

    • <csr-id-a987e682aefa352ceaffa05d56545c9bc9c14934/> Submodule::status() now konws about tree-index changes as well. This completes the status implementation.

    • <csr-id-51a430114493de392ce0c60f462d6e3ff36475a4/> remove unused fetch-error variants Note that it's a breaking change, but it's on top of a previous breaking change so folks would already have to update explicitly.

    New Features (BREAKING)

    • <csr-id-801689b4aa860e1054dd9362a59d76077f31f248/> add status::Platform::into_iter() for obtaining a complete status. Note that it is still possible to disable the head-index status.

      Types moved around, effectivey removing the iter:: module for most more general types, i.e. those that are quite genericlally useful in a status.

    Bug Fixes (BREAKING)

    • <csr-id-a6f397f529953ac4177962059c9e6d9bcee2b657/> all config::Snapshot access now uses the new Key trait. That way one can officially use "section.name" strings or &Section::NAME.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 41 commits contributed to the release over the course of 27 calendar days.
    • 27 days passed between releases.
    • 18 commits were understood as conventional.
    • 1 unique issue was worked on: #1770

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #1770
      • Repository::status() detects files added to the index in an unborn repository. (cd8fabf)
    • Uncategorized
      • Release gix-utils v0.1.14, gix-actor v0.33.2, gix-hash v0.16.0, gix-trace v0.1.12, gix-features v0.40.0, gix-hashtable v0.7.0, gix-path v0.10.14, gix-validate v0.9.3, gix-object v0.47.0, gix-glob v0.18.0, gix-quote v0.4.15, gix-attributes v0.24.0, gix-command v0.4.1, gix-packetline-blocking v0.18.2, gix-filter v0.17.0, gix-fs v0.13.0, gix-chunk v0.4.11, gix-commitgraph v0.26.0, gix-revwalk v0.18.0, gix-traverse v0.44.0, gix-worktree-stream v0.19.0, gix-archive v0.19.0, gix-bitmap v0.2.14, gix-tempfile v16.0.0, gix-lock v16.0.0, gix-index v0.38.0, gix-config-value v0.14.11, gix-pathspec v0.9.0, gix-ignore v0.13.0, gix-worktree v0.39.0, gix-diff v0.50.0, gix-blame v0.0.0, gix-ref v0.50.0, gix-sec v0.10.11, gix-config v0.43.0, gix-prompt v0.9.1, gix-url v0.29.0, gix-credentials v0.27.0, gix-discover v0.38.0, gix-dir v0.12.0, gix-mailmap v0.25.2, gix-revision v0.32.0, gix-merge v0.3.0, gix-negotiate v0.18.0, gix-pack v0.57.0, gix-odb v0.67.0, gix-refspec v0.28.0, gix-shallow v0.2.0, gix-packetline v0.18.3, gix-transport v0.45.0, gix-protocol v0.48.0, gix-status v0.17.0, gix-submodule v0.17.0, gix-worktree-state v0.17.0, gix v0.70.0, gix-fsck v0.9.0, gitoxide-core v0.45.0, gitoxide v0.41.0, safety bump 42 crates (dea106a)
      • Update all changelogs prior to release (1f6390c)
      • Merge pull request #1774 from EliahKagan/complex-graph-no-baseline-next (90e08f1)
      • Use parse_spec_no_baseline with :/ for all 2.47.* on CI (fe33fa7)
      • Merge pull request #1772 from GitoxideLabs/improvements (4c8200f)
      • Merge pull request #1769 from GitoxideLabs/improvements (47e44c5)
      • Respository::status() iterator won't fail in unborn directories. (84019cb)
      • Merge pull request #1768 from GitoxideLabs/improvements (34fa6bb)
      • Adapt to changes in gix-status (25d480c)
      • Merge pull request #1750 from GitoxideLabs/odb-issue (e4fb21e)
      • Reproduce issue with 'too many packs' for slotmap (dbf079f)
      • Merge pull request #1763 from GitoxideLabs/better-refspec-primitives (af8f201)
      • Add Repository::upstream_branch_and_remote_name_for_tracking_branch() (da0e1c7)
      • Adapt to changes in gix-refspec (6d7dd9b)
      • Merge pull request #1762 from GitoxideLabs/fix-1759 (7ec21bb)
      • Bump rust-version to 1.70 (17835bc)
      • Make really clear that Repository::worktrees() lists linked worktrees. (9db2160)
      • Worktrees of submodules now know their correct worktree (bc02284)
      • Merge pull request #1752 from GitoxideLabs/git-shell (1ca480a)
      • Thanks clippy (9193b05)
      • Merge pull request #1749 from GitoxideLabs/status (8d84818)
      • More often check for interrupts in status iterator (5b6e5c8)
      • Merge pull request #1746 from GitoxideLabs/status (af704f5)
      • Add tree::Editor|editor::Cursor::get() to see if an entry is loaded at path. (3b53982)
      • Status-iterator won't swallow legitimate modification during 'racy-git'. (3bbd1f7)
      • write_blob_stream() does not need Seek trait anymore. (a03bde5)
      • Merge pull request #1410 from GitoxideLabs/status (0ab4f64)
      • Submodule::status() now konws about tree-index changes as well. (a987e68)
      • Add status::Platform::into_iter() for obtaining a complete status. (801689b)
      • All config::Snapshot access now uses the new Key trait. (a6f397f)
      • Repository::is_dirty() now also checks for tree/index changes. (8ae9e57)
      • Repository::tree_index_status() to see the changes between a tree and an index. (83f3d93)
      • Add Tree::depthfirst() with a delegate. (592e250)
      • Adapt to changes in gix-traverse (1de4e70)
      • Merge pull request #1453 from cruessler/gix-blame (6ed9976)
      • Add blame plumbing crate to the top-level. (25efbfb)
      • Release gix v0.69.1 (7659a65)
      • Merge pull request #1740 from GitoxideLabs/cargo-improvements (3fb0c18)
      • Remove unused fetch-error variants (51a4301)
      • Merge pull request #1739 from GitoxideLabs/new-release (d22937f) </details>
    Open source →
  21. 0.69.1 22 Dec 2024
    Release notes

    Bug Fixes

    • <csr-id-51a430114493de392ce0c60f462d6e3ff36475a4/> remove unused fetch-error variants Note that it's a breaking change, but it's on top of a previous breaking change so folks would already have to update explicitly.
    Open source →
  22. 0.69.0 22 Dec 2024
    Release notes

    Changed

    • <csr-id-c0f4da5ef4791370c98f34f0eb3bb5773edbba32/> Adjust gix::dirwalk::Options::{X,set_X} parameter names This adjusts the names of parameters to X and set_X methods of gix::dirwalk::Options (where X is an option name) to use a systematic naming convention:

      • For the same option X, the X and set_X methods now always have the same name of the parameter that specifies a value for an option.

    New Features

    • <csr-id-d0df20a5458e3f660bacaf86995518bc5bb8c10b/> handle RefLogLookup::Date
    • <csr-id-e17b3a9c93bd9fc5847c37b1f8e336bc4b1b1e39/> add merge::tree::TreeFavor similar to *::FileFavor. That way it's possible to control how tree-conflicts should be auto-resolved.

    Bug Fixes

    • <csr-id-14c3744a0bb5bf9e78055e0b86103a37a1f0c299/> assure date-tests won't fail over time. Need to use absolute timestamps as it's impossible to control the system time.
    • <csr-id-efc71fd0a36c7f4befe54d46a9d804853ee5a583/> public access to the contained repository in wrapped types, like Id. This makes these types easier to use as it's enough to pass a wrapped type to perform more actions on the underlying repository.

    New Features (BREAKING)

    • <csr-id-e59fc09f12a1c6b27d878525ff6074ac846aa87e/> move all possible code from gix to gix-protocol. For now, just move the code down and immediately re-integrate in gix to be able to use its tests to validate it.

      This is a breaking change as some types move and change the layout.

    • <csr-id-6367c7d0a796aff8ee8778916c1a1ddae68b654d/> Add gix-shallow crate and use it from gix and gix-protocol That way it's easier to reuse shallow-handling code from plumbing crates.

      Note that this is a breaking change as gix-protocol now uses the gix-shallow::Update type, which doesn't implement a formerly public from_line() method anymore. Now it is available as fetch::response::shallow_update_from_line().

    Bug Fixes (BREAKING)

    <csr-id-bd905a6f151ac7f3153f5208ef7c2d686f372c30/>

    • <csr-id-ea8b95f4df8a6b06aa393acd907f6400785661ff/> symlinks_to_directories_are_ignored_like_directories by value The methods of gix::dirwalk::Options are paired, where for each option X of Options, a method named like X takes and returns self by value, and a method set_X takes and returns self by mutable reference.

      But in symlinks_to_directories_are_ignored_like_directories, both took self by mutable reference. This fixes that. The effect of this fix is to allow building Options with a call to that method as the last factory method call (and using it where Options is accepted but &mut Options is not).

      Most code that consumes the crate should be unaffected, but:

      • Code where calls were ordered unnaturally to avoid putting such a call last should be able to be improved.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 30 commits contributed to the release over the course of 28 calendar days.
    • 28 days passed between releases.
    • 9 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-dir v0.11.0, gix-revision v0.31.1, gix-merge v0.2.0, gix-pack v0.56.0, gix-odb v0.66.0, gix-shallow v0.1.0, gix-packetline v0.18.2, gix-transport v0.44.0, gix-protocol v0.47.0, gix-status v0.16.0, gix-worktree-state v0.16.0, gix v0.69.0, gitoxide-core v0.44.0, gitoxide v0.40.0 (beb0ea8)
      • Release gix-date v0.9.3, gix-object v0.46.1, gix-command v0.4.0, gix-filter v0.16.0, gix-fs v0.12.1, gix-traverse v0.43.1, gix-worktree-stream v0.18.0, gix-archive v0.18.0, gix-ref v0.49.1, gix-prompt v0.9.0, gix-url v0.28.2, gix-credentials v0.26.0, gix-diff v0.49.0, gix-dir v0.11.0, gix-revision v0.31.1, gix-merge v0.2.0, gix-pack v0.56.0, gix-odb v0.66.0, gix-shallow v0.1.0, gix-packetline v0.18.2, gix-transport v0.44.0, gix-protocol v0.47.0, gix-status v0.16.0, gix-worktree-state v0.16.0, gix v0.69.0, gitoxide-core v0.44.0, gitoxide v0.40.0, safety bump 16 crates (c1ba571)
      • Update changelogs prior to release (7ea8582)
      • Merge pull request #1733 from GitoxideLabs/fix-testools (df5cead)
      • Assure date-tests won't fail over time. (14c3744)
      • Merge pull request #1645 from dvtkrlbs/refloglookup-date (cbdbb8a)
      • Refactor reflog support (9662bc1)
      • Handle RefLogLookup::Date (d0df20a)
      • Merge pull request #1731 from GitoxideLabs/fix-pack-receive (ca54b8c)
      • Adapt to changes in gix-protocol (41b6571)
      • Merge pull request #1726 from GitoxideLabs/radicle-tuning (a542775)
      • Adapt to changes in gix-protocol (25b8480)
      • Merge pull request #1634 from GitoxideLabs/remove-delegates (ddeb97f)
      • Adapt to changes in gix and gix-protocol (fcb21a4)
      • Move all possible code from gix to gix-protocol. (e59fc09)
      • Add gix-shallow crate and use it from gix and gix-protocol (6367c7d)
      • Merge pull request #1721 from EliahKagan/run-ci/dirwalk-options (cd9060a)
      • Adjust gix::dirwalk::Options::{X,set_X} parameter names (c0f4da5)
      • Symlinks_to_directories_are_ignored_like_directories by value (ea8b95f)
      • Merge pull request #1719 from EliahKagan/run-ci/complex-graph-no-baseline (f8ba4b9)
      • Refine complex_graph regex_matches partial suppressions (f4b4bf0)
      • Merge pull request #1705 from GitoxideLabs/merge (520c832)
      • Adapt to changes in gix-diff (960773e)
      • Adapt to changes in gix-merge (aaeb427)
      • Assure that rename tracking can be turned off. (bd905a6)
      • Public access to the contained repository in wrapped types, like Id. (efc71fd)
      • Improve merge related API in gix (b2b8181)
      • Add merge::tree::TreeFavor similar to *::FileFavor. (e17b3a9)
      • Adapt to changes in gix-merge (3228de6)
      • Merge pull request #1701 from GitoxideLabs/release (e8b3b41) </details>
    Open source →
  23. 0.68.0 24 Nov 2024
    Release notes

    New Features

    • <csr-id-71b0ceaf02e022e83e6c24cfd0bdc26299dc95a0/> Add support for index application in merge results via merge::tree::Outcome::index_changed_after_applying_conflicts()

    • <csr-id-65ae68eac6b77d12ca804927090da5bb80551eae/> add Repository::merge_base_octopus()

    • <csr-id-7aee32abef13f5bf331249fed38e1e6b3e12876a/> add Repository::virtual_merge_base() and Repository::virtual_merge_base_with_graph().

    • <csr-id-5f3f63a05d1e594d92dbff75ce7293f9f163b397/> add Repository::merge_commits() It's often more convenient to work with commits when merging, especially when merge-bases are dealt with automatically.

    • <csr-id-27b663e4116c5aaa7b898283379d4d7d49a30865/> add objects::tree::Editor::detach() to get the underlying editor back. This can be useful to have more control over what gets written, or how.

    • <csr-id-1f9556a7e4b89f00c4de091b50909a8d2081f0d4/> add Repository::index_or_load_from_head_or_empty(). It's useful to get a reasonable index in any case, even on unborn repositories. It's for cases where the HEAD isn't setup at all, despite content being available, and to avoid unnecessary restrictions on what works.

    • <csr-id-2fce14ff4724ddc2f1a13c8686a7f221f8d2024e/> add Object::peel_to_commit() to assure an object turns into a commit.

    • <csr-id-d1ac584d9098988e66091217db4264d69fb77282/> add Repository::merge_trees()

    • <csr-id-07746f3ccf3e5c71f12319cfd2fb069b5f380624/> gix::Repository implements all traits for object reading and writing. That way it becomes usable when merging trees, which benefits from automatic checking of hashes before writing loose objects.

    • <csr-id-4b1764ca9148e08ae9f11bca68e0689b12bc8c80/> add tree() and commit() merge support, en par with merge-ORT as far as tests go. Note that this judgement of quality is based on a limited amount of partially complex test, but it's likely that in practice there will be deviations of sorts.

      Also, given the complexity of the implementation it is definitely under-tested, but with that it's mostly en par with Git, unfortunatly.

      On the bright side, some of the tests are very taxing and I'd hope this means something for real-world quality.

    Bug Fixes

    • <csr-id-b57be7189df216110adb52aa51c50a0f38692f2a/> Repository::tree_merge_options() now comes with rewrite tracking. This is the way Git acts, as it's either configured, or defaults to the value coming from the diff.renames configuration.

    • <csr-id-88d9d4387287b7540a0f42b26c6a4adb4cd769a9/> respect core.bare=true in conjunction with the main worktree

    • <csr-id-dc3d8bf79e90733172a2c3796995cdfbed438355/> propagate errors that are triggered when writing objects Previously it was assumed that writing objects could never fail unless there isn't enough memory to do so. However, it turns out that some last-minute validation can always be triggered and prevent an object to be written.

      Now that error is propagated instead.

    • <csr-id-4079519e7e292ee193248e3acea6587788c6b884/> assure submodules are skipped everywhere This also adds Repository::head_tree() for convenience.

    New Features (BREAKING)

    • <csr-id-a43e56314189c91f67b69de4001c6c6fad8184b6/> Repository::merge_trees() now takes portable version of Options.
    • <csr-id-1d2262f2ca416e3c22f9601e7eab11f3372b2128/> Repository::merge_trees() now has a fully-wrapped outcome. That way, more attached types are used for greater convenience.

    Bug Fixes (BREAKING)

    • <csr-id-254793581a135553e555f0bcc815154bb0951324/> rename blob-merge feature to tree-merge. By now, blob-merge is the lowest-level of features which is required for both tree-merges and commit based merges. Hence it's better to just call it merge.

    • <csr-id-de1cfb6a9caf5ac086c6411824835c75e888e2d7/> Adjust blob-merge baseline to also test the reverse of each operation This also fixes an issue with blob merge computations.

      It's breaking because the marker-size was reduced to u8.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 47 commits contributed to the release.
    • 33 days passed between releases.
    • 18 commits were understood as conventional.
    • 2 unique issues were worked on: #1678, #1683

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #1678
      • Propagate errors that are triggered when writing objects (dc3d8bf)
      • Reproduce a commit-write panic if the author is invalid (d15a493)
    • #1683
      • Respect core.bare=true in conjunction with the main worktree (88d9d43)
    • Uncategorized
      • Release gix-glob v0.17.1, gix-command v0.3.11, gix-filter v0.15.0, gix-chunk v0.4.10, gix-commitgraph v0.25.1, gix-revwalk v0.17.0, gix-traverse v0.43.0, gix-worktree-stream v0.17.0, gix-archive v0.17.0, gix-config-value v0.14.10, gix-lock v15.0.1, gix-ref v0.49.0, gix-sec v0.10.10, gix-config v0.42.0, gix-prompt v0.8.9, gix-url v0.28.1, gix-credentials v0.25.1, gix-ignore v0.12.1, gix-bitmap v0.2.13, gix-index v0.37.0, gix-worktree v0.38.0, gix-diff v0.48.0, gix-discover v0.37.0, gix-pathspec v0.8.1, gix-dir v0.10.0, gix-mailmap v0.25.1, gix-revision v0.31.0, gix-merge v0.1.0, gix-negotiate v0.17.0, gix-pack v0.55.0, gix-odb v0.65.0, gix-packetline v0.18.1, gix-transport v0.43.1, gix-protocol v0.46.1, gix-refspec v0.27.0, gix-status v0.15.0, gix-submodule v0.16.0, gix-worktree-state v0.15.0, gix v0.68.0, gix-fsck v0.8.0, gitoxide-core v0.43.0, gitoxide v0.39.0 (4000197)
      • Release gix-date v0.9.2, gix-actor v0.33.1, gix-hash v0.15.1, gix-features v0.39.1, gix-validate v0.9.2, gix-object v0.46.0, gix-path v0.10.13, gix-quote v0.4.14, gix-attributes v0.23.1, gix-packetline-blocking v0.18.1, gix-filter v0.15.0, gix-chunk v0.4.10, gix-commitgraph v0.25.1, gix-revwalk v0.17.0, gix-traverse v0.43.0, gix-worktree-stream v0.17.0, gix-archive v0.17.0, gix-config-value v0.14.10, gix-lock v15.0.1, gix-ref v0.49.0, gix-config v0.42.0, gix-prompt v0.8.9, gix-url v0.28.1, gix-credentials v0.25.1, gix-bitmap v0.2.13, gix-index v0.37.0, gix-worktree v0.38.0, gix-diff v0.48.0, gix-discover v0.37.0, gix-pathspec v0.8.1, gix-dir v0.10.0, gix-mailmap v0.25.1, gix-revision v0.31.0, gix-merge v0.1.0, gix-negotiate v0.17.0, gix-pack v0.55.0, gix-odb v0.65.0, gix-packetline v0.18.1, gix-transport v0.43.1, gix-protocol v0.46.1, gix-refspec v0.27.0, gix-status v0.15.0, gix-submodule v0.16.0, gix-worktree-state v0.15.0, gix v0.68.0, gix-fsck v0.8.0, gitoxide-core v0.43.0, gitoxide v0.39.0, safety bump 25 crates (8ce4912)
      • Prepare changelogs prior to release (bc9d994)
      • Merge pull request #1661 from GitoxideLabs/merge (0b7abfb)
      • Add support for index application in merge results via merge::tree::Outcome::index_changed_after_applying_conflicts() (71b0cea)
      • Repository::tree_merge_options() now comes with rewrite tracking. (b57be71)
      • Adapt to changes in gix-merge. (47110d6)
      • Merge pull request #1687 from EliahKagan/run-ci/32bit (aeaebec)
      • Add 32-bit expectations for remaining == size assertions (daf9990)
      • Use <= on 32-bit for some size assertions (fc13fc3)
      • Merge pull request #1684 from GitoxideLabs/fixes (9ab86a2)
      • Merge pull request #1679 from GitoxideLabs/fix-1678 (275a0c5)
      • Turn single-mod directories into a file (49ba115)
      • Merge pull request #1662 from paolobarbolini/thiserror-v2 (7a40648)
      • Upgrade thiserror to v2.0.0 (0f0e4fe)
      • Merge pull request #1659 from GitoxideLabs/merge (cf0c7ee)
      • Add Repository::merge_base_octopus() (65ae68e)
      • Merge pull request #1658 from GitoxideLabs/merge (905e5b4)
      • Add Repository::virtual_merge_base() and Repository::virtual_merge_base_with_graph(). (7aee32a)
      • Add Repository::merge_commits() (5f3f63a)
      • Merge pull request #1656 from GitoxideLabs/hasconfig (c5955fc)
      • Add test to assure hasconfig is working on gix level as well. (d51aec9)
      • Merge pull request #1653 from GitoxideLabs/merge (697a632)
      • Assure submodules are skipped everywhere (4079519)
      • Merge pull request #1651 from GitoxideLabs/merge (a876533)
      • Repository::merge_trees() now takes portable version of Options. (a43e563)
      • Rename blob-merge feature to tree-merge. (2547935)
      • Repository::merge_trees() now has a fully-wrapped outcome. (1d2262f)
      • Add objects::tree::Editor::detach() to get the underlying editor back. (27b663e)
      • Add Repository::index_or_load_from_head_or_empty(). (1f9556a)
      • Add Object::peel_to_commit() to assure an object turns into a commit. (2fce14f)
      • Remove a TODO that turned out to be unnecessary. (5b428a9)
      • Merge pull request #1652 from EliahKagan/run-ci/chmod (8e99eba)
      • Fix chmod in make_rev_spec_parse_repos; regenerate archive on macOS (d74e919)
      • Regenerate gix make_rev_spec_parse_repos fixture archive (72cd7f3)
      • Avoid unneeded +x in make_rev_spec_parse_repos (8720acb)
      • Merge pull request #1618 from GitoxideLabs/merge (3fb989b)
      • Add Repository::merge_trees() (d1ac584)
      • gix::Repository implements all traits for object reading and writing. (07746f3)
      • Support for merge related options in config tree (80e006b)
      • Add tree() and commit() merge support, en par with merge-ORT as far as tests go. (4b1764c)
      • Adapt to changes in gix-object and gix-odb (96488f7)
      • Adjust blob-merge baseline to also test the reverse of each operation (de1cfb6)
      • Merge pull request #1642 from GitoxideLabs/new-release (db5c9cf) </details>
    Open source →
  24. 0.67.0 22 Oct 2024
    Release notes

    <csr-id-64ff0a77062d35add1a2dd422bb61075647d1a36/> <csr-id-743695fc345b59e30e75fb6b91357ab7e994bda2/> <csr-id-45b71554f6437fbfe3ead020ff182f77cd57e47f/>

    New Features

    <csr-id-b279957beaf581c16293343dbdb2121bd1d4dd1c/> <csr-id-7249291016253647c920852fb37eb9e29d615775/> <csr-id-3abf0432dad4d47d0fd70ae8a9fadea0ef82dba3/>

    • <csr-id-2b81e6c8bd30cc95e91cc92a89f0a0e6047eec6b/> add Repository::diff_tree_to_tree() for greater similarity to git2

    • <csr-id-3da2da9d7993adc16b19fc63e7524c768a6e2e7f/> add gix merge-file with similar features as git merge-file

    • <csr-id-c02adc736c9c150d2eb71307a13adfa5f35e9d47/> add Repository::blob_merge_options() to obtain options for merging blobs and Repository::diff_algorithm()

    • <csr-id-19374800ebfa19b0ddc5c2f30d1c42324732a34e/> Repository::merge_resource_cache() to obtain the foundation for merging files directly.

    • <csr-id-0cac69077e738cb22914e77a9a9dd3fd712d5670/> make implicit free-list more controllable This is done by three new Repository methods:

      • empty_reusable_buffer() - hook into the free-list yourself.
    • set_freelist() - enable or initialize the free-list.
    • without_freelist() - a builder to disable the freelist from the start.

    Bug Fixes

    • <csr-id-e9b3db8021ad1f8bf7b2ee6ffecd5b1b1c8a38b9/> make GIT_WORK_TREE variable work as expected. Now it's picked up durign initialization.
    • <csr-id-53fa8abda6cf96e2afd8082db0d7a9f686d82752/> improve directory matching Previously the sorting wasn't accounted for, so an assumption about the order of changes weren't actually true.
    • <csr-id-f8952e4cbfaf9ab7ddc12a028a1cdb821ac9a3b1/> don't be too generous when extrapolating worktree directories. Previously it was possible that a non-bare repository that didn't have worktree directory incorrectly claimed it had one.
    • <csr-id-877f4d2091a24d691f2c88a5841a6e4eb357aca3/> don't unconditionally stuff fetch-specs if these are already present. Previously, we'd always add 'default' refspecs, even though ref-specs might already have been present. Now we only do this if there were no refspecs prior, and that might still be more than Git does. I wonder where this requirement came from, except that it might help with tests.
    • <csr-id-977b81bba9d6cf78104ced90531079346b39843f/> Don't bail out if there are extra-refspecs.
    • <csr-id-c515edd97370f2dff2f63a44fccbd72a0f70c00f/> make rev_walk available even without the revision feature. Technically it doesn't depend on it.

    New Features (BREAKING)

    • <csr-id-7be142d087a736339af54f2cb894edc7c36cdc90/> optional rename tracking for directories. Depending on the source of the rename-information, items that are children of renamed parents may be provided to enable rename tracking based on these containers, instead of always resorting to tracking leaf nodes (i.e. blobs).

    • <csr-id-14d6bb92b42cb882b0fd6d0ae3c38fa634eacdaa/> Support for 'fast-tracking' reaching the beginning of the commit-graph during traversals. It's implemented by sorting commits oldest first when choosing the next one to traverse, which can greatly reduce the time it takes to reach the first commit of a graph.

    • <csr-id-dfbc732effc0fd1c90aba9c736a670d244c042e0/> optionally store objects new objects in memory only. The default object database changed to a version that allows to keep objects in memory. This needs a mutable Repository instance to setup.

    • <csr-id-d63ec06500386450f6f7b9e3b9d23ad759371832/> Do not let revision::walk::Platform rely on plumbing crate types. This is a step towards a more stable API, but also, will allow using different implementations.

      Notably, this replaces gix_traverse::commit::simple::Sorting with gix::revision::walk::Sorting.

    Bug Fixes (BREAKING)

    • <csr-id-206f5d70fa74c23c56c6cbecc5625234fde930fc/> improve error messages when failing to find references. It's breaking due to changes in the error type.

    • <csr-id-9e79ba37cf5dc7c0c295218b2de67b4b2eeff443/> unify location of error type of Repository::diff_resource_cache().

    • <csr-id-c545d71ebfd4ac7d960fc75aae5558b341d8ecf2/> Tree::lookup_entry() looses its buf argument. The buffer will now be previded from the free-list of the repository.

    • <csr-id-17573779688e755a786546d5e42ab533088cd726/> remove all workspace dependencies The problem is that with them, we don't notice anymore if the crate changes, because a dependency changes. That also means that older versions of the dependency may stay even though some other crates might pick up a newer version.

      Ultimately, this will lead to drift and subtle incompatibilities.

      We declare this breaking to enforce a proper re-release.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 78 commits contributed to the release over the course of 60 calendar days.
    • 61 days passed between releases.
    • 25 commits were understood as conventional.
    • 1 unique issue was worked on: #1562

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #1562
      • Don't bail out if there are extra-refspecs. (977b81b)
    • Uncategorized
      • Release gix-merge v0.0.0, gix-negotiate v0.16.0, gix-pack v0.54.0, gix-odb v0.64.0, gix-packetline v0.18.0, gix-transport v0.43.0, gix-protocol v0.46.0, gix-revision v0.30.0, gix-refspec v0.26.0, gix-status v0.14.0, gix-submodule v0.15.0, gix-worktree-state v0.14.0, gix v0.67.0, gix-fsck v0.7.0, gitoxide-core v0.42.0, gitoxide v0.38.0 (f1364dc)
      • Release gix-date v0.9.1, gix-utils v0.1.13, gix-actor v0.33.0, gix-hash v0.15.0, gix-trace v0.1.11, gix-features v0.39.0, gix-hashtable v0.6.0, gix-validate v0.9.1, gix-object v0.45.0, gix-path v0.10.12, gix-glob v0.17.0, gix-quote v0.4.13, gix-attributes v0.23.0, gix-command v0.3.10, gix-packetline-blocking v0.18.0, gix-filter v0.14.0, gix-fs v0.12.0, gix-chunk v0.4.9, gix-commitgraph v0.25.0, gix-revwalk v0.16.0, gix-traverse v0.42.0, gix-worktree-stream v0.16.0, gix-archive v0.16.0, gix-config-value v0.14.9, gix-tempfile v15.0.0, gix-lock v15.0.0, gix-ref v0.48.0, gix-sec v0.10.9, gix-config v0.41.0, gix-prompt v0.8.8, gix-url v0.28.0, gix-credentials v0.25.0, gix-ignore v0.12.0, gix-bitmap v0.2.12, gix-index v0.36.0, gix-worktree v0.37.0, gix-diff v0.47.0, gix-discover v0.36.0, gix-pathspec v0.8.0, gix-dir v0.9.0, gix-mailmap v0.25.0, gix-merge v0.0.0, gix-negotiate v0.16.0, gix-pack v0.54.0, gix-odb v0.64.0, gix-packetline v0.18.0, gix-transport v0.43.0, gix-protocol v0.46.0, gix-revision v0.30.0, gix-refspec v0.26.0, gix-status v0.14.0, gix-submodule v0.15.0, gix-worktree-state v0.14.0, gix v0.67.0, gix-fsck v0.7.0, gitoxide-core v0.42.0, gitoxide v0.38.0, safety bump 41 crates (3f7e8ee)
      • Merge pull request #1639 from cruessler/respect-env-variables (48aa74b)
      • Make GIT_WORK_TREE variable work as expected. (e9b3db8)
      • Merge pull request #1637 from GitoxideLabs/improve-error-message (b36d7ef)
      • Improve error messages when failing to find references. (206f5d7)
      • Merge pull request #1635 from GitoxideLabs/fix-ci (2622936)
      • Improve wording of comment in test (e51fcd0)
      • Fix CI for now by excluding the failing assertion from running. (c949030)
      • Merge pull request #1630 from GitoxideLabs/diff-fix (155b5e1)
      • Improve directory matching (53fa8ab)
      • Reproduce ordering issue when finding parents (ddc99b5)
      • Merge pull request #1624 from EliahKagan/update-repo-url (795962b)
      • Update gitoxide repository URLs (64ff0a7)
      • Merge pull request #1620 from Byron/fix-discovery (6487269)
      • Silently re-add diff::tree::ChangeDetached (c18ebbe)
      • Don't be too generous when extrapolating worktree directories. (f8952e4)
      • Merge pull request #1612 from Byron/merge (37c1e4c)
      • Refactor integration tests for a more modern look (3745212)
      • Add Repository::diff_tree_to_tree() for greater similarity to git2 (2b81e6c)
      • Always trackt he full path when producing diffs, but allow to disable it. (743695f)
      • Use the new tree_with_rewrites plumbing implementation. (45b7155)
      • Adapt to changes in gix-diff (3fd9fab)
      • Thanks clippy (af03832)
      • Adapt to changes in gix-diff (2bf1e5f)
      • Optional rename tracking for directories. (7be142d)
      • Adapt to chagnes in gix-diff (5c1f010)
      • Merge pull request #1611 from Byron/merge (5ffccd2)
      • Add gix merge-file with similar features as git merge-file (3da2da9)
      • Add Repository::blob_merge_options() to obtain options for merging blobs and Repository::diff_algorithm() (c02adc7)
      • Unify location of error type of Repository::diff_resource_cache(). (9e79ba3)
      • Repository::merge_resource_cache() to obtain the foundation for merging files directly. (1937480)
      • Add all keys for merge-configuration (e0b09d2)
      • Merge pull request #1585 from Byron/merge (2261de4)
      • Use new WorktreeRoot API provided by gix-diff (25c6806)
      • Merge pull request #1610 from nrdxp/traverse/oldest-first (20f9b3f)
      • Support for 'fast-tracking' reaching the beginning of the commit-graph during traversals. (14d6bb9)
      • Merge pull request #1604 from Byron/protocol-shallow-v1 (612896d)
      • Adapt to changes in gix-protocol (0d3b480)
      • Merge pull request #1603 from Byron/freelist (73a7d15)
      • Make implicit free-list more controllable (0cac690)
      • Merge pull request #1589 from EliahKagan/maintenance (7c2af44)
      • Add missing executable bits (694ebad)
      • Merge pull request #1587 from jayvdb/typos (c2bdda4)
      • Fix typos (b12c7c9)
      • Merge pull request #1586 from Byron/fix-ci (22fbe70)
      • Update crate-status to inform about tree-editing capabilities (fe1eb97)
      • Merge pull request #1584 from EliahKagan/jj-realistic-ignore (5242aad)
      • Don't test jj_realistic_needs_to_be_more_clever on Windows (3adcfc5)
      • Merge pull request #1582 from Byron/gix-path-release (93e86f1)
      • Release gix-trace v0.1.10, gix-path v0.10.11 (012a754)
      • Merge pull request #1566 from Byron/merge (d69c617)
      • Optionally store objects new objects in memory only. (dfbc732)
      • Add tree-editing capabilities to Tree and Repository. (b279957)
      • Tree::lookup_entry() looses its buf argument. (c545d71)
      • Merge pull request #1564 from Byron/improvements (1cfe577)
      • When using the cache, allow using the entire graph. (0fe5133)
      • Adapt to changes in gix-revwalk (ea403a4)
      • Merge pull request #1563 from Byron/fixes (750e268)
      • Don't unconditionally stuff fetch-specs if these are already present. (877f4d2)
      • Merge pull request #1557 from Byron/merge-base (649f588)
      • gix merge-base for the CLI (7249291)
      • Add Repository::merge_base() (3abf043)
      • Adapt to changes in gix-revision (ce5a320)
      • Allow empty-docs (beba720)
      • Merge branch 'global-lints' (37ba461)
      • A few more missing semicolons (fc45c93)
      • Workspace Clippy lint management (2e0ce50)
      • Merge pull request #1547 from nyurik/cast-lossless (c3a7dcf)
      • Fix clippy::cast_lossless (29ad2df)
      • Merge pull request #1546 from nyurik/semilocons (f992fb7)
      • Add missing semicolons (ec69c88)
      • Merge branch 'improvements' (e82f795)
      • Do not let revision::walk::Platform rely on plumbing crate types. (d63ec06)
      • Make rev_walk available even without the revision feature. (c515edd)
      • Merge branch 'fixes' (46cd1ae)
      • Remove all workspace dependencies (1757377) </details>
    Open source →
  25. 0.66.0 22 Aug 2024
    Release notes

    A maintenance release without user-facing changes.

    Commit Statistics

    <csr-read-only-do-not-edit/>

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

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-actor v0.32.0, gix-object v0.44.0, gix-filter v0.13.0, gix-revwalk v0.15.0, gix-traverse v0.41.0, gix-worktree-stream v0.15.0, gix-archive v0.15.0, gix-ref v0.47.0, gix-config v0.40.0, gix-index v0.35.0, gix-worktree v0.36.0, gix-diff v0.46.0, gix-discover v0.35.0, gix-dir v0.8.0, gix-mailmap v0.24.0, gix-negotiate v0.15.0, gix-pack v0.53.0, gix-odb v0.63.0, gix-revision v0.29.0, gix-refspec v0.25.0, gix-status v0.13.0, gix-submodule v0.14.0, gix-worktree-state v0.13.0, gix v0.66.0, gix-fsck v0.6.0, gitoxide-core v0.41.0, gitoxide v0.38.0, safety bump 26 crates (b3ff033)
      • Prepare changelog prior to (yet another) release (209b6de) </details>
    Open source →
  26. 0.65.0 22 Aug 2024 withdrawn
    Release notes

    <csr-id-26748ddbedc281b7b6b1defc51201d97e58f13e4/>

    New Features

    • <csr-id-e079250089c1d2717d62f6ab7f7b6a902b24831e/> add objects::tree::diff::Platform::stats() to quickly obtain diff-stats. This function is inspired by git2 which also makes it very simple to obtain.
    • <csr-id-b291de0a81584430d5b5f2ae05ee220bbdadd6e8/> allow threaded-handling of tree-diff changes. This works by providing Change::detach() and ChangeDetached::attach().
    • <csr-id-d986b2b271cd29d013c7874e4f021fe776115004/> add Reference::follow_to_object() It's an equivalent to git2::Reference::resolve().`
    • <csr-id-6c6f9467d5d22c2f9a923a6ccda52e7cde6a6a8f/> add Repository::diff_resource_cache_for_tree_diff()
    • <csr-id-cdaba846526085736501a23d39ee5fbe3fe488d5/> add Reference::peel_to_kind() Make it easy to follow a ref and peel it to a given object type. Additional peel_to_<kind>() shortcuts are also provided, with the same name as in git2.
    • <csr-id-98bcb144e8fc948d95facc8a4f2a1a6ba0770106/> add Repository::find_*() methods for every object type.
    • <csr-id-63c7a03bb7090b5ecc7e8ec5a6b9dffdb49c3315/> add Repository::compute_object_cache_size_for_tree_diffs(). With it it's easier to obtain reasonable object cache sizes as optimized for tree-diffs.
    • <csr-id-8a27454a9738f077309104fde02d589d052e9f11/> remote::Name::to_owned() to get a static version of it. Also, add optional serde support.
    • <csr-id-6ac28673550ccd0b85b7fd2b191fa6049bbe481e/> Reference::remote_name() now also provides valid remote names for local tracking branches.
    • <csr-id-c612440bbfa2d5a2c033f28805eda0661009469d/> add Reference::peel_to_id_in_place_packed() to allow passing a packed-buffer snapshot. This is useful for speeding up reference lookups as otherwise, it will have to validate the packed-buffer snapshot didn't change internally each time a ref is peeled.
    • <csr-id-7c8f409bfa2066562930981b2d072245e5dca88e/> add remote::Names as shortcut to the value returned for all remote names.

    Bug Fixes

    • <csr-id-6990afd269c3461ae22e2821164c03a0dedc82f4/> similarity detection Previously it would incorrectly count only the last batch of removed bytes, and now it will count all of them. This leads to realistic results with complex diffs, even though it's probably still not en-par with Git which uses more complex heuristics.

    • <csr-id-e74095e0a035b090284135c88133106ba6a19fc3/> prevent panic in Repository::rev_parse_single() when HEAD was invalid. When using a refspec like HEAD:file.

    • <csr-id-6f2eb910f88ab8a61961efffd6d946d95927d8b8/> do not automatically use a parallel directory walk. This reduces dependencies and can speed-up typical ref-walks as these don't benefit from this many threads - the overhead here usually outweighs the benefit.

      This can be turned back on based on the expected workload.

    Bug Fixes (BREAKING)

    • <csr-id-ba72ee0f069b7df96f7543fe2d97612c98544733/> better peeling performance for reference traversal. This is done by keeping a packed-buffer around and reusing it, instead of re-checking it every time.

      For this to work, the peeled() function on the reference::Iter can now fail as it has to open a packed-refs snapshot.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 42 commits contributed to the release over the course of 28 calendar days.
    • 30 days passed between releases.
    • 16 commits were understood as conventional.
    • 2 unique issues were worked on: #1508, #1524

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #1508
      • Reproduce panic when parsing refspecs (17bd32a)
    • #1524
      • Add a real-world test to reproduce an issue discovered in jj (7ef1e88)
    • Uncategorized
      • Release gix v0.65.0, gix-fsck v0.5.0, gitoxide-core v0.40.0, gitoxide v0.38.0 (f218578)
      • Release gix-dir v0.7.0, gix-mailmap v0.23.6, gix-negotiate v0.14.0, gix-pack v0.52.0, gix-odb v0.62.0, gix-packetline v0.17.6, gix-transport v0.42.3, gix-protocol v0.45.3, gix-revision v0.28.0, gix-refspec v0.24.0, gix-status v0.12.0, gix-submodule v0.13.0, gix-worktree-state v0.12.0, gix v0.65.0, gix-fsck v0.5.0, gitoxide-core v0.40.0, gitoxide v0.38.0 (4fe330e)
      • Release gix-attributes v0.22.5, gix-filter v0.12.0, gix-fs v0.11.3, gix-revwalk v0.14.0, gix-traverse v0.40.0, gix-worktree-stream v0.14.0, gix-archive v0.14.0, gix-config-value v0.14.8, gix-tempfile v14.0.2, gix-ref v0.46.0, gix-sec v0.10.8, gix-config v0.39.0, gix-prompt v0.8.7, gix-url v0.27.5, gix-credentials v0.24.5, gix-ignore v0.11.4, gix-index v0.34.0, gix-worktree v0.35.0, gix-diff v0.45.0, gix-discover v0.34.0, gix-pathspec v0.7.7, gix-dir v0.7.0, gix-mailmap v0.23.6, gix-negotiate v0.14.0, gix-pack v0.52.0, gix-odb v0.62.0, gix-packetline v0.17.6, gix-transport v0.42.3, gix-protocol v0.45.3, gix-revision v0.28.0, gix-refspec v0.24.0, gix-status v0.12.0, gix-submodule v0.13.0, gix-worktree-state v0.12.0, gix v0.65.0, gix-fsck v0.5.0, gitoxide-core v0.40.0, gitoxide v0.38.0 (f2b522d)
      • Release gix-glob v0.16.5, gix-filter v0.12.0, gix-fs v0.11.3, gix-revwalk v0.14.0, gix-traverse v0.40.0, gix-worktree-stream v0.14.0, gix-archive v0.14.0, gix-config-value v0.14.8, gix-tempfile v14.0.2, gix-ref v0.46.0, gix-sec v0.10.8, gix-config v0.39.0, gix-prompt v0.8.7, gix-url v0.27.5, gix-credentials v0.24.5, gix-ignore v0.11.4, gix-index v0.34.0, gix-worktree v0.35.0, gix-diff v0.45.0, gix-discover v0.34.0, gix-pathspec v0.7.7, gix-dir v0.7.0, gix-mailmap v0.23.6, gix-negotiate v0.14.0, gix-pack v0.52.0, gix-odb v0.62.0, gix-packetline v0.17.6, gix-transport v0.42.3, gix-protocol v0.45.3, gix-revision v0.28.0, gix-refspec v0.24.0, gix-status v0.12.0, gix-submodule v0.13.0, gix-worktree-state v0.12.0, gix v0.65.0, gix-fsck v0.5.0, gitoxide-core v0.40.0, gitoxide v0.38.0 (a65a17f)
      • Release gix-date v0.9.0, gix-actor v0.31.6, gix-validate v0.9.0, gix-object v0.43.0, gix-path v0.10.10, gix-attributes v0.22.4, gix-command v0.3.9, gix-packetline-blocking v0.17.5, gix-filter v0.12.0, gix-fs v0.11.3, gix-revwalk v0.14.0, gix-traverse v0.40.0, gix-worktree-stream v0.14.0, gix-archive v0.14.0, gix-ref v0.46.0, gix-config v0.39.0, gix-prompt v0.8.7, gix-url v0.27.5, gix-credentials v0.24.5, gix-ignore v0.11.4, gix-index v0.34.0, gix-worktree v0.35.0, gix-diff v0.45.0, gix-discover v0.34.0, gix-dir v0.7.0, gix-mailmap v0.23.6, gix-negotiate v0.14.0, gix-pack v0.52.0, gix-odb v0.62.0, gix-packetline v0.17.6, gix-transport v0.42.3, gix-protocol v0.45.3, gix-revision v0.28.0, gix-refspec v0.24.0, gix-status v0.12.0, gix-submodule v0.13.0, gix-worktree-state v0.12.0, gix v0.65.0, gix-fsck v0.5.0, gitoxide-core v0.40.0, gitoxide v0.38.0, safety bump 25 crates (d19af16)
      • Prepare changelogs prior to release (0f25841)
      • Merge branch 'improvements' (9ed2b24)
      • Similarity detection (6990afd)
      • Fix similarity detection (f8c5d9c)
      • Better peeling performance for reference traversal. (ba72ee0)
      • Merge branch 'improvements' (242fedc)
      • Use improved gix-diff API for better buffer handling (f944e49)
      • Add objects::tree::diff::Platform::stats() to quickly obtain diff-stats. (e079250)
      • Allow threaded-handling of tree-diff changes. (b291de0)
      • Add Reference::follow_to_object() (d986b2b)
      • Add Repository::diff_resource_cache_for_tree_diff() (6c6f946)
      • Add Reference::peel_to_kind() (cdaba84)
      • Adapt to changes in gix-ref (d296ee8)
      • Adapt to changes in gix-ref (5464bfb)
      • Add Repository::find_*() methods for every object type. (98bcb14)
      • Add Repository::compute_object_cache_size_for_tree_diffs(). (63c7a03)
      • Make tree-diff more easily discoverable when coming from git2 (26748dd)
      • Merge pull request #1529 from Byron/better-copy-detection (7b7902e)
      • Remove #[momo] directive as it seems to prevent auto-completion in IDEs. (3a339da)
      • Merge pull request #1521 from mvlabat/fix-dir-filename-tracking (12251eb)
      • Fix dir name tracking in the FileName mode (63936e5)
      • Merge branch 'fix-panic' (0b28297)
      • Prevent panic in Repository::rev_parse_single() when HEAD was invalid. (e74095e)
      • Merge branch 'improvements' (7dff447)
      • remote::Name::to_owned() to get a static version of it. (8a27454)
      • Merge branch 'improvements' (29898e3)
      • Reference::remote_name() now also provides valid remote names for local tracking branches. (6ac2867)
      • Add Reference::peel_to_id_in_place_packed() to allow passing a packed-buffer snapshot. (c612440)
      • Do not automatically use a parallel directory walk. (6f2eb91)
      • Add remote::Names as shortcut to the value returned for all remote names. (7c8f409)
      • Merge branch 'ag/jiff' (5871fb1)
      • Assure the next release is breaking (9fd1090)
      • Release gix-credentials v0.24.4 (f6a4eb9)
      • Merge branch 'fix-clean' (33eacfb)
      • Adapt to changes in gix-dir (37c2852) </details>
    Open source →
  27. 0.64.0 23 Jul 2024
    Release notes

    <csr-id-d9a813fdd2cac522999dccb2dbff84c6a50735a2/>

    New Features

    • <csr-id-41e018dfaef7c2743894134dbd39f0a226be3532/> enable tracing with the new tracing feature in the Cargo manifest. That way, it's easier to directly enable tracing, instead of having to resort to gix-features.
    • <csr-id-5c7e744c604b3baaab97d3a5a79cc3e2e4dba783/> add config::section::filter() for the default section filter. Provide the default implementation to determine which configuration sections should be trusted.
    • <csr-id-478bbc149951b0f81c4a76f0a8d534c170589ebf/> provide config::credential_helpers() function to configure an invocation. That way it's possible to use git credential helpers even without a Repository instance.
    • <csr-id-afc6e258ce0445c804707f7cee2daccde1df937d/> export gix_validate as validate. The crate appears in the public API of gix_index::State::from_tree but it's types weren't readily available.
    • <csr-id-acbfa6fb5f749e84e6c9f34c3c97b02f97db5f68/> add PrepareFetch::with_ref_name() to control which ref is checked out.

    Bug Fixes

    • <csr-id-40d18816a85c41eb2b9075752b092ae68f4d979c/> make sure that refs/heads/HEAD isn't considered conflicting

    • <csr-id-c8c56aebaac95f0f73220055dc33e6e0ebdb5ced/> re-export gix_validate as it's now part of the public API. This allows calling State::from_tree().

    • <csr-id-a146d140da6c848a39d9f14b40f3fd46b749cc11/> don't attempt negotiation without any refspec-mappings Previously, when a shallow operation was specified, it was possible to skip past the no-change test and attempt to negotiate even though there was nothing to want.

      This is now 'fixed' by simply aborting early if there is no refspec mapping at all.

      Further, it aborts as early as possible with a nicer error message, after all, there is no use in having no mapping.

      Note that it's explicitly implemented such that obtaining such an empty refmap is fine, but trying to receive it is not. That way, the user can obtain information about the server without anything being an error.

    New Features (BREAKING)

    • <csr-id-0ec2389e4e3c457f87cff2cbdd394a94f7d0d54a/> gix-config convenience initiative A new gix_config::AsKey trait allows all gix_config::File methods to receive an implementation of AsKey instead of the tuple of (section, subsection, value_name). This is the default, and all methods that take a tuple have been renamed to <name>_by(), note the _by suffix.

      The terminology was reworked so that key is now only used to identify a value.

      This change also affects the public API of gix, which provides ways to set values on configuration snapshots which now by default will only take a AsKey implementation.

      Note that gix::config::tree::* keys now also implement AsKey, which allows them to be used more conveniently when setting values, too.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 53 commits contributed to the release over the course of 58 calendar days.
    • 62 days passed between releases.
    • 10 commits were understood as conventional.
    • 2 unique issues were worked on: #1405, #1428

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 2 times to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #1405
      • Don't attempt negotiation without any refspec-mappings (a146d14)
    • #1428
      • Make sure that refs/heads/HEAD isn't considered conflicting (40d1881)
    • Uncategorized
      • Release gix v0.64.0, gix-fsck v0.4.1, gitoxide-core v0.39.0, gitoxide v0.37.0 (0e8508a)
      • Release gix-actor v0.31.5, gix-filter v0.11.3, gix-fs v0.11.2, gix-commitgraph v0.24.3, gix-revwalk v0.13.2, gix-traverse v0.39.2, gix-worktree-stream v0.13.1, gix-archive v0.13.2, gix-config-value v0.14.7, gix-tempfile v14.0.1, gix-ref v0.45.0, gix-sec v0.10.7, gix-config v0.38.0, gix-prompt v0.8.6, gix-url v0.27.4, gix-credentials v0.24.3, gix-ignore v0.11.3, gix-index v0.33.1, gix-worktree v0.34.1, gix-diff v0.44.1, gix-discover v0.33.0, gix-pathspec v0.7.6, gix-dir v0.6.0, gix-mailmap v0.23.5, gix-negotiate v0.13.2, gix-pack v0.51.1, gix-odb v0.61.1, gix-transport v0.42.2, gix-protocol v0.45.2, gix-revision v0.27.2, gix-refspec v0.23.1, gix-status v0.11.0, gix-submodule v0.12.0, gix-worktree-state v0.11.1, gix v0.64.0, gix-fsck v0.4.1, gitoxide-core v0.39.0, gitoxide v0.37.0 (6232824)
      • Release gix-glob v0.16.4, gix-attributes v0.22.3, gix-command v0.3.8, gix-filter v0.11.3, gix-fs v0.11.2, gix-commitgraph v0.24.3, gix-revwalk v0.13.2, gix-traverse v0.39.2, gix-worktree-stream v0.13.1, gix-archive v0.13.2, gix-config-value v0.14.7, gix-tempfile v14.0.1, gix-ref v0.45.0, gix-sec v0.10.7, gix-config v0.38.0, gix-prompt v0.8.6, gix-url v0.27.4, gix-credentials v0.24.3, gix-ignore v0.11.3, gix-index v0.33.1, gix-worktree v0.34.1, gix-diff v0.44.1, gix-discover v0.33.0, gix-pathspec v0.7.6, gix-dir v0.6.0, gix-mailmap v0.23.5, gix-negotiate v0.13.2, gix-pack v0.51.1, gix-odb v0.61.1, gix-transport v0.42.2, gix-protocol v0.45.2, gix-revision v0.27.2, gix-refspec v0.23.1, gix-status v0.11.0, gix-submodule v0.12.0, gix-worktree-state v0.11.1, gix v0.64.0, gix-fsck v0.4.1, gitoxide-core v0.39.0, gitoxide v0.37.0 (a1b73a6)
      • Update manifests (by cargo-smart-release) (0470df3)
      • Prepare changelog prior to release (99c00cc)
      • Merge branch 'fixes' (b4dba1c)
      • Add more tests for remote name validation (1267712)
      • Thanks clippy (113cbcc)
      • Release gix-path v0.10.9 (15f1cf7)
      • Merge branch 'fix-1428' (caae926)
      • Merge branch 'fix-1440' (f87322e)
      • Adapt to changes in gix-testtools (f5a9884)
      • Release gix-actor v0.31.4, gix-object v0.42.3 (bf3d82a)
      • Merge branch 'heredocs' (7330844)
      • Regenerate archives (a4bb7b9)
      • Use << rather than <<- heredoc operator (2641f8b)
      • Release gix-actor v0.31.3, gix-mailmap v0.23.4 (1e79c5c)
      • Allow use_http_path to be set in config::credential_helpers() (55cbc1b)
      • Enable tracing with the new tracing feature in the Cargo manifest. (41e018d)
      • Merge branch 'config-globals' (929744a)
      • Merge pull request #1430 from klensy/deps (ab02aa9)
      • Gate parking_lot behind interrupt feature (d9a813f)
      • Add config::section::filter() for the default section filter. (5c7e744)
      • Provide config::credential_helpers() function to configure an invocation. (478bbc1)
      • Release gix-mailmap v0.23.3 (0c5d1ff)
      • Release gix-path v0.10.8 (8d89b86)
      • Merge branch 'various-fixes' (f71b7a0)
      • Re-export gix_validate as it's now part of the public API. (c8c56ae)
      • Export gix_validate as validate. (afc6e25)
      • Release gix-date v0.8.7, gix-mailmap v0.23.2 (c1d7c02)
      • Merge branch 'tar-only' (1dfa90d)
      • Remove binary files in favor of tar files (dcab79a)
      • Merge branch 'config-key' (5663a2c)
      • gix-config convenience initiative (0ec2389)
      • Addditional fixes on top of the merge commit (dbe1f22)
      • Merge branch 'main' into config-key-take-2 (9fa1054)
      • Merge branch 'feat/checkout-other-refs' (ecfde07)
      • Thanks clippy (f36b9bd)
      • Improve documentation of PrepareCheckout and make it easier to use (39180b4)
      • Add PrepareFetch::with_ref_name() to control which ref is checked out. (acbfa6f)
      • Squash 11 commits that get started with allowing to checkout a particular branch (0912a46)
      • Merge branch 'status' (2f9f0ac)
      • Merge pull request #1407 from jsimonrichard/06-19-add_rela_path_to_Item (2856434)
      • Add rela_path to crate::status::index_worktree::iter::Item (1dc4568)
      • Merge pull request #1361 from EliahKagan/freebsd (9c65d98)
      • Regenerate archives for changed scripts (ea12fc2)
      • Make bash script shebangs more portable (68cbea8)
      • Release gix-fs v0.11.1, gix-glob v0.16.3 (2cefe77)
      • Merge pull request #1385 from Byron/fix-gix-ref (8da55a3)
      • Release gix-ref v0.44.1 (2d0a352)
      • Release gix-archive v0.13.1 (bd32c7a) </details>
    Open source →
  28. 0.63.0 22 May 2024
    Release notes

    New Features

    • <csr-id-886d6b58e4612ac21cc660ea4ddf1dd0b49d1c6e/> checkout respects options for core.protectHFS and core.protectNTFS. This also adds gitoxide.core.protectWindows as a way to enforce additional restrictions that are usually only available on Windows.

      Note that core.protectNFS is always enabled by default, just like it is in Git.

    Bug Fixes

    • <csr-id-3c7b7b3a7b981040cd51417202d7022597179114/> empty paths as configured will not be an error with lenient configuration enabled. When using gix::open_opts(path, options.strict_config(false)), empty core.excludesFile values will not cause an error anymore.

      Note that in strict mode, the behaviour is unchanged so invalid configuration can rather be fixed than ignored.

    • <csr-id-88a6a4e6d882fc7a3a0b4017d772a3fe38e57598/> don't unwrap when reading possibly left-over bytes from pack-stream

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 24 commits contributed to the release.
    • 39 days passed between releases.
    • 3 commits were understood as conventional.
    • 2 unique issues were worked on: #1352, #1370

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #1352
      • Don't unwrap when reading possibly left-over bytes from pack-stream (88a6a4e)
    • #1370
      • Empty paths as configured will not be an error with lenient configuration enabled. (3c7b7b3)
    • Uncategorized
      • Release gix-features v0.38.2, gix-actor v0.31.2, gix-validate v0.8.5, gix-object v0.42.2, gix-command v0.3.7, gix-filter v0.11.2, gix-fs v0.11.0, gix-revwalk v0.13.1, gix-traverse v0.39.1, gix-worktree-stream v0.13.0, gix-archive v0.13.0, gix-tempfile v14.0.0, gix-lock v14.0.0, gix-ref v0.44.0, gix-config v0.37.0, gix-prompt v0.8.5, gix-index v0.33.0, gix-worktree v0.34.0, gix-diff v0.44.0, gix-discover v0.32.0, gix-pathspec v0.7.5, gix-dir v0.5.0, gix-macros v0.1.5, gix-mailmap v0.23.1, gix-negotiate v0.13.1, gix-pack v0.51.0, gix-odb v0.61.0, gix-transport v0.42.1, gix-protocol v0.45.1, gix-revision v0.27.1, gix-status v0.10.0, gix-submodule v0.11.0, gix-worktree-state v0.11.0, gix v0.63.0, gitoxide-core v0.38.0, gitoxide v0.36.0, safety bump 19 crates (4f98e94)
      • Adjust changelogs prior to release (9511416)
      • Merge branch 'various-fixes' (d6cd449)
      • Update dependencies (cd4de83)
      • Fix-CI (6f55f2a)
      • Merge pull request from GHSA-7w47-3wg8-547c (79dce79)
      • Adapt to changes in gix-ref (d2ae9d5)
      • Adapt to changes in gix-index (5f86e6b)
      • Fix compile warnings (f961687)
      • Address review comments (fcc3b69)
      • Apply suggestions from code review (bad9a79)
      • Checkout respects options for core.protectHFS and core.protectNTFS. (886d6b5)
      • Adapt to changes in gix-worktree (1ca6a3c)
      • Merge pull request #1371 from Byron/fix-empty-excludes-file (3c21741)
      • Release gix-date v0.8.6 (d3588ca)
      • Merge branch 'status' (04ef31e)
      • Improve docs to be more approachable from git2 (5197b5a)
      • Merge branch 'status' (e791bc5)
      • Merge branch 'cargo-fixes' (977346e)
      • Release gix-index v0.32.1, gix-pathspec v0.7.4, gix-worktree v0.33.1, gix-dir v0.4.1 (54ac559)
      • Merge pull request #1345 from EliahKagan/shell-scripts (fe24c89)
      • Add missing +x bit on scripts that are run and not sourced (41bf65a) </details>
    Open source →
  29. 0.62.0 13 Apr 2024
    Release notes

    Please note that this release contains a security fix originally implemented in gix-transport via this PR which prevents ssh options to be smuggled into the ssh command-line invocation with a username provided to a clone or fetch URL.

    Details can be found in the advisory.

    Bug Fixes

    • <csr-id-18b2921aaa28df536faf74098d5f1f13d34148f9/> into_index_worktree_iter() now takes an iterator, instead of a Vec. This makes the API more consistent, and one can pass None as well.

    • <csr-id-719ced8a7949ba1f30fef13801e3466a7d1da590/> show submodules in status independently of their active state. Even inactive submodules are shown in the status by git status, so gix should do the same.

      First observed in https://github.com/helix-editor/helix/pull/5645#issuecomment-2016798212

    • <csr-id-98cfbec51276bbd6caa48fd6d8942247df091c94/> forward curl rustls feature from gix-transport to avoid curl in gix. This removes the curl dependency just for configuring it, and removes a hazard which became evident with reqwest.

    Bug Fixes (BREAKING)

    • <csr-id-2a9c178326b7f13ba6bc1f89fc2b9d9facbecf48/> Make topo more similar to Ancestors, but also rename Ancestors to Simple

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 17 commits contributed to the release.
    • 22 days passed between releases.
    • 4 commits were understood as conventional.
    • 1 unique issue was worked on: #1328

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #1328
      • Forward curl rustls feature from gix-transport to avoid curl in gix. (98cfbec)
    • Uncategorized
      • Release gix-trace v0.1.9, gix-utils v0.1.12, gix-packetline-blocking v0.17.4, gix-filter v0.11.1, gix-fs v0.10.2, gix-traverse v0.39.0, gix-worktree-stream v0.12.0, gix-archive v0.12.0, gix-config v0.36.1, gix-url v0.27.3, gix-index v0.32.0, gix-worktree v0.33.0, gix-diff v0.43.0, gix-pathspec v0.7.3, gix-dir v0.4.0, gix-pack v0.50.0, gix-odb v0.60.0, gix-transport v0.42.0, gix-protocol v0.45.0, gix-status v0.9.0, gix-worktree-state v0.10.0, gix v0.62.0, gix-fsck v0.4.0, gitoxide-core v0.37.0, gitoxide v0.35.0, safety bump 14 crates (095c673)
      • Prepare changelogs prior to release (5755271)
      • Merge pull request #1341 from szepeviktor/typos (55f379b)
      • Fix typos (f72ecce)
      • Merge branch 'add-topo-walk' (b590a9d)
      • Adapt to changes in gix-traverse (1cfeb11)
      • Make topo more similar to Ancestors, but also rename Ancestors to Simple (2a9c178)
      • Adapt to changes in gix-traverse (6154bf3)
      • Thanks clippy (7f6bee5)
      • Merge branch 'status' (45edd2e)
      • into_index_worktree_iter() now takes an iterator, instead of a Vec. (18b2921)
      • Show submodules in status independently of their active state. (719ced8)
      • Make it easier to discover is_path_excluded() in documentation (c136329)
      • Adapt to changes in gix-index (1e1fce1)
      • Merge branch 'patch-1' (9e9c653)
      • Remove dep reqwest from gix (e3eedd8) </details>
    Open source →
  30. 0.61.1 22 Mar 2024 withdrawn
    Release notes

    This release also updates reqwest to v0.12, bringing hyper 1.0 and a more recent rustls version.

    Bug Fixes

    • <csr-id-e1fec3c3a46a358036255a2487c2a48cc7176b4e/> missing closing backtick in gix lib documentation

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 8 commits contributed to the release.
    • 4 days passed between releases.
    • 1 commit was understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-packetline v0.17.5, gix-transport v0.41.3, gix v0.61.1 (57579f1)
      • Prepare changelogs prior to release (7018a92)
      • Merge branch 'patch-1' (8fde62b)
      • Turncurl into a workspace package (adee500)
      • Make reqwest a workspace package (369cf1b)
      • Merge pull request #1325 from kdelorey/fix/simple-docs-formatting (3b34699)
      • Fixed opening of backtick in documentation. (f1bc4cd)
      • Missing closing backtick in gix lib documentation (e1fec3c) </details>
    Open source →
  31. 0.61.0 18 Mar 2024
    Release notes

    Documentation

    • <csr-id-e51b6b624994714c7e25d00e1204cefbf1b4ca12/> fix typo

    New Features (BREAKING)

    • <csr-id-ba3f2db0b65582a917466127dc16e4945104b01b/> provide Repository::dirwalk_iter(). That way, more copying happens but the usability increases tremendously as well. It's breaking as public types moved from repository::dirwalk to dirwalk, dissolving repository::dirwalk entirely.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 8 commits contributed to the release.
    • 4 days passed between releases.
    • 2 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-actor v0.31.1, gix-object v0.42.1, gix-index v0.31.1, gix-pathspec v0.7.2, gix-dir v0.3.0, gix-status v0.8.0, gix v0.61.0, safety bump 2 crates (155cc45)
      • Prepare changelog prior to release (129ba3d)
      • Merge branch 'improvements-for-cargo' (41cd53e)
      • Provide Repository::dirwalk_iter(). (ba3f2db)
      • Adapt to changes in gix-dir (b90ab3d)
      • Merge pull request #1318 from wtlin1228/main (4ccf39b)
      • Refine typo-fix (c18734b)
      • Fix typo (e51b6b6) </details>
    Open source →
  32. 0.60.0 14 Mar 2024
    Release notes

    New Features

    • <csr-id-66e87cd31c060c3f97ac685ee0541c408f600362/> add gix status --index-worktree-renames This enables rename-tracking between worktree and index, something that Git also doesn't do or doesn't do by default. It is, however, available in git2.
    • <csr-id-c7ddd30fc9fde6cac55153fa8e7fd783c83b336f/> describing commits can now be done with conditional dirty-suffix using commit::describe::Resolution::format_with_dirty_suffix()
    • <csr-id-c20ad287128132cda995a47abac1dd18f415f02d/> add Repository::is_dirty() The simplest way to learn if the repository is dirty or not.
    • <csr-id-a29fa00d0727baffcba10c8f2f09115a362a2baf/> Add Submodule::status() method. That way it's possible to obtain submodule status information, with enough information to implement git status-like commands.
    • <csr-id-0330ad77edab88e14812c57f812c96c5e4561045/> add Status iterator. We also move the IndexPersistedOrInMemory type to the worktree module as its more widely useful.

    New Features (BREAKING)

    • <csr-id-57cf83b57b0de01bd69f63ec3637859ccd757272/> diff::resource_cache() now takes the attribute stack directly. That way, the constructor becaomes more versatile as the user can chose to pass attribute stacks that have more functionality, and thus can be used in more places.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 19 commits contributed to the release over the course of 12 calendar days.
    • 18 days passed between releases.
    • 6 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-date v0.8.5, gix-hash v0.14.2, gix-trace v0.1.8, gix-utils v0.1.11, gix-features v0.38.1, gix-actor v0.31.0, gix-validate v0.8.4, gix-object v0.42.0, gix-path v0.10.7, gix-glob v0.16.2, gix-quote v0.4.12, gix-attributes v0.22.2, gix-command v0.3.6, gix-filter v0.11.0, gix-fs v0.10.1, gix-chunk v0.4.8, gix-commitgraph v0.24.2, gix-hashtable v0.5.2, gix-revwalk v0.13.0, gix-traverse v0.38.0, gix-worktree-stream v0.11.0, gix-archive v0.11.0, gix-config-value v0.14.6, gix-tempfile v13.1.1, gix-lock v13.1.1, gix-ref v0.43.0, gix-sec v0.10.6, gix-config v0.36.0, gix-prompt v0.8.4, gix-url v0.27.2, gix-credentials v0.24.2, gix-ignore v0.11.2, gix-bitmap v0.2.11, gix-index v0.31.0, gix-worktree v0.32.0, gix-diff v0.42.0, gix-discover v0.31.0, gix-pathspec v0.7.1, gix-dir v0.2.0, gix-macros v0.1.4, gix-mailmap v0.23.0, gix-negotiate v0.13.0, gix-pack v0.49.0, gix-odb v0.59.0, gix-packetline v0.17.4, gix-transport v0.41.2, gix-protocol v0.44.2, gix-revision v0.27.0, gix-refspec v0.23.0, gix-status v0.7.0, gix-submodule v0.10.0, gix-worktree-state v0.9.0, gix v0.60.0, safety bump 26 crates (b050327)
      • Prepare changelogs prior to release (52c3bbd)
      • Merge branch 'status' (3e5c974)
      • Assure submodule status doesn't operate if there is no worktree checkout (3753592)
      • Make summary available for Item. (da45d92)
      • Add gix status --index-worktree-renames (66e87cd)
      • Add status.showUntrackedFiles to config-tree and use it in status() (22abf60)
      • Fix lints for nightly, and clippy (f8ce3d0)
      • Allow configuration of interrupts in status iter (f1ba7bd)
      • Provide a non-parallel version of the status iteration (17bef30)
      • Describing commits can now be done with conditional dirty-suffix using commit::describe::Resolution::format_with_dirty_suffix() (c7ddd30)
      • Add Repository::is_dirty() (c20ad28)
      • Add submodule support for status iterator (4a4989d)
      • Add Submodule::status() method. (a29fa00)
      • Add Status iterator. (0330ad7)
      • diff::resource_cache() now takes the attribute stack directly. (57cf83b)
      • Cargo fmt (b3556b2)
      • Update gix-config setters. (ba3bf65)
      • Gix-config now uses a Key trait rather than Into<&BStr> (6281e1a) </details>
    Open source →
  33. 0.59.0 25 Feb 2024 withdrawn
    Release notes

    New Features

    • <csr-id-6914d1a7195d869ea776f30bbf29edb300f460be/> add Repository::dirwalk_with_delegate(). That way it's possible to perform arbitrary directory walks, useful for status, clean, and add.
    • <csr-id-d8bd45eb4dba4aca2ef009b1594f244c669625b8/> add open::Options::current_dir(). That way it's possible to obtain the current working directory with which the repository was opened.

    New Features (BREAKING)

    • <csr-id-0b1b44fa79a60ed40a9da154f7487408e6436941/> empty pathspecs with prefix now are optionally matching the prefix. Otherwise it's not possible to have the 'no pattern matches everything' case which is important in conjunction with prefixes and the requirement to still see everything outside of the prefix.

    Bug Fixes (BREAKING)

    • <csr-id-1e853961b0254893e277a0e14ee89099bac097f3/> leave more control to the user when creating pathspecs

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 19 commits contributed to the release over the course of 30 calendar days.
    • 36 days passed between releases.
    • 4 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-date v0.8.4, gix-utils v0.1.10, gix-actor v0.30.1, gix-object v0.41.1, gix-path v0.10.6, gix-glob v0.16.1, gix-quote v0.4.11, gix-attributes v0.22.1, gix-command v0.3.5, gix-filter v0.10.0, gix-commitgraph v0.24.1, gix-worktree-stream v0.10.0, gix-archive v0.10.0, gix-config-value v0.14.5, gix-ref v0.42.0, gix-sec v0.10.5, gix-config v0.35.0, gix-prompt v0.8.3, gix-url v0.27.1, gix-credentials v0.24.1, gix-ignore v0.11.1, gix-index v0.30.0, gix-worktree v0.31.0, gix-diff v0.41.0, gix-discover v0.30.0, gix-pathspec v0.7.0, gix-dir v0.1.0, gix-pack v0.48.0, gix-odb v0.58.0, gix-transport v0.41.1, gix-protocol v0.44.1, gix-revision v0.26.1, gix-refspec v0.22.1, gix-status v0.6.0, gix-submodule v0.9.0, gix-worktree-state v0.8.0, gix v0.59.0, gix-fsck v0.3.0, gitoxide-core v0.36.0, gitoxide v0.34.0, safety bump 10 crates (45b4470)
      • Prepare changelogs prior to release (f2e111f)
      • Merge branch 'status' (bb48c4c)
      • Empty pathspecs with prefix now are optionally matching the prefix. (0b1b44f)
      • Leave more control to the user when creating pathspecs (1e85396)
      • Adapt to changes in gix-dir (ab0f63a)
      • Merge pull request #1300 from DianaNites/patch-1 (e186199)
      • Fix a typo in gix::clone::PrepareFetch::new, crate_opts -> create_opts (adbf8e8)
      • Adapt to changes in gix-status (366dfb3)
      • Adapt to changes in gix-dir (e91accc)
      • Merge branch 'panic-msg-fix' (a86a5c0)
      • Fix into_{blob,tag} panic messages (b81d8ae)
      • Merge branch 'dirwalk' (face359)
      • Add Repository::dirwalk_with_delegate(). (6914d1a)
      • Add open::Options::current_dir(). (d8bd45e)
      • Merge branch 'tempfile-permissions' (7b44c7f)
      • Release gix-tempfile v13.1.0, gix-lock v13.1.0, safety bump 12 crates (8430442)
      • Release gix-command v0.3.4 (8a62fb5)
      • Release gix-path v0.10.5 (b8cba96) </details>
    Open source →
  34. 0.58.0 20 Jan 2024
    Release notes

    New Features

    <csr-id-a7e606b4dffe5c524b60a89fa0dbc753e80ce599/> <csr-id-1ba9488a7c3737a4b5a15a871108924095c061b2/>

    • <csr-id-8847676ddd1aefb3610d384245ec6d692d5258de/> add max-control feature for fine-grained performance control. This also adds the following performance features:

      • zlib-ng

    Bug Fixes

    • <csr-id-e3c5a0feaeef5ca1683da0adee25154c9e868b3e/> object::tree::diff::Platform::for_each_to_obtain_tree(callback) errors are more convenient to use. Due to a change in how the generic error type is declared it should now be possible to use anyhow with it as well.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 14 commits contributed to the release over the course of 18 calendar days.
    • 21 days passed between releases.
    • 4 commits were understood as conventional.
    • 1 unique issue was worked on: #670

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #670
      • object::tree::diff::Platform::for_each_to_obtain_tree(callback) errors are more convenient to use. (e3c5a0f)
    • Uncategorized
      • Release gix-utils v0.1.9, gix-features v0.38.0, gix-actor v0.30.0, gix-object v0.41.0, gix-path v0.10.4, gix-glob v0.16.0, gix-attributes v0.22.0, gix-command v0.3.3, gix-packetline-blocking v0.17.3, gix-filter v0.9.0, gix-fs v0.10.0, gix-commitgraph v0.24.0, gix-revwalk v0.12.0, gix-traverse v0.37.0, gix-worktree-stream v0.9.0, gix-archive v0.9.0, gix-config-value v0.14.4, gix-tempfile v13.0.0, gix-lock v13.0.0, gix-ref v0.41.0, gix-sec v0.10.4, gix-config v0.34.0, gix-url v0.27.0, gix-credentials v0.24.0, gix-ignore v0.11.0, gix-index v0.29.0, gix-worktree v0.30.0, gix-diff v0.40.0, gix-discover v0.29.0, gix-mailmap v0.22.0, gix-negotiate v0.12.0, gix-pack v0.47.0, gix-odb v0.57.0, gix-pathspec v0.6.0, gix-packetline v0.17.3, gix-transport v0.41.0, gix-protocol v0.44.0, gix-revision v0.26.0, gix-refspec v0.22.0, gix-status v0.5.0, gix-submodule v0.8.0, gix-worktree-state v0.7.0, gix v0.58.0, safety bump 39 crates (eb6aa8f)
      • Prepare changelogs prior to release (6a2e0be)
      • Merge branch 'finegrained-features' (d8570d0)
      • Add max-control feature for fine-grained performance control. (8847676)
      • Merge branch 'dirwalk' (5d176fc)
      • Use gix_fs::current_dir(precompose_unicode). (7d8d167)
      • Adapt to changes in gix-features (eacb5a4)
      • Add env::args_os_opt() which takes an argument to determine input unicode-decomposition (a7e606b)
      • Release gix-trace v0.1.7, gix-features v0.37.2, gix-commitgraph v0.23.2, gix-traverse v0.36.2, gix-index v0.28.2 (b6c04c8)
      • Merge pull request #1248 from joshtriplett/tyop (39f35da)
      • Typo fixes (3ef3bc2)
      • max-performance-zlib-ng-compat flag (1ba9488)
      • Add a max-performance-zlib-ng-compat flag (cfb06ec) </details>
    Open source →
  35. 0.57.1 30 Dec 2023
    Release notes

    <csr-id-3bd09ef120945a9669321ea856db4079a5dab930/>

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 3 commits contributed to the release.
    • 1 day passed between releases.
    • 1 commit was understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-date v0.8.3, gix-hash v0.14.1, gix-trace v0.1.6, gix-features v0.37.1, gix-actor v0.29.1, gix-validate v0.8.3, gix-object v0.40.1, gix-path v0.10.3, gix-glob v0.15.1, gix-quote v0.4.10, gix-attributes v0.21.1, gix-command v0.3.2, gix-packetline-blocking v0.17.2, gix-utils v0.1.8, gix-filter v0.8.1, gix-fs v0.9.1, gix-chunk v0.4.7, gix-commitgraph v0.23.1, gix-hashtable v0.5.1, gix-revwalk v0.11.1, gix-traverse v0.36.1, gix-worktree-stream v0.8.1, gix-archive v0.8.1, gix-config-value v0.14.3, gix-tempfile v12.0.1, gix-lock v12.0.1, gix-ref v0.40.1, gix-sec v0.10.3, gix-config v0.33.1, gix-prompt v0.8.2, gix-url v0.26.1, gix-credentials v0.23.1, gix-ignore v0.10.1, gix-bitmap v0.2.10, gix-index v0.28.1, gix-worktree v0.29.1, gix-diff v0.39.1, gix-discover v0.28.1, gix-macros v0.1.3, gix-mailmap v0.21.1, gix-negotiate v0.11.1, gix-pack v0.46.1, gix-odb v0.56.1, gix-pathspec v0.5.1, gix-packetline v0.17.2, gix-transport v0.40.1, gix-protocol v0.43.1, gix-revision v0.25.1, gix-refspec v0.21.1, gix-status v0.4.1, gix-submodule v0.7.1, gix-worktree-state v0.6.1, gix v0.57.1 (972241f)
      • Merge branch 'msrv' (8c492d7)
      • Change rust-version manifest field back to 1.65. (3bd09ef) </details>
    Open source →
  36. 0.57.0 29 Dec 2023
    Release notes

    New Features

    • support cloning a single revision

      A full object ID passed through with_ref_name() produced an object-ID refspec
      mapping and panicked while clone assumed every mapping had a name. Branch and
      tag checkout also retained ordinary clone tracking semantics instead of offering
      a single-revision mode.

      Add PrepareFetch::with_revision() and gix clone --revision for full refs, HEAD,
      and full object IDs. Revision clones use a one source-only implicit refspec,
      detach HEAD to the fetched commit, create no ordinary refs, persist no fetch
      refspec, and disable tag following. Existing with_ref_name() and --ref behavior
      stays unchanged.

      This follows Git commit 337855629f59 (builtin/clone: teach git-clone(1) the
      --revision= option) and its t/t5621-clone-revision.sh behavior.

    Commit Statistics

    • 7 commits contributed to the release over the course of 30 calendar days.
    • 30 days passed between releases.
    • 1 commit was understood as conventional.
    • 1 unique issue was worked on: #1930

    Commit Details

    view details
    • #1930
      • Support cloning a single revision (b1174b6)
    • Uncategorized
      • Merge pull request #2910 from codeAnqiang-ma/fix/relative-date-month-rollover (566fea1)
      • Adapt to changes in gix-date (613ff86)
      • Merge pull request #2824 from GitoxideLabs/fetch-revision (7a34c17)
      • Merge pull request #2879 from GitoxideLabs/remove-jwalk (b6492d3)
      • Replace jwalk with dua-core (c49dc45)
      • Merge pull request #2812 from GitoxideLabs/report-july (ae8845a)
    Open source →
    Release notes

    <csr-id-aea89c3ad52f1a800abb620e9a4701bdf904ff7d/>

    New Features

    • <csr-id-3fba5b856b37af2db40c29f463efe09dcfc8d085/> Repository::rev_parse*() now supports branch@{upstream|push|u|p}. Previously it would be parsed, but always error as the implementation didn't exist. Now it will return the fetch and push tracking branches respectively.

    • <csr-id-270322e75a49f9a5c2d996cf0a20c6d622b40394/> Add Reference::remote_tracking_ref_name() and *::remote_ref_name(). These methods mirror their respective Repository::branch_* prefixed versions.

    • <csr-id-4aa4b05b9dc785d550386218915208c0c9fdb78b/> add Repository::branch_remote_tracking_ref_name().

    • <csr-id-8ac2dccd62d88c0c196d2fc054a68a1b69121da0/> add push.default config key

    • <csr-id-3f842134d0e2bbc9c62ee77af3c8e5c7fd9f47d1/> add config::Snapshot::trusted_program(). That way it's possible to obtain an executable, program or script from a key in the configuration that is in a trusted section of the configuration.

      This goes along with a new command feature that brings in the command module at the top level to be able to execute such commands.

    • <csr-id-b5c36b805d0b269e6d87ca8b6c517b7fd7337622/> add clone::PrepareFetch::with_in_memory_config_overrides(). With it one can affect the repository configuration right before fetching.

    New Features (BREAKING)

    • <csr-id-5c07c760e392e9aecbe521f30ade5b693f977dc0/> Repository::remote_names|remote_default_name() now returns Cow<'_, BStr> instead of Cow<'_, str>. That way information won't degenerate due to enforcement of UTF-8.

    Bug Fixes (BREAKING)

    • <csr-id-404fde55d3cc85acce207ca259b0fa9b144dd694/> rename Repository::branch_remote_ref() to Repository::branch_remote_ref_name(), add direction argument (also to Repository::branch_remote_name() and Repository::branch_remote()). This better differentiates the return value from the corresponding ref objects, which would require the named ref to exist in the repository.

      The direction argument allows to get the reference to push to as well. Further, it now takes a full ref name to support deriving the name of branches to push to.

      Regarding Repository::branch_remote(), previously, this functionality was only available from a Reference, but now it's more generally available with just a branch name.

      The method was also adjusted to permit looking up non-symbolic remote names, like remotes that are specified by their URL.

    • <csr-id-59b8104a5320d946abc9f5736fa76696cef1459d/> mark gix::interrupt::init_handler() as unsafe The passed interrupt() argument will be called from a signal handler, so that needs to be documented and the call sites need to state that they fulfill the contract.

      Thanks to @Manishearth for pointing this out.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 41 commits contributed to the release over the course of 22 calendar days.
    • 23 days passed between releases.
    • 10 commits were understood as conventional.
    • 4 unique issues were worked on: #1158, #1165, #1178, #1191

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #1158
      • Remove extra-lines from changelog (11c9f66)
    • #1165
    • #1178
      • Add config::Snapshot::trusted_program(). (3f84213)
    • #1191
      • Add note to clarify what users might want to do (2e04403)
    • Uncategorized
      • Release gix-date v0.8.2, gix-hash v0.14.0, gix-trace v0.1.5, gix-features v0.37.0, gix-actor v0.29.0, gix-validate v0.8.2, gix-object v0.40.0, gix-path v0.10.2, gix-glob v0.15.0, gix-quote v0.4.9, gix-attributes v0.21.0, gix-command v0.3.1, gix-packetline-blocking v0.17.1, gix-utils v0.1.7, gix-filter v0.8.0, gix-fs v0.9.0, gix-chunk v0.4.6, gix-commitgraph v0.23.0, gix-hashtable v0.5.0, gix-revwalk v0.11.0, gix-traverse v0.36.0, gix-worktree-stream v0.8.0, gix-archive v0.8.0, gix-config-value v0.14.2, gix-tempfile v12.0.0, gix-lock v12.0.0, gix-ref v0.40.0, gix-sec v0.10.2, gix-config v0.33.0, gix-prompt v0.8.1, gix-url v0.26.0, gix-credentials v0.23.0, gix-ignore v0.10.0, gix-bitmap v0.2.9, gix-index v0.28.0, gix-worktree v0.29.0, gix-diff v0.39.0, gix-discover v0.28.0, gix-macros v0.1.2, gix-mailmap v0.21.0, gix-negotiate v0.11.0, gix-pack v0.46.0, gix-odb v0.56.0, gix-pathspec v0.5.0, gix-packetline v0.17.1, gix-transport v0.40.0, gix-protocol v0.43.0, gix-revision v0.25.0, gix-refspec v0.21.0, gix-status v0.4.0, gix-submodule v0.7.0, gix-worktree-state v0.6.0, gix v0.57.0, gix-fsck v0.2.0, gitoxide-core v0.35.0, gitoxide v0.33.0, safety bump 40 crates (e1aae19)
      • Prepare changelogs of next release (e78a92b)
      • Merge branch 'maintenance' (4454c9d)
      • Upgrade MSRV to v1.70 (aea89c3)
      • Thanks clippy (d38d1cc)
      • Merge branch 'tracking-branch' (0fe20e8)
      • Refactor (530c15d)
      • Repository::rev_parse*() now supports branch@{upstream|push|u|p}. (3fba5b8)
      • Add Reference::remote_tracking_ref_name() and *::remote_ref_name(). (270322e)
      • Add Repository::branch_remote_tracking_ref_name(). (4aa4b05)
      • Rename Repository::branch_remote_ref() to Repository::branch_remote_ref_name(), add direction argument (also to Repository::branch_remote_name() and Repository::branch_remote()). (404fde5)
      • Repository::remote_names|remote_default_name() now returns Cow<'_, BStr> instead of Cow<'_, str>. (5c07c76)
      • Add push.default config key (8ac2dcc)
      • Merge branch 'match_ceiling_dir_or_error' (cda5b51)
      • Merge branch 'main' into fix-1183 (1691ba6)
      • Release gix-ref v0.39.1 (c1cfe6e)
      • Merge branch 'patch-1' (20dce42)
      • Differentiate between Executable and Program (56d1d09)
      • Add core.editor key (ff71e07)
      • Merge branch 'archive-handling' (7549559)
      • Check all git-lfs managed files into the repository (35439de)
      • Git-lfs might fail early; let's rely on these caches to be recreated, where possible (b6f2b81)
      • Release gix-hash v0.13.3, gix-index v0.27.1 (98b08f4)
      • Merge branch 'mailmap-config-section' (8dda069)
      • Use new mailmap keys and make a few improvements. (7f65ffd)
      • Assign more suitable types to mailmap keys (1bf3e88)
      • Add config section for mailmap.{blob,file}. (86c7fa1)
      • Merge branch 'configure-prepare-fetch' (281fda0)
      • Add clone::PrepareFetch::with_in_memory_config_overrides(). (b5c36b8)
      • Allow overriding Git configuration when cloning. (9833b45)
      • Merge branch 'push-yvzxzqrkkvry' (4917beb)
      • Fixup new unsafe interrupt handler (c23bb87)
      • Mark gix::interrupt::init_handler() as unsafe (59b8104)
      • Reduce size of unsafe block in signal handler (d77bc0e)
      • Release gix-config v0.32.1 (cd26fd8)
      • Merge branch 'adjustments-for-cargo' (56588a9)
      • Fix import/prevent warning (ec0211a) </details>
    Open source →
    Release notes

    v0.57.0

    Compare

    Choose a tag to compare

    Open source →
  37. 0.56.0 06 Dec 2023
    Release notes

    Commit Statistics

    • 11 commits contributed to the release over the course of 30 calendar days.
    • 30 days passed between releases.
    • 0 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    view details
    • Uncategorized
      • Update manifests prior to release (ebe9095)
      • Merge pull request #2905 from GitoxideLabs/various-improvements (f3bbfad)
      • Adapt to changes in gix-testtools (0cbe539)
      • Merge pull request #2901 from cruessler/switch-to-gix-odb-at-opts (2a4d996)
      • Introduce Store::at() where possible (17fea2a)
      • Merge pull request #2897 from cruessler/run-more-tests-with-sha-256 (59f2d61)
      • Review (98c29f6)
      • Use GIX_TEST_FIXTURE_HASH for more tests (bbea2c4)
      • Merge pull request #2867 from GitoxideLabs/fix-url-authority-parsing (cc3ee80)
      • Release gix-path v0.12.4, gix-command v0.9.2, gix-config-value v0.19.1, gix-url v0.37.1, gix-credentials v0.39.1, gix-transport v0.58.1 (ab4fcb0)
      • Merge pull request #2812 from GitoxideLabs/report-july (ae8845a)
    Open source →
    Release notes

    New Features

    • <csr-id-27627248a019d85a904ecd8a57e395f34c1b16a4/> add gitoxide.core.externalCommandStderr to allow enabling stderr to the enclosing terminal. Previously, this was enabled by default, now it can additionally be disabled by the caller.
    • <csr-id-6cf73a44cbcd8bdca6a353cfd02d6237b1883b8c/> use gitoxide.credentials.helperStderr key to control how stderr is handled with helpers. That way users can configure each repository instance according to their needs, with which includes disabling the stderr of credential helpers.
    • <csr-id-77686db3f91e16fa6657dbae2182ec72e88d3fd0/> revision::Spec::path_and_mode() Provide additional information about revspecs for use with worktree filters.
    • <csr-id-6f4bbc31411cd3528cc6dd3db54a333ff861ec95/> add key for diff.external. That way it's conceivable that applications correctly run either a configured external diff tool, or one that is configured on a per diff-driver basis, while being allowed to fall back to a built-in implementation as needed.
    • <csr-id-4aea9b097fb08e504cdfc4a7c3b7511a308dc074/> add thediff::resource_cache() low-level utility for rapid in-memory diffing of combinations of resources. We also add the object::tree::diff::Platform::for_each_to_obtain_tree_with_cache() to pass a resource-cache for re-use between multiple invocation for significant savings.
    • <csr-id-dd575cd0e3749ff7f59c1582cec0524ff231667d/> Add config value gitoxide.http.sslNoVerify This value can by overriden by GIT_SSL_NO_VERIFY env variable. We use the value to override http.sslVerify when specifying ssl_verify in transport Options.
    • <csr-id-c6e83cf69f1a17e9ba3010bcce3a4ddd3305424c/> In gix read http.sslVerify config value and pass it to gix-transport.
    • <csr-id-8434aab5fb6ce32be2bf3b20e38c28c780bd5db9/> add gitoxide.core.refsNamespace key and respect the GIT_NAMESPACE environment variable. It's also provided as context value.
    • <csr-id-0ed0a8936eaf73407721fe0e06da5d345a54956b/> make verbose-object-parsing-errors available in gix. That way, it's easy to create programs that are geared towards debugging repositories and finding invalid objects with detailed errors.
    • <csr-id-e95bb9fa3a69bec039ebf932b672496de753fe97/> add the gitoxide.credentials.terminalPrompt key to represent the GIT_TERMINAL_PROMPT That way, it's easy to control the usage of terminals without using and environment.
    • <csr-id-f34f46a3895a157036b099d6663d8953567119e7/> Add http-client-curl-rustls (CLI) and blocking-http-transport-curl-rustls (lib) features to avoid openssl. That way, we should be able to avoid crashes on certain CI configurations.
    • <csr-id-117357e7bbfcb1bfe887f85173e88db9436814b1/> add Head::try_into_peeled_object() and Head::peel_to_object_in_place() This makes it easier to peel to a specific object type, after all tags have been followed, without having to assume an intermediate commit.

    Bug Fixes

    <csr-id-20f962e5d6a7c19ca097ccd3f06434f6c9501262/>

    • <csr-id-0b3eb141bee59ffc17c973a8d126efaa52edb9b3/> assure the correct repository is used for checkouts after clone. If this is not the case, it's possible for filters to run in the context of potential parent repositories, which then can have all kinds of issues.

      In case of git-lfs, for instance, it would try to download objects from the wrong repository.

    • <csr-id-3ff1827a12557a601da22d138beb97e8647d5d6e/> Allow multiple packs to be received one after another. Previously it would be difficult to perform another fetch operation on the same connection as the final flush packet after a pack wouldn't be consumed.

      This has now been mitigated by consuming it in the one place where knoweldge about this specialty exists.

    • <csr-id-8d9296ff150a887cb887ee6b6a9c4a9cb550cae0/> don't use trust-dns by default when using request. It's reported to have issues under certain condition, please see https://github.com/seanmonstar/reqwest/pull/437 for more.

      The blocking-http-transport-reqwest-rust-tls-trust-dns feature was added to provide the same feature-set as before for those who want trust-dns.

    • <csr-id-6295dec2bdd6c3bb35e45db7a486651ebfe50369/> V1 negotiation won't hang anymore The logic previously tried to estimate when a pack can be expected, and when a NAK is the end of a block, or the beginning of a pack.

      This can be known because a pack (with our settings) needs two things:

      • the server thinks it's ready
    • a done sent by the client

    New Features (BREAKING)

    • <csr-id-4743212269c6fab69f6306fba88ee38b669a7dc3/> object::blob::diff::Platform now performs all necessary conversions. Previously it would just offer the git-ODB version of a blob for diffing, while it will now make it possible to apply all necessary conversion steps for you.

      This also moves Event::diff() to Change::diff(), adds Repository::diff_resource_cache() and refactors nearly everything about the objects::blob::diff::Platform.

    • <csr-id-089c4dc8b7d323637e5f9a9f7446f2a8e9f51ce1/> generalize rename-tracking engine for later use with status. Previously the rename tracking engine was integrated with tree-diffs, but already operates in a stand-alone fashion. Now it's officially generalized which allows it to be tested separately and used when tracking renames for diffs between index and tree, index and index, and index and worktree.

    • <csr-id-c3edef1c0c49accbb037bdf086dade3ed0e5e507/> make it possible to trace incoming and outgoing packetlines. Due to the way this is (and has to be) setup, unfortunately one has to integrate that with two crates, instead of just one.

      This changes touches multiple crates, most of which receive a single boolean as last argument to indicate whether the tracing should happen in the first place.

    • <csr-id-4e6a4e6ef440c72f61513ba82b439b9dca298e73/> improve head() peeling API Previously it was partially untested and it was hard to obtain an object of choice.

      Further breaking changes:

      • rename Head::peeled() to into_peeled_id()
    • rename Head::into_fully_peeled_id() to try_peel_into_id()
    • rename Head::peel_to_id_in_place() to Head::try_peel_to_id_in_place()

    Bug Fixes (BREAKING)

    • <csr-id-2189cee47f99350b368390eaa2a01961bb77c250/> rename GITOXIDE_* environment variables to GIX_#
    • <csr-id-88f8b342ab317696bcab8a0fe75c042e7290a75c/> Remove unsafe transmute of should_interrupt Adds a lifetime to the ExtendedBufRead trait to specify how long the callback provided must live.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #1061
      • V1 negotiation won't hang anymore (6295dec)
    • #1076
      • Don't use trust-dns by default when using request. (8d9296f)
    • #1090
      • Add the gitoxide.credentials.terminalPrompt key to represent the GIT_TERMINAL_PROMPT (e95bb9f)
    • #1125
      • Fix; SnapshotMut::set_value() now sets values for keys in subsections as well. (d8452a0)
    • #1129
      • Assure the correct repository is used for checkouts after clone. (0b3eb14)
    • #972
      • Allow multiple packs to be received one after another. (3ff1827)
    • Uncategorized
      • Release gix v0.56.0 (476d5ef)
      • Release gix-worktree-state v0.5.0, gix v0.56.0, gix-fsck v0.1.0, gitoxide-core v0.34.0, gitoxide v0.32.0 (c8568b9)
      • Release gix-worktree v0.28.0, gix-diff v0.38.0, gix-discover v0.27.0, gix-macros v0.1.1, gix-mailmap v0.20.1, gix-negotiate v0.10.0, gix-pack v0.45.0, gix-odb v0.55.0, gix-pathspec v0.4.1, gix-packetline v0.17.0, gix-transport v0.39.0, gix-protocol v0.42.0, gix-revision v0.24.0, gix-refspec v0.20.0, gix-status v0.3.0, gix-submodule v0.6.0, gix-worktree-state v0.5.0, gix v0.56.0, gix-fsck v0.1.0, gitoxide-core v0.34.0, gitoxide v0.32.0 (d3fd11e)
      • Release gix-date v0.8.1, gix-hash v0.13.2, gix-trace v0.1.4, gix-features v0.36.1, gix-actor v0.28.1, gix-validate v0.8.1, gix-object v0.39.0, gix-path v0.10.1, gix-glob v0.14.1, gix-quote v0.4.8, gix-attributes v0.20.1, gix-command v0.3.0, gix-packetline-blocking v0.17.0, gix-utils v0.1.6, gix-filter v0.7.0, gix-fs v0.8.1, gix-chunk v0.4.5, gix-commitgraph v0.22.1, gix-hashtable v0.4.1, gix-revwalk v0.10.0, gix-traverse v0.35.0, gix-worktree-stream v0.7.0, gix-archive v0.7.0, gix-config-value v0.14.1, gix-tempfile v11.0.1, gix-lock v11.0.1, gix-ref v0.39.0, gix-sec v0.10.1, gix-config v0.32.0, gix-prompt v0.8.0, gix-url v0.25.2, gix-credentials v0.22.0, gix-ignore v0.9.1, gix-bitmap v0.2.8, gix-index v0.27.0, gix-worktree v0.28.0, gix-diff v0.38.0, gix-discover v0.27.0, gix-macros v0.1.1, gix-mailmap v0.20.1, gix-negotiate v0.10.0, gix-pack v0.45.0, gix-odb v0.55.0, gix-pathspec v0.4.1, gix-packetline v0.17.0, gix-transport v0.39.0, gix-protocol v0.42.0, gix-revision v0.24.0, gix-refspec v0.20.0, gix-status v0.3.0, gix-submodule v0.6.0, gix-worktree-state v0.5.0, gix v0.56.0, gix-fsck v0.1.0, gitoxide-core v0.34.0, gitoxide v0.32.0, safety bump 27 crates (55d386a)
      • Prepare changelogs prior to release (d3dcbe5)
      • Merge branch 'adjustments-for-cargo' (8156340)
      • Add gitoxide.core.externalCommandStderr to allow enabling stderr to the enclosing terminal. (2762724)
      • Use gitoxide.credentials.helperStderr key to control how stderr is handled with helpers. (6cf73a4)
      • Rename GITOXIDE_* environment variables to GIX_# (2189cee)
      • Merge branch 'gix-status' (5fdc9df)
      • Merge branch 'remove-unsafe' (d2ba97c)
      • Remove unsafe transmute of should_interrupt (88f8b34)
      • revision::Spec::path_and_mode() (77686db)
      • J fmt (51c7abc)
      • Merge branch 'gix-status' (dfb3f18)
      • Adapt to changes in gix-diff (1706e23)
      • object::blob::diff::Platform now performs all necessary conversions. (4743212)
      • Add key for diff.external. (6f4bbc3)
      • Add thediff::resource_cache() low-level utility for rapid in-memory diffing of combinations of resources. (4aea9b0)
      • Merge branch 'support_ssl_verify' (5ce9784)
      • Refactor (ead00e9)
      • Add config value gitoxide.http.sslNoVerify (dd575cd)
      • In gix read http.sslVerify config value and pass it to gix-transport. (c6e83cf)
      • Merge pull request #1140 from bittrance/fix-pr1127 (698caaa)
      • Connect new gitoxide.credentials subsection into section tree. (8b8704f)
      • Adapt to changes in gix-filter (1763862)
      • Merge branch 'improve-filters' (f09ea13)
      • Add gitoxide.core.refsNamespace key and respect the GIT_NAMESPACE environment variable. (8434aab)
      • Merge branch 'check-cfg' (5a0d93e)
      • Replace all docsrs config by the document-features feature (bb3224c)
      • Merge branch 'sh-on-windows' (2b80d84)
      • Remove special handling in favor of allowing shell-avoidance. (a0cc80d)
      • Merge branch 'fix-1103' (d75159c)
      • Adapt to changes in gix-credentials (c712850)
      • Merge branch 'gix-status' (c87f2cc)
      • Generalize rename-tracking engine for later use with status. (089c4dc)
      • Merge branch 'error' (c372321)
      • Make verbose-object-parsing-errors available in gix. (0ed0a89)
      • Merge branch 'fix-1096' (ff99a18)
      • Adapt to changes in gix-object (203d69c)
      • Merge branch 'caio/main' (7227410)
      • Count removed bytes correctly (267b13d)
      • Merge branch 'gix-object-find' (c8bd660)
      • Thanks clippy (82b01c2)
      • Adapt to changes related to usage of gix-object::Find trait where necessary (5761a4d)
      • Adapt to changes in gix_object and gix_odb. (24e319e)
      • Merge branch 'BloopAI/main' (c197cbf)
      • Add feature to allow using rustls without trust-dns (ea8cd0e)
      • Merge branch 'size-optimization' (c0e72fb)
      • Remove CHANGELOG.md from all packages (b65a80b)
      • Merge branch 'fix-v1-negotiation' (eb23338)
      • Merge branch 'trace-packetlines' (e7de4c7)
      • Make it possible to trace incoming and outgoing packetlines. (c3edef1)
      • Merge branch 'discover-split-worktree' (16170d9)
      • Improve the error message around incorrect worktree paths (dd57957)
      • Allow to open split worktree repositories (20f962e)
      • Merge branch 'fuzz' (c5a7e66)
      • Add http-client-curl-rustls (CLI) and blocking-http-transport-curl-rustls (lib) features to avoid openssl. (f34f46a)
      • Make it easier to see what's happening during negotiation with tracing enabled (4e48558)
      • Release gix-url v0.25.1 (47a1241)
      • Merge branch 'head-conversions' (c2cf20c)
      • Add Head::try_into_peeled_object() and Head::peel_to_object_in_place() (117357e)
      • Improve head() peeling API (4e6a4e6) </details>
    Open source →
    Release notes

    gix-worktree v0.56.0

    Compare

    Choose a tag to compare

    Open source →
  38. 0.55.2 13 Oct 2023
    Release notes

    Bug Fixes

    • <csr-id-8011c73ee401bfca03811a249c46a4dd468af1b8/> bump gix-transport version to prevent it from being picked up. gix-transport v0.37.1 could accidentally be picked up by older, incompatible, gix versions which now fail to build.

      Thus v0.37.1 is now yanked and replaced with v0.38.0 along with a new release of gix to go with it.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 3 commits contributed to the release.
    • 1 day passed between releases.
    • 1 commit was understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-transport v0.38.0, gix-protocol v0.41.1, gix v0.55.2, gitoxide-core v0.33.1, gitoxide v0.31.1 (1955a57)
      • Prepare changelogs prior to release (12b5caf)
      • Bump gix-transport version to prevent it from being picked up. (8011c73) </details>
    Open source →
  39. 0.55.1 12 Oct 2023 withdrawn
    Release notes

    New Features

    • <csr-id-5732303180d26374016b70bdd7fa0278dd84cff3/> Add take_data() to all primitive object types. That is the new, most direct way to obtain its data which otherwise is immovable.
    • <csr-id-88f2e6c4c540b9c8032e6eee9c5da65a9bcfeef8/> Add detach() and detached() too all object types. That way, the detachment API is symmetric. It's required to overcome the Drop implementation of each of these types which prevents moving data out of the object (easily).

    Commit Statistics

    <csr-read-only-do-not-edit/>

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

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix v0.55.1 (4642c0c)
      • Add take_data() to all primitive object types. (5732303)
      • Add detach() and detached() too all object types. (88f2e6c) </details>
    Open source →
  40. 0.55.0 12 Oct 2023 withdrawn
    Release notes

    <csr-id-f478a3722f0be35c109ea60b79cd4ac6e607480b/>

    This release contains a complete rewrite of the internal url parsing logic, the public interface stays mostly the same however. Gitoxide will now be more correct, interpreting more urls the same way Git does. Improvements include the added support for ssh aliases (github:byron/gitoxide has previously been parsed as local path), adjustments around the interpretation of colons in file names (previously we disallowed colons that were not followed up with a slash character) and some smaller changes that bring the interpretation of file urls more in line with Git's implementation. Additionally, the error types have been adjusted to print a more comprehensive message by default, making sure they stay helpful even when bubbled up through multiple abstraction layers.

    There are still many (edge) cases in Git's url parsing implementation which are not handled correctly by Gitoxide. If you notice any such deviation please open a new issue to help us making Gitoxide even more correct.

    New Features

    • <csr-id-c79a7daa30fe90d14d8e3387ec48116b37faf460/> add Repository::head_tree() to more easily obtain the current tree.

    • <csr-id-787a9aa91c1abaa7572f5d19f8a2acbb7ecc0732/> Add Repository::has_object() as a high-level alternative. Previously, one would have to call repo.objects.contains(), which is fine, but this method is necessary for symmetry of the API and one shouldn't have to drop down a level to do this.

      This method also knows empty trees as special case.

    • <csr-id-3cec935e692eeb33ffcac98988e34a390f755bf3/> add Object::try_into_blob() and into_blob() and Repository::empty_blob() This way it's easier to assert that an object is actually a blob.

    • <csr-id-7d9ecdd1c230204468a965f703d5efd00fa7fb79/> add Repository::index_or_empty(). This is useful if a missing index should mean it's empty.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 15 commits contributed to the release over the course of 16 calendar days.
    • 17 days passed between releases.
    • 5 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-transport v0.37.1, gix-protocol v0.41.0, gix-revision v0.23.0, gix-refspec v0.19.0, gix-worktree v0.27.0, gix-status v0.2.0, gix-submodule v0.5.0, gix-worktree-state v0.4.0, gix v0.55.0 (14ddbd4)
      • Release gix-hash v0.13.1, gix-features v0.36.0, gix-actor v0.28.0, gix-object v0.38.0, gix-glob v0.14.0, gix-attributes v0.20.0, gix-command v0.2.10, gix-filter v0.6.0, gix-fs v0.8.0, gix-commitgraph v0.22.0, gix-revwalk v0.9.0, gix-traverse v0.34.0, gix-worktree-stream v0.6.0, gix-archive v0.6.0, gix-tempfile v11.0.0, gix-lock v11.0.0, gix-ref v0.38.0, gix-config v0.31.0, gix-url v0.25.0, gix-credentials v0.21.0, gix-diff v0.37.0, gix-discover v0.26.0, gix-ignore v0.9.0, gix-index v0.26.0, gix-mailmap v0.20.0, gix-negotiate v0.9.0, gix-pack v0.44.0, gix-odb v0.54.0, gix-pathspec v0.4.0, gix-packetline v0.16.7, gix-transport v0.37.0, gix-protocol v0.41.0, gix-revision v0.23.0, gix-refspec v0.19.0, gix-worktree v0.27.0, gix-status v0.2.0, gix-submodule v0.5.0, gix-worktree-state v0.4.0, gix v0.55.0, safety bump 37 crates (68e5432)
      • Prepare changelogs prior to release (1347a54)
      • Merge branch 'improvements' (429e7b2)
      • Inform about the absence of strict hash verification and strict object creation. (f478a37)
      • Add Repository::head_tree() to more easily obtain the current tree. (c79a7da)
      • Add Repository::has_object() as a high-level alternative. (787a9aa)
      • Add Object::try_into_blob() and into_blob() and Repository::empty_blob() (3cec935)
      • Thanks clippy (345712d)
      • Merge branch 'reset' (b842691)
      • Trust Ctime again (f929d42)
      • Add Repository::index_or_empty(). (7d9ecdd)
      • Adapt to changes in gix-status (54fb7c2)
      • Merge branch 'gix-url-parse-rewrite' (a12e4a8)
      • Update changelogs (4349353) </details>
    Open source →
  41. 0.54.1 25 Sep 2023
    Release notes

    Bug Fixes

    • <csr-id-300a83821358f2a43649515606ebb84741e82780/> local refs created during fetching will now always be valid. Previously it could create symbolic refs that were effectively unborn, i.e. point to a reference which doesn't exist.

      Now these will always point to the peeled object instead.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 2 commits contributed to the release.
    • 1 day passed between releases.
    • 1 commit was understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix v0.54.1 (f603fd7)
      • Local refs created during fetching will now always be valid. (300a838) </details>
    Open source →
  42. 0.54.0 24 Sep 2023
    Release notes

    New Features

    • <csr-id-add4cf4c0d2ce0f331a619ffd31f709a3b9f0bff/> gix dirwalk as a way to run gix-dir directly This is mostly for testing walks specifically, without needing them as part of gix clean or gix status.
    • <csr-id-6ab327e54a71ca5e4d555bfedfffd81359d8b529/> add gix merge tree --message '' to allow creating commits This is useful for controlling cherry-picks precisely.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 7 commits contributed to the release over the course of 26 calendar days.
    • 28 days passed between releases.
    • 2 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Merge pull request #2584 from GitoxideLabs/improvements (1322a36)
      • gix dirwalk as a way to run gix-dir directly (add4cf4)
      • Merge pull request #2568 from GitoxideLabs/dependabot/cargo/cargo-56d6b174d8 (ab2fee1)
      • Update crates to Rust 2024 edition (2cb17b2)
      • Remove rust_2018_idioms lint declarations (e10d5f6)
      • Merge pull request #2557 from GitoxideLabs/cherry-pick (0771cb2)
      • Add gix merge tree --message '' to allow creating commits (6ab327e) </details>
    Open source →
    Release notes

    <csr-id-e022096aa495f55a05f83860243f49552be501f7/> <csr-id-79e47a512507c7fd7acbdff624a5249e24505e0d/>

    New Features

    • <csr-id-f9d14d86a6578cf0f9a0c4a2256ad227b9264340/> Add PathspecDetached as pathspec that can more easily be used across threads.
    • <csr-id-f066f9889b57a4ffaebc0ed1442d77999498db42/> PathSpec implements gix_status::PathSpec to allow it to be used there. The reason we need a trait and can't do with simply a function is that multiple calls are needed to test for inclusion and allow the common-prefix optimization.
    • <csr-id-a8333f1137df51d237f6debf056ac075b0a2cd94/> add Repository::stat_options() to learn how an index would compare filesystem stats.
    • <csr-id-2734e84b74b761bff27fc1eb27f57d9d839c9240/> add parallel feature toggle Make certain data structure threadsafe (or Sync) to facilitate multithreading. Further, many algorithms will now use multiple threads by default. If unset, most of gix can only be used in a single thread as data structures won't be Send anymore.

    Bug Fixes

    • <csr-id-e22893c1c95a76d9a5f3b2f2a4e2a30f815ee7e5/> do not trust ctime by default. On MacOS it seems to be off by two seconds right from the source, which seems to be an issue stat isn't having.
    • <csr-id-334281c8771790df7a022daa4a700c96b99acbc0/> ignore empty core.askpass settings This is the same as what git does, it's explicit per value, which means that other paths might be flagged as empty automatically.

    Bug Fixes (BREAKING)

    • <csr-id-ee9276f2a7789c20d88d40624ad648e44b604a27/> PrepareCheckout::main_worktree() now takes Progress as geric argument. This makes it more flexible and convenient, but is technically a breaking change.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 31 commits contributed to the release.
    • 16 days passed between releases.
    • 9 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-features v0.35.0, gix-actor v0.27.0, gix-object v0.37.0, gix-glob v0.13.0, gix-attributes v0.19.0, gix-filter v0.5.0, gix-fs v0.7.0, gix-commitgraph v0.21.0, gix-revwalk v0.8.0, gix-traverse v0.33.0, gix-worktree-stream v0.5.0, gix-archive v0.5.0, gix-tempfile v10.0.0, gix-lock v10.0.0, gix-ref v0.37.0, gix-config v0.30.0, gix-url v0.24.0, gix-credentials v0.20.0, gix-diff v0.36.0, gix-discover v0.25.0, gix-ignore v0.8.0, gix-index v0.25.0, gix-mailmap v0.19.0, gix-negotiate v0.8.0, gix-pack v0.43.0, gix-odb v0.53.0, gix-pathspec v0.3.0, gix-transport v0.37.0, gix-protocol v0.40.0, gix-revision v0.22.0, gix-refspec v0.18.0, gix-status v0.1.0, gix-submodule v0.4.0, gix-worktree v0.26.0, gix-worktree-state v0.3.0, gix v0.54.0, gitoxide-core v0.32.0, gitoxide v0.30.0, safety bump 37 crates (7891fb1)
      • Prepare changelogs prior to release (8a60d5b)
      • Merge branch 'reset' (54a8495)
      • Add PathspecDetached as pathspec that can more easily be used across threads. (f9d14d8)
      • Do not trust ctime by default. (e22893c)
      • PathSpec implements gix_status::PathSpec to allow it to be used there. (f066f98)
      • Add Repository::stat_options() to learn how an index would compare filesystem stats. (a8333f1)
      • Fix compile time warning (4ce7f7c)
      • Merge branch 'parallel-feature' (c270f78)
      • Add parallel feature toggle (2734e84)
      • Add assertion to assure ThreadSafeRepository is sync. (79e47a5)
      • Merge pull request #1015 from NobodyXu/optimize/prepare-checkout (14312b6)
      • Merge branch 'path-config' (9c528dc)
      • Merge pull request #1012 from NobodyXu/optimization/try-into-de-momo (afb1960)
      • Ignore empty core.askpass settings (334281c)
      • Merge branch 'optimize/progress-use' (1f2ffb6)
      • PrepareCheckout::main_worktree() now takes Progress as geric argument. (ee9276f)
      • Add note about the trust-model. (e022096)
      • Optimize clone::PrepareCheckout::main_worktree`` ([938f518`](https://github.com/GitoxideLabs/gitoxide/commit/938f5187f0ff51561971ca463584ec0db93f3455))
      • Fix maybe_async (c80e809)
      • Rm unused clippy lint (d82f84b)
      • Fixed error by also using trait object in remote::fetch::Prepare::receive (44faa01)
      • Revert changes to binary files (3eb8653)
      • Rm binary files (6a33594)
      • Use trait object for progress in PrepareFetch::fetch_only (70989b3)
      • Fix clippy warnings (d5aa2ba)
      • Optimize Repository::write_blob_stream: Avoid dup codegen (ca8a373)
      • Apply gix_macros::momo to Repository::write_blob (bae928d)
      • Optimize Repository::write_object: Avoid dup momo (32f1c7d)
      • Rm unnecessary lifetime annotation in Repository::commit_as_inner (cf70a2e)
      • Optimize gix: de-momo impl TryInto by hand (b19c140) </details>
    Open source →
  43. 0.53.1 08 Sep 2023
    Release notes

    Bug Fixes

    • <csr-id-902639b9b72ead72b5355e0a1a4da5afd7fed46d/> interrupt feature only gates signal-handling, but leaves the interrupt module alone.

    Commit Statistics

    <csr-read-only-do-not-edit/>

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

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix v0.53.1 (1b1fc25)
      • interrupt feature only gates signal-handling, but leaves the interrupt module alone. (902639b) </details>
    Open source →
  44. 0.53.0 08 Sep 2023
    Release notes

    <csr-id-ed327f6163f54756e58c20f86a563a97efb256ca/>

    This release adds feature toggles which help to reduce compile time. Please see the library documentation for all the details.

    New Features

    • <csr-id-2b8d09f785f471aa12fc6793f0ea40c1f8d9ea4a/> remove log dependency in favor of gix-trace
    • <csr-id-36d34bd7e8cd944c009cb7acbe39c1dc445b4adc/> add interrupt feature to reduce dependencies
    • <csr-id-721c37722ca8b12a5f9c060061040c79f9da6aa9/> Allow index access to be toggled with the index feature.
    • <csr-id-92dd18154b526b4c5132d770960a36ccf739dec8/> add excludes feature to make exclude-checks possible.
    • <csr-id-c4ffde013a62a38a6f63c4a160bc3cdb6aafd65a/> add mailmap feature
    • <csr-id-c42064d8ca382513c944f3df5c08e4ff66d5f804/> add revision component behind a feature toggle.
    • <csr-id-147528ff647dc74473ef8dd4ceac6fedebc0b15c/> gix without connection support includes less code
    • <csr-id-fea044e5d09282a5772c8fe9a534d9ebf7f11bbc/> allow disabling the blob-diff capability This also removes all diff capabilities.
    • <csr-id-c5ec244979b7e6baf9a8237e4f12cb87809131ae/> improve feature documentation. This should make optimizing compile time and performance easier, while assuring these options aren't pre-determined by library providers.
    • <csr-id-c79991cde8216271ab854b7574e7d97efd79d07c/> Clone for ThreadSafeRepository It is Sync and can easily be passed by reference, but sometimes it's nice to be cloning it as well.
    • <csr-id-d22b7fb1304cce3b2aabac42cc58fe7c5911f276/> provide Repository::find_fetch_remote() to obtain a remote just like git would.

    Bug Fixes

    • <csr-id-a957478e0f623803bc6358d08b9ffaa2305e24d4/> put gix-credentials and gix-prompt behind the 'credentials' feature toggle. They are also available when using https transports.
    • <csr-id-4971a4837ff5ac6654aa75214bdd2243d4d864a5/> handle submodules whose entry in the index is a file.

    New Features (BREAKING)

    • <csr-id-58b0e6f860d4d3b5548c18d3eae97141bc6dc377/> Use stack abstraction in Repository::excludes(). This makes it easier to use.
    • <csr-id-24dd870919ba444aa8099c63a78ea120d47ec28e/> use prodash::Count to indicate that nothing more than counting is performed, in place of prodash::Progress
    • <csr-id-54291fdfc62c7d8a31bc5564713c23eab3865dc5/> Provide a wrapper for gix_worktree::Stack for simpler attribute queries.

    Bug Fixes (BREAKING)

    • <csr-id-741b41e6e6c6f283c1632a7de0da44a5e7842817/> remove regex feature in favor of revparse-regex. revparse-regex is only used when parsing revspecs that use a special syntax. This feature is also enabled by default.
    • <csr-id-072ee32f693a31161cd6a843da6582d13efbb20b/> use dyn trait where possible. This reduces compile time due to avoiding duplication.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 57 commits contributed to the release over the course of 17 calendar days.
    • 17 days passed between releases.
    • 19 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 2 times to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-transport v0.36.0, gix-protocol v0.39.0, gix-revision v0.21.0, gix-refspec v0.17.0, gix-submodule v0.3.0, gix-worktree v0.25.0, gix-worktree-state v0.2.0, gix v0.53.0 (1ff3064)
      • Release gix-date v0.8.0, gix-hash v0.13.0, gix-features v0.34.0, gix-actor v0.26.0, gix-object v0.36.0, gix-path v0.10.0, gix-glob v0.12.0, gix-attributes v0.18.0, gix-packetline-blocking v0.16.6, gix-filter v0.4.0, gix-fs v0.6.0, gix-commitgraph v0.20.0, gix-hashtable v0.4.0, gix-revwalk v0.7.0, gix-traverse v0.32.0, gix-worktree-stream v0.4.0, gix-archive v0.4.0, gix-config-value v0.14.0, gix-tempfile v9.0.0, gix-lock v9.0.0, gix-ref v0.36.0, gix-sec v0.10.0, gix-config v0.29.0, gix-prompt v0.7.0, gix-url v0.23.0, gix-credentials v0.19.0, gix-diff v0.35.0, gix-discover v0.24.0, gix-ignore v0.7.0, gix-index v0.24.0, gix-macros v0.1.0, gix-mailmap v0.18.0, gix-negotiate v0.7.0, gix-pack v0.42.0, gix-odb v0.52.0, gix-pathspec v0.2.0, gix-packetline v0.16.6, gix-transport v0.36.0, gix-protocol v0.39.0, gix-revision v0.21.0, gix-refspec v0.17.0, gix-submodule v0.3.0, gix-worktree v0.25.0, gix-worktree-state v0.2.0, gix v0.53.0, safety bump 39 crates (8bd0456)
      • Prepare changelogs for release (375db06)
      • Merge branch 'optimizations' (6135a5e)
      • Adapt to changes in gix (805b8aa)
      • Remove log dependency in favor of gix-trace (2b8d09f)
      • Add interrupt feature to reduce dependencies (36d34bd)
      • Allow index access to be toggled with the index feature. (721c377)
      • Put gix-credentials and gix-prompt behind the 'credentials' feature toggle. (a957478)
      • Add excludes feature to make exclude-checks possible. (92dd181)
      • Use stack abstraction in Repository::excludes(). (58b0e6f)
      • Add mailmap feature (c4ffde0)
      • Simplify test-suite (799a515)
      • Remove regex feature in favor of revparse-regex. (741b41e)
      • Add revision component behind a feature toggle. (c42064d)
      • gix without connection support includes less code (147528f)
      • Allow disabling the blob-diff capability (fea044e)
      • Improve feature documentation. (c5ec244)
      • Merge branch 'feat/gix-momo' (a1ed6a1)
      • Handle submodules whose entry in the index is a file. (4971a48)
      • Merge branch dynification (f658fcc)
      • Use dyn trait where possible. (072ee32)
      • Use prodash::Count to indicate that nothing more than counting is performed, in place of prodash::Progress (24dd870)
      • Update to the latest prodash (ed327f6)
      • Merge branch 'improvements' (8a7c2af)
      • Provide a wrapper for gix_worktree::Stack for simpler attribute queries. (54291fd)
      • Clone for ThreadSafeRepository (c79991c)
      • Merge branch 'adjustments-for-cargo' (b7560a2)
      • Adapt to changes in gix-submodule (f8471b1)
      • Release gix-index v0.23.1 (11b9c71)
      • Release gix-date v0.7.4, gix-index v0.23.0, safety bump 5 crates (3be2b1c)
      • Apply momo to fn gix::Remote::save_as_to (875c287)
      • Apply momo to fn gix::revision::Spec::from_bstr (1d90301)
      • Apply momo to mod config::snapshot::access (25912fe)
      • Apply momo to mod gix::create::into (cd3c289)
      • Rm unnecessary #[allow(unused_mut)] put on momoed functions (89ae797)
      • Remove unnecessary change in repository/config/transport.rs (86b8e50)
      • Remove unnecessary #[allow(clippy::needless_lifetimes)] (e1b9d51)
      • Dramatically simplify gix_macros::momo (c72eaa0)
      • Manually de-momo Repository::try_find_remote_{without_url_rewrite} (e760225)
      • Merge branch 'fixes' (4bfd1cc)
      • Thanks clippy (0d6d4ec)
      • Adapt to changes in gix-index and pass skip-hash through for performance.. (713cd59)
      • Use new gix method to obtain the fetch remote (instead of implementing it by hand) (e2c0912)
      • Provide Repository::find_fetch_remote() to obtain a remote just like git would. (d22b7fb)
      • Fix clippy lints in gix/src/repository/remote.rs (ff210d8)
      • Apply momo to mod gix::repository (5a50537)
      • Apply momo to mod remote::connection::fetch::receive_pack (ea5c2db)
      • Apply momo to gix::reference (3c205ab)
      • Apply momo to gix::pathspec (767ec2d)
      • Apply momo to mod gix::open::repository (3ce0144)
      • Apply momo to gix::object::tree (d835526)
      • Apply momo to mod gix::init (46a9dfe)
      • Apply momo to mod gix::discover (58fbb08)
      • Thanks clippy (5044c3b)
      • Imrpove git2 mapping by using aliases. (6194ebe)
      • Merge branch 'gix-submodule' (363ee77) </details>
    Open source →
  45. 0.52.0 22 Aug 2023
    Release notes

    New Features

    • <csr-id-28249bda58b56af340c7d6af883496c3bb2d6804/> add Worktree::pathspec() to easily get worktree-scoped pathspec searches.
    • <csr-id-59bb3c4109c4e7f1977cea602293be85b7d14a8a/> add Submodule type to represent a declared submodule.
    • <csr-id-a7d0e441b2326520ae467e83e045302792e6bcd0/> pathspec_search([specs]) to instantiate a search using pathspecs. It can be used to for filtering input paths. This type also makes filtering index entries easy.
    • <csr-id-77da01456118227a59b654f32c15eeb1e5e19cd9/> make gix-pathspec crate available
    • <csr-id-5c13459721eabb9d0746899a2498a104ddbdae59/> add Commit::signature() to yield the PGP sigature of a commit, if present.

    Bug Fixes

    • <csr-id-c51c8daee1ab54130ae3ed83ce67d08f01c4881a/> fix incorrect s/git-config/gix-config/ 3a861c8f049f6502d3bcbdac752659aa1aeda46a just blindly replaced any occurence of "git-config" or "git_config" with "gix-config"/"gix_config".

      There is no such thing as a gix-config file. gix-config is a git-config file parser.

    New Features (BREAKING)

    • <csr-id-b1e55d6f9e4c0d78f0cdeb7b85e09c2eb7032ced/> Repository::prefix() turns Option<Result into Result<Option. This makes it easier for the caller as they won't have to call transpose anymore.

    • <csr-id-46225c2bc399e6db5a56b522c978e0d1fac163df/> improve interrupt::init_handler() to be usable from multiple threads Previously it was geared towards applications which would initialize handlers only from the main thread.

      Now the API supports multiple threads.

    Bug Fixes (BREAKING)

    • <csr-id-430e58cd1efef0044fc36b23de019156a21f947c/> Repository::prefix() is now side-effect free and won't error if CWD is outside of working tree dir. This makes it more usable, especially in contexts where many repositories are held, possibly with changing current working dirs.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 32 commits contributed to the release over the course of 18 calendar days.
    • 20 days passed between releases.
    • 9 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-url v0.22.0, gix-credentials v0.18.0, gix-diff v0.34.0, gix-discover v0.23.0, gix-ignore v0.6.0, gix-bitmap v0.2.7, gix-index v0.22.0, gix-mailmap v0.17.0, gix-negotiate v0.6.0, gix-pack v0.41.0, gix-odb v0.51.0, gix-pathspec v0.1.0, gix-packetline v0.16.5, gix-transport v0.35.0, gix-protocol v0.38.0, gix-revision v0.20.0, gix-refspec v0.16.0, gix-submodule v0.2.0, gix-worktree v0.24.0, gix-worktree-state v0.1.0, gix v0.52.0, gitoxide-core v0.31.0, gitoxide v0.29.0 (6c62e74)
      • Release gix-date v0.7.3, gix-hash v0.12.0, gix-features v0.33.0, gix-actor v0.25.0, gix-object v0.35.0, gix-path v0.9.0, gix-glob v0.11.0, gix-quote v0.4.7, gix-attributes v0.17.0, gix-command v0.2.9, gix-packetline-blocking v0.16.5, gix-filter v0.3.0, gix-fs v0.5.0, gix-commitgraph v0.19.0, gix-hashtable v0.3.0, gix-revwalk v0.6.0, gix-traverse v0.31.0, gix-worktree-stream v0.3.0, gix-archive v0.3.0, gix-config-value v0.13.0, gix-tempfile v8.0.0, gix-lock v8.0.0, gix-ref v0.35.0, gix-sec v0.9.0, gix-config v0.28.0, gix-prompt v0.6.0, gix-url v0.22.0, gix-credentials v0.18.0, gix-diff v0.34.0, gix-discover v0.23.0, gix-ignore v0.6.0, gix-bitmap v0.2.7, gix-index v0.22.0, gix-mailmap v0.17.0, gix-negotiate v0.6.0, gix-pack v0.41.0, gix-odb v0.51.0, gix-pathspec v0.1.0, gix-packetline v0.16.5, gix-transport v0.35.0, gix-protocol v0.38.0, gix-revision v0.20.0, gix-refspec v0.16.0, gix-submodule v0.2.0, gix-worktree v0.24.0, gix-worktree-state v0.1.0, gix v0.52.0, gitoxide-core v0.31.0, gitoxide v0.29.0, safety bump 41 crates (30b2761)
      • Update changelogs prior to release (f23ea88)
      • Merge branch 'gix-submodule' (8f3f358)
      • Make sure that submodule hashes aren't attached as the parent repo is the wrong one here. (c96f26b)
      • Properly isolate environment variable based tests into their own binary (c35ddab)
      • Just fmt (0d258f4)
      • Merge branch 'submodule-in-gix' (36f7b78)
      • Adapt to changes in gix (9fe3052)
      • Add Worktree::pathspec() to easily get worktree-scoped pathspec searches. (28249bd)
      • Add Submodule type to represent a declared submodule. (59bb3c4)
      • Merge branch 'worktree-organization' (8d0d8e0)
      • Adapt to changes in gix-worktree (e5717e1)
      • Merge pull request #988 from not-my-profile/fix-gix-config-sub (7735047)
      • Fix incorrect s/git-config/gix-config/ (c51c8da)
      • Merge branch 'submodule-active' (a3afaa4)
      • Adapt to changes in gix-url (f8fc662)
      • pathspec_search([specs]) to instantiate a search using pathspecs. (a7d0e44)
      • Repository::prefix() is now side-effect free and won't error if CWD is outside of working tree dir. (430e58c)
      • Merge branch 'pathspec-matching' (9f4dfe0)
      • Repository::prefix() turns Option<Result into Result<Option. (b1e55d6)
      • Make gix-pathspec crate available (77da014)
      • Merge branch 'handlers-mt' (f584d76)
      • Improve interrupt::init_handler() to be usable from multiple threads (46225c2)
      • Merge branch 'extract-signatures' (b37affe)
      • Add Commit::signature() to yield the PGP sigature of a commit, if present. (5c13459)
      • Release gix-glob v0.10.2, gix-date v0.7.2, gix-validate v0.8.0, gix-object v0.34.0, gix-ref v0.34.0, gix-config v0.27.0, gix-commitgraph v0.18.2, gix-revwalk v0.5.0, gix-revision v0.19.0, gix-refspec v0.15.0, gix-submodule v0.1.0, safety bump 18 crates (4604f83)
      • Merge branch 'submodules' (b629f8a)
      • More idiomatic use of config.section_by_name() (0a584ee)
      • Adjust to changes in gix-validate (a8bc0de)
      • Merge branch 'dev-on-linux' (6b4a303)
      • Fix various tests to run properly on linux (ef8ccd9) </details>
    Open source →
  46. 0.51.0 02 Aug 2023
    Release notes

    This is mostly a bug-fix release with many improvements for fetching, along with more forgiving commit parsing.

    New Features

    • <csr-id-d9e551b44aa3e84109660328de7637d465d59578/> Add Reference::follow() as a way to peel symbolic refs step by step.

    Bug Fixes (BREAKING)

    • <csr-id-74ce8639e88db5107691e9279df2bbfd38d26de3/> handle symbolic ref updates far more gracefully and with more logical consistency. Previously, refspecs couldn't be used to update sybolic references locally, particularly because the logic to do so correctly isn't trivial and git itself also seems to cover only the most common cases.

      However, the logic now changed so that remote updates will only be rejected if

      • fast-forward rules are violated
    • the local ref is currently checked out
    • existing refs would not become 'unborn', i.e. point to a reference that doesn't exist and won't be created due to ref-specs

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 7 commits contributed to the release over the course of 2 calendar days.
    • 9 days passed between releases.
    • 2 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-actor v0.24.2, gix-object v0.33.2, gix-ref v0.33.3, gix-config v0.26.2, gix-prompt v0.5.5, gix-odb v0.50.2, gix-transport v0.34.2, gix-protocol v0.37.0, gix-worktree v0.23.1, gix v0.51.0, safety bump 3 crates (231ac1c)
      • Prepare additional changelogs (db63815)
      • Prepare changelogs (e4d2890)
      • Merge branch 'fixes-and-improvements' (f8b1f55)
      • Handle symbolic ref updates far more gracefully and with more logical consistency. (74ce863)
      • Adapt to changes in gix-protocol (df81076)
      • Add Reference::follow() as a way to peel symbolic refs step by step. (d9e551b) </details>
    Open source →
  47. 0.50.1 24 Jul 2023
    Release notes

    Bug Fixes

    • <csr-id-145f8658a32c46db1f54d3098cf9371fe6eeec5e/> Tree::lookup_entry(_by_path)() now actually works Previously it was lacking a test and that showed.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 3 commits contributed to the release.
    • 2 days passed between releases.
    • 1 commit was understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-archive v0.2.1, gix-ref v0.33.2, gix-pack v0.40.2, gix v0.50.1 (13883e5)
      • Prepare changelogs (735c206)
      • Tree::lookup_entry(_by_path)() now actually works (145f865) </details>
    Open source →
  48. 0.50.0 22 Jul 2023
    Release notes

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 4 commits contributed to the release over the course of 12 calendar days.
    • 22 days passed between releases.
    • 0 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Merge pull request #2374 from GitoxideLabs/gix-error (25233ce)
      • Turn Exn::into_box() to Exn::into_inner(). (939b8fc)
      • Merge pull request #2352 from GitoxideLabs/gix-error (ae23762)
      • Adadpt exn to most pressing needs of gitoxide (abedade) </details>
    Open source →
    Release notes

    New Features

    • <csr-id-caa8fb9502906fa47546c26bbeb3c546664ad944/> TreeEntryRefExt and TreeEntryExt to be able to easily attach a repo to it. Also, add detach() to types that were missing it.
    • <csr-id-62cacd4b7a9fc0c0e4c5049f6d0aa7011c8ef923/> Tree::find_entry() to easily find an entry in a tree's entries.
    • <csr-id-c4a1fb1ba461c28ac3ea2482adf5f75721d14706/> add Repository::archive() as extra It implements a high-level interface to achieve git archive like functionality.
    • <csr-id-4ee285741e6e1cde3a967980fbf48bab20ddbf68/> optionally make gix-workspace-stream available via Repository::worktree_stream() That way it's easy to obtain a representation of the worktree in a fully streaming fashion, which is also the basis for archive-like functionality.

    New Features (BREAKING)

    • <csr-id-d5e4ee0e6e26ff3feeed1f5aee5bdd0cdc03d1f8/> unify API between object::tree::Entry and object::tree::EntryRef<'_>

    Bug Fixes (BREAKING)

    • <csr-id-8cad009eafe8e1054a715dc99bb9a884325d5ea5/> Tree::lookup_entry(_by_path))() are not mutating anymore; add Tree::peel_to_entry() and peel_to_entry_by_path() The previous implementation was a crutch that could now be circumvented.

      The new methods allow to reuse a buffer in case the object isn't used or needed further, possibly saving allocations.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 18 commits contributed to the release over the course of 1 calendar day.
    • 3 days passed between releases.
    • 6 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-config v0.26.1, gix v0.50.0 (d34a4ea)
      • Release gix-diff v0.33.1, gix-discover v0.22.1, gix-ignore v0.5.1, gix-bitmap v0.2.6, gix-index v0.21.1, gix-mailmap v0.16.1, gix-negotiate v0.5.1, gix-pack v0.40.1, gix-odb v0.50.1, gix-packetline v0.16.4, gix-transport v0.34.1, gix-protocol v0.36.1, gix-revision v0.18.1, gix-refspec v0.14.1, gix-worktree v0.23.0, gix v0.50.0 (0062971)
      • Release gix-tempfile v7.0.2, gix-utils v0.1.5, gix-lock v7.0.2, gix-ref v0.33.1, gix-sec v0.8.4, gix-prompt v0.5.4, gix-url v0.21.1, gix-credentials v0.17.1, gix-diff v0.33.1, gix-discover v0.22.1, gix-ignore v0.5.1, gix-bitmap v0.2.6, gix-index v0.21.1, gix-mailmap v0.16.1, gix-negotiate v0.5.1, gix-pack v0.40.1, gix-odb v0.50.1, gix-packetline v0.16.4, gix-transport v0.34.1, gix-protocol v0.36.1, gix-revision v0.18.1, gix-refspec v0.14.1, gix-worktree v0.23.0, gix v0.50.0 (107a64e)
      • Release gix-features v0.32.1, gix-actor v0.24.1, gix-validate v0.7.7, gix-object v0.33.1, gix-path v0.8.4, gix-glob v0.10.1, gix-quote v0.4.6, gix-attributes v0.16.0, gix-command v0.2.8, gix-packetline-blocking v0.16.4, gix-filter v0.2.0, gix-fs v0.4.1, gix-chunk v0.4.4, gix-commitgraph v0.18.1, gix-hashtable v0.2.4, gix-revwalk v0.4.1, gix-traverse v0.30.1, gix-worktree-stream v0.2.0, gix-archive v0.2.0, gix-config-value v0.12.5, gix-tempfile v7.0.1, gix-utils v0.1.5, gix-lock v7.0.2, gix-ref v0.33.1, gix-sec v0.8.4, gix-prompt v0.5.4, gix-url v0.21.1, gix-credentials v0.17.1, gix-diff v0.33.1, gix-discover v0.22.1, gix-ignore v0.5.1, gix-bitmap v0.2.6, gix-index v0.21.1, gix-mailmap v0.16.1, gix-negotiate v0.5.1, gix-pack v0.40.1, gix-odb v0.50.1, gix-packetline v0.16.4, gix-transport v0.34.1, gix-protocol v0.36.1, gix-revision v0.18.1, gix-refspec v0.14.1, gix-worktree v0.23.0, gix v0.50.0, safety bump 5 crates (16295b5)
      • Prepare more changelogs (c4cc5f2)
      • Release gix-date v0.7.1, gix-hash v0.11.4, gix-trace v0.1.3, gix-features v0.32.0, gix-actor v0.24.0, gix-validate v0.7.7, gix-object v0.33.0, gix-path v0.8.4, gix-glob v0.10.0, gix-quote v0.4.6, gix-attributes v0.15.0, gix-command v0.2.7, gix-packetline-blocking v0.16.3, gix-filter v0.1.0, gix-fs v0.4.0, gix-chunk v0.4.4, gix-commitgraph v0.18.0, gix-hashtable v0.2.4, gix-revwalk v0.4.0, gix-traverse v0.30.0, gix-worktree-stream v0.2.0, gix-archive v0.2.0, gix-config-value v0.12.4, gix-tempfile v7.0.1, gix-utils v0.1.5, gix-lock v7.0.2, gix-ref v0.33.0, gix-sec v0.8.4, gix-prompt v0.5.3, gix-url v0.21.0, gix-credentials v0.17.0, gix-diff v0.33.0, gix-discover v0.22.0, gix-ignore v0.5.0, gix-bitmap v0.2.6, gix-index v0.21.0, gix-mailmap v0.16.0, gix-negotiate v0.5.0, gix-pack v0.40.0, gix-odb v0.50.0, gix-packetline v0.16.4, gix-transport v0.34.0, gix-protocol v0.36.0, gix-revision v0.18.0, gix-refspec v0.14.0, gix-worktree v0.22.0, gix v0.49.1 (5cb3589)
      • Update changelogs prior to release (2fc66b5)
      • Merge branch 'improvements-for-crates-index' (3f914e8)
      • TreeEntryRefExt and TreeEntryExt to be able to easily attach a repo to it. (caa8fb9)
      • Tree::find_entry() to easily find an entry in a tree's entries. (62cacd4)
      • Tree::lookup_entry(_by_path))() are not mutating anymore; add Tree::peel_to_entry() and peel_to_entry_by_path() (8cad009)
      • Unify API between object::tree::Entry and object::tree::EntryRef<'_> (d5e4ee0)
      • J fmt (57cab40)
      • Merge branch 'gix-archive' (1dda48b)
      • Change archive implementation to require the seek bound. (61aed0e)
      • Add Repository::archive() as extra (c4a1fb1)
      • Optionally make gix-workspace-stream available via Repository::worktree_stream() (4ee2857)
      • Update license field following SPDX 2.1 license expression standard (9064ea3) </details>
    Open source →
  49. 0.49.1 19 Jul 2023
    Release notes

    A maintenance release without user-facing changes.

    Commit Statistics

    <csr-read-only-do-not-edit/>

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

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-prompt v0.5.3, gix v0.49.1, cargo-smart-release v0.20.0 (f069852)
      • Prepare changelogs prior to release (849f508)
      • Merge branch 'smart-release-stability' (8629f56)
      • Update git2 API mapping and be clear what stability means as well. (64cd396) </details>
    Open source →
  50. 0.49.0 19 Jul 2023
    Release notes

    <csr-id-c548780e6ea49453ecdb45b11bf4c5781b105e6b/>

    New Features

    • <csr-id-980c2ba591dce7fc787c418aed85078c19e2d6d4/> Make EntryMode available from gix::object::tree. Previously one had to go through gix::objs::tree which wasn't symmetric with gix::object::Kind.
    • <csr-id-d4a8f8cf6d8b059978719ea314fc8a4bfe26c60d/> Add Id::header() and Id::try_header() as syblings to ::object() and ::try_object(). With the new header related functions one can obtain information about an object more quickly.
    • <csr-id-b73435b3bf334d5be2931c2ea6a597a9dd51b783/> Repository::header() and ::try_header() to learn about objects, quickly Accessing just the headers of an object is much faster than accessing the entire object. Previously, this method was only available on the objects field, now it's available through Repository directly.
    • <csr-id-c05eb2204620a5ff5e04b766009c873a14ae0f9e/> top-level examples that represent fully-fledged command-line applications. Please note that these are just examples, which aren't necessarily production ready in terms of quality or performance.
    • <csr-id-8cc106aa430d39ac9967dcfb3d293725fc76cb79/> checkouts when cloning now respect attributes and use filters.
    • <csr-id-8993b777cd0331e7260d7d7d1f820afc79a34b19/> add Repository::filter_pipeline() to obtain a primitive to handle data conversions. It's fully configured as git would, and can be used to convert data from git or to git.

    Bug Fixes

    • <csr-id-47ca8465e04bdd13fe2ebfc6f012f8191e3f7896/> properly re-initialize object caches after their configuration changes.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 28 commits contributed to the release over the course of 11 calendar days.
    • 20 days passed between releases.
    • 8 commits were understood as conventional.
    • 1 unique issue was worked on: #925

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #925
      • Remove all copies of repo-initialization files and rework them to be our own. (5ac2269)
    • Uncategorized
      • Release gix-filter v0.1.0, gix-ignore v0.5.0, gix-revwalk v0.4.0, gix-traverse v0.30.0, gix-index v0.21.0, gix-mailmap v0.16.0, gix-negotiate v0.5.0, gix-pack v0.40.0, gix-odb v0.50.0, gix-transport v0.34.0, gix-protocol v0.36.0, gix-revision v0.18.0, gix-refspec v0.14.0, gix-worktree v0.22.0, gix v0.49.0 (4aca8c2)
      • Release gix-features v0.32.0, gix-actor v0.24.0, gix-glob v0.10.0, gix-attributes v0.15.0, gix-commitgraph v0.18.0, gix-config-value v0.12.4, gix-fs v0.4.0, gix-object v0.33.0, gix-ref v0.33.0, gix-config v0.26.0, gix-command v0.2.7, gix-url v0.21.0, gix-credentials v0.17.0, gix-diff v0.33.0, gix-discover v0.22.0, gix-filter v0.1.0, gix-ignore v0.5.0, gix-revwalk v0.4.0, gix-traverse v0.30.0, gix-index v0.21.0, gix-mailmap v0.16.0, gix-negotiate v0.5.0, gix-pack v0.40.0, gix-odb v0.50.0, gix-transport v0.34.0, gix-protocol v0.36.0, gix-revision v0.18.0, gix-refspec v0.14.0, gix-worktree v0.22.0, gix v0.49.0 (68ae3ff)
      • Adjust package versions (by cargo-smart-release) (c70e54f)
      • Prepare changelogs prior to release (e4dded0)
      • Just fmt (a063c62)
      • Merge branch 'adjustments-for-crates-index' (b82868d)
      • Make EntryMode available from gix::object::tree. (980c2ba)
      • Add Id::header() and Id::try_header() as syblings to ::object() and ::try_object(). (d4a8f8c)
      • Repository::header() and ::try_header() to learn about objects, quickly (b73435b)
      • Properly re-initialize object caches after their configuration changes. (47ca846)
      • Top-level examples that represent fully-fledged command-line applications. (c05eb22)
      • Cargo fmt (6121b8f)
      • git log example include empty parents and paths (bd59bbe)
      • git log example now accepts multiple paths. (0df9f70)
      • git log example filter for min/max parents (01e9c29)
      • git log example iterator now properly lazy (8a6f1e8)
      • git log example now shows merge parents (5cbb6a7)
      • A git log example (03b3423)
      • A git ls-tree example (6f4b431)
      • Thanks clippy (3ef32af)
      • Merge branch 'unique-templates' (cbb0db8)
      • Adapt journey tests to changes in init templates (6297d22)
      • Merge branch 'integrate-filtering' (b19a56d)
      • Checkouts when cloning now respect attributes and use filters. (8cc106a)
      • Add Repository::filter_pipeline() to obtain a primitive to handle data conversions. (8993b77)
      • Move error structs into repository module where appropriate. (c548780)
      • Add keys required to deal with worktree conversions and filters. (3fbd7b0) </details>
    Open source →
  51. 0.48.0 29 Jun 2023
    Release notes

    <csr-id-fb63f3f07f0f9545be5942bcb66b06040fbc7fe9/> <csr-id-3c8e3c1e88d36657d4e6eeaf0819be7fd9341ae1/>

    The main feature of this release is support dates prior to the UNIX epoch. Note that this is a feature that isn't supported by git, but only by libgit2.

    Bug Fixes

    • <csr-id-9cfc4aa318bc44c9e4310db7d3764b015472e1af/> use type for time consistently. This will allow it to be changed more easily later.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 15 commits contributed to the release over the course of 6 calendar days.
    • 7 days passed between releases.
    • 3 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-transport v0.33.1, gix v0.48.0 (f27ca12)
      • Release gix-lock v7.0.1, gix v0.48.0 (5ce81ef)
      • Release gix-glob v0.9.1, gix-attributes v0.14.1, gix-config-value v0.12.3, gix-ref v0.32.1, gix-sec v0.8.3, gix-config v0.25.1, gix-url v0.20.1, gix-credentials v0.16.1, gix-discover v0.21.1, gix-ignore v0.4.1, gix-pack v0.39.1, gix-odb v0.49.1, gix-worktree v0.21.1, gix v0.48.0 (69c6a36)
      • Release gix-features v0.31.1, gix-path v0.8.3, gix v0.48.0 (9ca3464)
      • Release gix-date v0.7.0, gix-trace v0.1.2, gix-actor v0.23.0, gix-commitgraph v0.17.1, gix-utils v0.1.4, gix-object v0.32.0, gix-ref v0.32.0, gix-config v0.25.0, gix-diff v0.32.0, gix-discover v0.21.0, gix-hashtable v0.2.3, gix-revwalk v0.3.0, gix-traverse v0.29.0, gix-index v0.20.0, gix-mailmap v0.15.0, gix-negotiate v0.4.0, gix-pack v0.39.0, gix-odb v0.49.0, gix-protocol v0.35.0, gix-revision v0.17.0, gix-refspec v0.13.0, gix-worktree v0.21.0, gix v0.48.0, safety bump 20 crates (27e8c18)
      • Prepare changelogs prior to release (00f96fb)
      • Merge branch 'i64-times' (b407461)
      • Add incomplete mapping of typical git2 functions and their counterpart in gix. (fb63f3f)
      • Adapt to changes in gix-date (fba45c6)
      • Use type for time consistently. (9cfc4aa)
      • Add a test to see what happens if negative dates are used in commits (57a5cd1)
      • Make clear what can happen if rewrite-tracking isn't disabled if it is not desired. (3c8e3c1)
      • More tracing information when updating refs (6906e0d)
      • Add more details for negotation phases (8341d08)
      • Add a span for each negotiation round (ec73479) </details>
    Open source →
  52. 0.47.0 22 Jun 2023
    Release notes

    <csr-id-6f469a6fea59c88e6c69a5f94b0bc8a5977cb75b/>

    New Features

    • <csr-id-924cd62f7ef74f479114c80cee0db0ba5f522579/> allow credential fill with gix credential fill to run without a repo

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 5 commits contributed to the release.
    • 31 days passed between releases.
    • 2 commits were understood as conventional.
    • 1 unique issue was worked on: #2198

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #2198
      • Allow credential fill with gix credential fill to run without a repo (924cd62)
    • Uncategorized
      • Merge pull request #2254 from ralphmodales/credential-fill-fix (dba337d)
      • Merge pull request #2204 from cruessler/improve-blame-ranges (663b41e)
      • Merge pull request #2230 from yuki0iq/doc_auto_cfg (fbf9c39)
      • Remove doc_auto_cfg feature to fix docs.rs documentation. (6f469a6) </details>
    Open source →
    Release notes

    <csr-id-bcad5c22049d56a25ef69d6c7a3344e78f9a1d4d/>

    New Features

    • <csr-id-3cffa268460eb2d41bd6a30d45778b88db4ec602/> provide basic tracing spans for common operations. This is just the beginning and more crates will integrate with it over time.
    • <csr-id-47c7b0dff9ca82e7c0c60b1dcf1d120f7bec7955/> expose hashtable in root for access to optimized-for-object-ids sets and maps.

    Bug Fixes

    • <csr-id-67c06d99dc8387ce566c2fe436c28cdaa041bf07/> make sure empty packs in shallow clones are working as well.

    • <csr-id-db69e31d8bb73aba886a9a323bfa154a23deacf8/> no-want detection for negotiation phase is now consistent. It being inconsistent was a reason for 'failing to parse server response' which was empty as we didn't provide any wants to the server, but didn't detect that case in the initial negotiation-preparation phase.

      Turns out we didn't detect it as our special handling of implicit tags was not done in the negotiation-preparation phase.

      The fix consists of unifying the filtering phase to all places that needed, so the preparation phase outcome is now consistent with what would have come later.

    New Features (BREAKING)

    • <csr-id-682def03ce6ec93d7bcd2f79eedea52021b77f03/> provide fetch::outcome::Negotiate for details on what happened during negotiation. We also remove the negotiation_rounds field in favor of a far more detailed fetch::outcome::Negotiate struct.
    • <csr-id-574e0f4786719bd56da2fa218772f879fda282bf/> respect the core.commitGraph option. Previously, we would always use the commitgraph when available, but now we only do so if the core.commitGraph option is set.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 22 commits contributed to the release over the course of 11 calendar days.
    • 12 days passed between releases.
    • 7 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-date v0.6.0, gix-hash v0.11.3, gix-trace v0.1.1, gix-features v0.31.0, gix-actor v0.22.0, gix-path v0.8.2, gix-glob v0.9.0, gix-quote v0.4.5, gix-attributes v0.14.0, gix-chunk v0.4.3, gix-commitgraph v0.17.0, gix-config-value v0.12.2, gix-fs v0.3.0, gix-tempfile v7.0.0, gix-utils v0.1.3, gix-lock v7.0.0, gix-validate v0.7.6, gix-object v0.31.0, gix-ref v0.31.0, gix-sec v0.8.2, gix-config v0.24.0, gix-command v0.2.6, gix-prompt v0.5.2, gix-url v0.20.0, gix-credentials v0.16.0, gix-diff v0.31.0, gix-discover v0.20.0, gix-hashtable v0.2.2, gix-ignore v0.4.0, gix-bitmap v0.2.5, gix-revwalk v0.2.0, gix-traverse v0.28.0, gix-index v0.19.0, gix-mailmap v0.14.0, gix-negotiate v0.3.0, gix-pack v0.38.0, gix-odb v0.48.0, gix-packetline v0.16.3, gix-transport v0.33.0, gix-protocol v0.34.0, gix-revision v0.16.0, gix-refspec v0.12.0, gix-worktree v0.20.0, gix v0.47.0, gitoxide-core v0.29.0, gitoxide v0.27.0, safety bump 30 crates (ea9f942)
      • Prepare changelogs prior to release (18b0a37)
      • Add a span for another potentially expensive portion of the negotiation (f2e7ec4)
      • just fmt (871dd0b)
      • Merge branch 'corpus' (aa16c8c)
      • Change MSRV to 1.65 (4f635fc)
      • Provide basic tracing spans for common operations. (3cffa26)
      • Merge branch 'gix-revision-graph' (036e60a)
      • Expose hashtable in root for access to optimized-for-object-ids sets and maps. (47c7b0d)
      • Provide fetch::outcome::Negotiate for details on what happened during negotiation. (682def0)
      • Merge branch 'fix-no-want-detection' (71efcbb)
      • Make sure empty packs in shallow clones are working as well. (67c06d9)
      • No-want detection for negotiation phase is now consistent. (db69e31)
      • Merge branch 'help-874-redundant-closures' (fe59956)
      • Add clippy::redundant-closure-for-method-calls lint (bcad5c2)
      • Merge branch 'future-dates' (8d2e6a9)
      • Respect the core.commitGraph option. (574e0f4)
      • Adapt to changes in gix-revision/gix-revwalk (1fdaf71)
      • Adapt to changes in gix-protocol (b785e81)
      • Adapt to changes in gix-traverse (b447f47)
      • Adapt to changes in gix-actor (4a80e86)
      • Adapt to changes in gix-date (d575336) </details>
    Open source →
  53. 0.46.0 10 Jun 2023
    Release notes

    New Features

    • <csr-id-aacc326a198e4c78dd546018eebaff192ff5223d/> add a gix commit sign prototype
    • <csr-id-58b5060958e0090773bb15ffb3679d99704b70a0/> add first debug version of gix branch list

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 14 commits contributed to the release over the course of 60 calendar days.
    • 99 days passed between releases.
    • 2 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Merge pull request #2208 from cruessler/add-commit-signing (8699d0f)
      • Refactor (82f788e)
      • Add a gix commit sign prototype (aacc326)
      • Merge pull request #2217 from GitoxideLabs/copilot/update-msrv-to-rust-1-82 (4da2927)
      • Update MSRV to 1.82 and replace once_cell with std equivalents (6cc8464)
      • Adapt to change in gix-blame (a721e74)
      • Adapt to change in gix-blame (268dac4)
      • Merge pull request #2142 from cruessler/add-branch-list (525873f)
      • Fix copy-paste doc comment (04650a7)
      • Move --all to 'branch list' (6651548)
      • Refactor (e537611)
      • Add first debug version of gix branch list (58b5060)
      • Merge pull request #2106 from cruessler/add-open-with-environment-overrides (c149116)
      • Fail gix tag list when JSON is requested (fb2766b) </details>
    Open source →
    Release notes

    <csr-id-f0ddc3b9c5a34b7930b965dfb1438f95279a8bde/>

    New Features (BREAKING)

    • <csr-id-7e9f202746d4376332f9779c6e4bd67933d618c7/> revision::Walk yields revision::Info structs instead of Ids. This enables re-use of information that was already obtained, like the parents of a commit and possibly its commit-time.

    Changed (BREAKING)

    • <csr-id-068603a4b7a52eaa397d61212e7aec5a0195ac29/> rename Repository::commit_graph() to ::revision_graph(). THat's a better fix given its locaion in gix-revision, while differentiating it further from the lower-level commit-graph.

      Also rename Repository::commit_cache() to ::commit_graph() now that the name is free.

    New Features

    • <csr-id-b2b88dc11d1b745e787596e9b94122238ccaf34c/> use the commitgraph if possible and allow its usage to be controlled via revision::walk::Platform::use_commit_graph(toggle). The commitgraph is a data structure to greatly accelerate commit walks. It is now supported and used by default, but can be deactivated if desired.

      Further, add Repository::commit_cache() for direct access to just the commit-graph datastructure, without the extras provided by gix_revision::Graph.

    • <csr-id-5d320121533d60fc594792da7838a4f9c661dea0/> add Repository::index_or_load_from_head(). That way it's possible to either open the existing worktree index, or create one in-memory by turning our HEAD tree into an index on the fly.

    • <csr-id-2a698fab7323fd5befd14926bcb9cebf09afc312/> make it possible to use config::tree::Key to more conveniently set values via config::SnapshotMut::set()

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 15 commits contributed to the release over the course of 2 calendar days.
    • 4 days passed between releases.
    • 6 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-attributes v0.13.1, gix-diff v0.30.1, gix-revwalk v0.1.0, gix-traverse v0.27.0, gix-index v0.18.0, gix-revision v0.15.2, gix-negotiate v0.2.1, gix-pack v0.37.0, gix-odb v0.47.0, gix-protocol v0.33.2, gix-worktree v0.19.0, gix v0.46.0, safety bump 7 crates (2560a2c)
      • Prepare changelogs prior to release (298f3d7)
      • Improve tests related to the handling of shallow repos (d50bfa9)
      • Merge branch 'walk-with-commitgraph' (fdee9a2)
      • Adapt to changes in gix (20f73c8)
      • revision::Walk yields revision::Info structs instead of Ids. (7e9f202)
      • Rename Repository::commit_graph() to ::revision_graph(). (068603a)
      • Use the commitgraph if possible and allow its usage to be controlled via revision::walk::Platform::use_commit_graph(toggle). (b2b88dc)
      • Adapt to changes in gix-traverse (1f682fd)
      • Adapt to changes in gix-revwalk (f7d95d1)
      • Add Repository::index_or_load_from_head(). (5d32012)
      • gix::revision::walk::Platform now informas about the commitgraph. (f0ddc3b)
      • Update changelog with information for the gix CLI. (4e081f2)
      • Make it possible to use config::tree::Key to more conveniently set values via config::SnapshotMut::set() (2a698fa)
      • Release gix-protocol v0.33.1 (9c99ed3) </details>
    Open source →
  54. 0.45.1 06 Jun 2023
    Release notes

    Bug Fixes

    • <csr-id-9010f586ac46fcea5b8abba8f30a5639ed6b9225/> gix::env::fetch::collate::Error now considers negotiation errors a sign of corrupt git repos. Indeed, all of these negotiation errors are due to failures reading references or objects that ought to be there.

    Commit Statistics

    <csr-read-only-do-not-edit/>

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

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-revision v0.15.1, gix v0.45.1 (11766a0)
      • Merge branch 'adjustments-for-cargo' (04f011c)
      • gix::env::fetch::collate::Error now considers negotiation errors a sign of corrupt git repos. (9010f58) </details>
    Open source →
  55. 0.45.0 06 Jun 2023
    Release notes

    New Features

    • <csr-id-37d3bf24ac1a79302f3e97b97372e4ad381c45e2/> add first debug version of gix tag list

    • <csr-id-ab52a49a555ab25e6cf632cb0b080eab72958a7d/> gix revision list --long-hashes for faster iteration. The performance of the short-hash generation was improved as well.

    • <csr-id-c5bc49f2a02e9b28c2466ea4c7ae711d091ffc96/> support for commitgraph list from..to to exercise the new 'hide' capability.

    • <csr-id-1df1ebb34dd3e2101d8a112dda66f6bac5261ea7/> Enable precious file parsing in gix CLI by default, allow overrides. That's pretty neat as one can now set GIX_PARSE_PRECIOUS=0 in the environment to disable precious file parsing, good to see what difference it makes.

      It's also possible to do this wiht gix -c gitoxide.parsePrecious=0.

    • <csr-id-36a6ffeea7bbde7fb3689ddf2a107e09a50e602c/> add support for multiple blame ranges like gix blame -L <range> -L <other-range> ... Update the blame subcommand to handle multiple line ranges. This allows specifying multiple -L options similar to the usage of git.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 19 commits contributed to the release over the course of 78 calendar days.
    • 80 days passed between releases.
    • 5 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Merge pull request #2073 from cruessler/add-tag-list (c7af04d)
      • Refactor (750ae9b)
      • Add first debug version of gix tag list (37d3bf2)
      • Merge pull request #2062 from rickprice/minor_documentation_fixups (c2eb0c1)
      • Small documentation fixes (bfb1c34)
      • Merge pull request #2041 from cruessler/add-blame-extraction (dd5f0a4)
      • Merge pull request #2051 from GitoxideLabs/improvements (f933f80)
      • gix revision list --long-hashes for faster iteration. (ab52a49)
      • Adapt to changes in gix-blame (4afc51d)
      • Merge pull request #2022 from cruessler/add-rename-tracking-to-blame (76eddf8)
      • Refactor (3e5365c)
      • Merge pull request #2037 from GitoxideLabs/hide (92febae)
      • Support for commitgraph list from..to to exercise the new 'hide' capability. (c5bc49f)
      • Merge pull request #2019 from GitoxideLabs/precious-opt-in (5f9de52)
      • Enable precious file parsing in gix CLI by default, allow overrides. (1df1ebb)
      • Merge pull request #1973 from holodorum/feature/blame-range-support (de13b16)
      • Refactor (d4461e7)
      • Add support for multiple blame ranges like gix blame -L <range> -L <other-range> ... (36a6ffe)
      • Adapt to changes in gix-blame (8143d69) </details>
    Open source →
    Release notes

    <csr-id-dbc6cbb4363c2532f81b0bd6e351c4577bb9e9a3/> <csr-id-9689a08d00e9d54f6bb581660ee99077bd214cb4/>

    The reason for this release is the ability to properly negotiate packs, also across multiple rounds, and with protocol.version 1 or 2, across stateless or stateful transports.

    New Features

    • <csr-id-af0ef2f36736e3805f769d8cd59c9fa7eb6a22a0/> use gix-negotiate in fetch machinery. Thanks to it we are finally able to do pack negotiations just like git can, as many rounds as it takes and with all available algorithms.

      Works for V1 and V2 and for stateless and stateful transports.

    • <csr-id-020ff4e383fc76a255eabf099bb9cf5116a95afa/> Add gitoxide.core.defaultPackCacheMemoryLimit to control memory limits. Previously the 64 slot LRU cache didn't have any limit, now one is implemented that defaults to about 96MB.

    New Features (BREAKING)

    • <csr-id-e011e360fb2db0288f718cb3bb2b28b4652bc8ae/> respect core.useReplaceRefs and remove gitoxide.objects.noReplace. The gitoxide specific variable wasn't needed in the first place.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 33 commits contributed to the release over the course of 40 calendar days.
    • 40 days passed between releases.
    • 5 commits were understood as conventional.
    • 1 unique issue was worked on: #851

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #851
      • Add gitoxide.core.defaultPackCacheMemoryLimit to control memory limits. (020ff4e)
    • Uncategorized
      • Release gix-date v0.5.1, gix-hash v0.11.2, gix-features v0.30.0, gix-actor v0.21.0, gix-path v0.8.1, gix-glob v0.8.0, gix-quote v0.4.4, gix-attributes v0.13.0, gix-chunk v0.4.2, gix-commitgraph v0.16.0, gix-config-value v0.12.1, gix-fs v0.2.0, gix-tempfile v6.0.0, gix-utils v0.1.2, gix-lock v6.0.0, gix-validate v0.7.5, gix-object v0.30.0, gix-ref v0.30.0, gix-sec v0.8.1, gix-config v0.23.0, gix-command v0.2.5, gix-prompt v0.5.1, gix-url v0.19.0, gix-credentials v0.15.0, gix-diff v0.30.0, gix-discover v0.19.0, gix-hashtable v0.2.1, gix-ignore v0.3.0, gix-bitmap v0.2.4, gix-traverse v0.26.0, gix-index v0.17.0, gix-mailmap v0.13.0, gix-revision v0.15.0, gix-negotiate v0.2.0, gix-pack v0.36.0, gix-odb v0.46.0, gix-packetline v0.16.2, gix-transport v0.32.0, gix-protocol v0.33.0, gix-refspec v0.11.0, gix-worktree v0.18.0, gix v0.45.0, safety bump 29 crates (9a9fa96)
      • just fmt (ffc1276)
      • Prepare changelogs prior to release (8f15cec)
      • Merge branch 'integrate-gix-negotiate' (ae845de)
      • Add test to validate alternates in the context of fetching (ae1bc41)
      • Use gix-negotiate in fetch machinery. (af0ef2f)
      • Respect core.useReplaceRefs and remove gitoxide.objects.noReplace. (e011e36)
      • Thanks clippy (9525ac8)
      • Merge branch 'fix-docs' (420553a)
      • Minor fixes (89a8cfe)
      • Cleaning up documentation (2578e57)
      • Move Kind into repository::Kind. (9689a08)
      • Merge branch 'auto-clippy' (dbf8aa1)
      • Autofix map-or-unwrap clippy lint (and manual fix what was left) (2087032)
      • Merge branch 'main' into auto-clippy (3ef5c90)
      • Merge pull request #864 from nyurik/lint-fmt (279dc09)
      • Merge branch 'blinxen/main' (9375cd7)
      • Inline format args (dbc6cbb)
      • Include license files in all crates (facaaf6)
      • Merge branch 'consecutive-negotiation' (97b3f7e)
      • Release gix-commitgraph v0.15.0, gix-revision v0.14.0, gix-negotiate v0.1.0, safety bump 7 crates (92832ca)
      • Merge branch 'consecutive-negotiation' (4507f94)
      • Adapt to changes in gix-revision (56f4d30)
      • Refactor (f4245f4)
      • Merge branch 'fix-851' (2f275d5)
      • Adjust to changes in gix-pack (215889c)
      • Support reading the fetch algorithm from configuration (33b7770)
      • Release gix-object v0.29.2 (4f879bf)
      • Release gix-discover v0.18.1, gix-worktree v0.17.1, gix-testtools v0.12.0 (f7b6c6f)
      • Release gix-index v0.16.1 (08c6f9d)
      • Release gix-ref v0.29.1 (13e01f5)
      • Improve docs for Shallow (3d95bb7) </details>
    Open source →
  56. 0.44.1 27 Apr 2023
    Release notes

    A maintenance release without user-facing changes. It's meant to fix breakage that occurred when publishing a breaking change in gix-path by accident.

    Commit Statistics

    <csr-read-only-do-not-edit/>

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

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-path v0.8.0, gix-glob v0.7.0, gix-attributes v0.12.0, gix-config-value v0.12.0, gix-ref v0.29.0, gix-sec v0.8.0, gix-config v0.22.0, gix-prompt v0.5.0, gix-url v0.18.0, gix-credentials v0.14.0, gix-discover v0.18.0, gix-ignore v0.2.0, gix-pack v0.35.0, gix-odb v0.45.0, gix-transport v0.31.0, gix-protocol v0.32.0, gix-refspec v0.10.1, gix-worktree v0.17.0, gix v0.44.1 (7ebc9f7)
      • Prepare changelogs prior to release (0135158)
      • Bump gix-path v0.8.0, safety bump 20 crates (gix set to 0.44.1 manually) (43ebaf2) </details>
    Open source →
  57. 0.44.0 26 Apr 2023 withdrawn
    Release notes

    New Features

    • <csr-id-08e8fc2152794652ba1c986df493c2ac915af9e7/> gix index entries also prints attributes.
    • <csr-id-bc28443e452c4de81368739a11a2482ae0a93485/> add Repository::attributes() and Worktree::attributes().
    • <csr-id-40a1b7444ba9d9b61a1c22a7f25662eec3c25a1b/> add index.threads configuration to gix::config::tree
    • <csr-id-afe7faa14afb2ec4934f204e01ed12bcd0b3e786/> Before writing new objects, check if they exist. That way we safe expensive IO at the cost of some CPU.
    • <csr-id-037f52d4099e239c28210476ad7ab57d22aa3626/> add Object::into_tag() and Tag::decode() methods. This makes the API more symmetric as similar methods exist for commits and trees.
    • <csr-id-35cb6b42bd8071e5e5c16ed6d37884deea524330/> Allow USE_NSEC and USE_STDEV compile time flags to configured at runtime. Right now git may be compiled without these capabilities, even though on some platforms it might make perfect sense to enable them by default or enable them on a per repository basis. This is now possible thanks to added gitoxide specific functions.
    • <csr-id-358500f0efaec7c67b307a6a1aa27ecad7502eb7/> open::Options now allow controlling where gitattributes files are loaded from. That way it's possible to, for example, isolate all operations that rely on the gitattribute system, like checkouts or additions to the index.
    • <csr-id-ec93f75cfdf6cbd617c4a92eefae97f2c7736d65/> revision::walk::Platform::selected(filter) to selectively prune parts of the commit graph.

    Bug Fixes

    • <csr-id-2cd5054b0a1994571a25a49193449904cfd30b50/> When removing all shallow commits from shallow file, delete it. Previously it would leave an empty file, which will be ignored by the implementation but might be confusing to users.
    • <csr-id-43f695a9607f1f85f859f2ef944b785b5b6dd238/> gix::open() can handle bare repositories with index. These are mis-classified as non-bare repository, which previosuly caused it to get off-track.

    New Features (BREAKING)

    • <csr-id-26e6a661ed5827151708b9fcc3d7468aa60cf4e3/> add Repository::excludes() and simplify signature of Worktree::excludes(). Further, this change removes the permission module without replacement, and moves permissions into open.

      This corrects an artifact of this crate previously being name gix-repository and brings these types semantically closer to where they are actually used.

    • <csr-id-cb3437632fe7ff0ce4efd11c08a8d684d7e7e430/> support configuring the connection (i.e. for auth) during clone. This change also removes the generic type for Progress from Connection which forces it to be passed to every potentially long-running method.

    • <csr-id-b83ee366a3c65c717beb587ad809268f1c54b8ad/> Rename serde1 cargo feature to serde and use the weak-deps cargo capability. With it it's possible to not automatically declare all optional dependencies externally visible features, and thus re-use feature names that oterwise are also a crate name.

      Previously I thought that serde1 is for future-proofing and supporting multiple serde versions at the same time. However, it's most definitely a burden I wouldn't want anyway, so using serde seems to be the way to go into the future.

    • <csr-id-b645d28f9641c6b4022e1e37ad9fe528922ec747/> remove types that are now available in gix-os

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 48 commits contributed to the release over the course of 26 calendar days.
    • 27 days passed between releases.
    • 14 commits were understood as conventional.
    • 2 unique issues were worked on: #801, #814

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #801
      • revision::walk::Platform::selected(filter) to selectively prune parts of the commit graph. (ec93f75)
    • #814
      • Rename serde1 cargo feature to serde and use the weak-deps cargo capability. (b83ee36)
    • Uncategorized
      • Release gix-worktree v0.16.0, gix v0.44.0 (4527fb8)
      • Release gix-index v0.16.0, gix-mailmap v0.12.0, gix-pack v0.34.0, gix-odb v0.44.0, gix-packetline v0.16.0, gix-transport v0.30.0, gix-protocol v0.31.0, gix-revision v0.13.0, gix-refspec v0.10.0, gix-worktree v0.16.0, gix v0.44.0 (d7173b2)
      • Release gix-index v0.16.0, gix-mailmap v0.12.0, gix-pack v0.34.0, gix-odb v0.44.0, gix-packetline v0.16.0, gix-transport v0.30.0, gix-protocol v0.31.0, gix-revision v0.13.0, gix-refspec v0.10.0, gix-worktree v0.16.0, gix v0.44.0 (e4df557)
      • Release gix-hash v0.11.1, gix-path v0.7.4, gix-glob v0.6.0, gix-attributes v0.11.0, gix-config-value v0.11.0, gix-fs v0.1.1, gix-tempfile v5.0.3, gix-utils v0.1.1, gix-lock v5.0.1, gix-object v0.29.1, gix-ref v0.28.0, gix-sec v0.7.0, gix-config v0.21.0, gix-prompt v0.4.0, gix-url v0.17.0, gix-credentials v0.13.0, gix-diff v0.29.0, gix-discover v0.17.0, gix-hashtable v0.2.0, gix-ignore v0.1.0, gix-bitmap v0.2.3, gix-traverse v0.25.0, gix-index v0.16.0, gix-mailmap v0.12.0, gix-pack v0.34.0, gix-odb v0.44.0, gix-packetline v0.16.0, gix-transport v0.30.0, gix-protocol v0.31.0, gix-revision v0.13.0, gix-refspec v0.10.0, gix-worktree v0.16.0, gix v0.44.0, safety bump 7 crates (91134a1)
      • Prepare changelogs prior to release (30a1a71)
      • When removing all shallow commits from shallow file, delete it. (2cd5054)
      • Merge branch 'index-entries-attrs' (f37a930)
      • gix index entries also prints attributes. (08e8fc2)
      • Adjust to changes in gix-worktree (27a39ca)
      • Add Repository::attributes() and Worktree::attributes(). (bc28443)
      • Add Repository::excludes() and simplify signature of Worktree::excludes(). (26e6a66)
      • Add index.threads configuration to gix::config::tree (40a1b74)
      • Adjust to changes in gix-worktree (f722d6b)
      • Merge branch 'attributes-cache' (3456c84)
      • Adjust to changes in gix-worktree (13a070f)
      • Merge branch 'fix-823' (6ebd61e)
      • gix::open() can handle bare repositories with index. (43f695a)
      • Thanks clippy (14e64e7)
      • Merge branch 'clone-auth' (1a65308)
      • Support configuring the connection (i.e. for auth) during clone. (cb34376)
      • Merge branch 'fix-819' (69faad0)
      • Before writing new objects, check if they exist. (afe7faa)
      • Add Object::into_tag() and Tag::decode() methods. (037f52d)
      • Release gix-utils v0.1.0, gix-hash v0.11.0, gix-date v0.5.0, gix-features v0.29.0, gix-actor v0.20.0, gix-object v0.29.0, gix-archive v0.1.0, gix-fs v0.1.0, safety bump 25 crates (8dbd0a6)
      • Support native zlib-ng via flate2's zlib-ng feature (9a6e0d7)
      • Make fmt (5d2b5d0)
      • Merge branch 'main' into dev (cdef398)
      • Minor adjustments to the worktree structure. (8920229)
      • Rename the serde1 feature to serde (19338d9)
      • Create new gix-fs crate to consolidate all filesystem utilities (f8cc33c)
      • Allow USE_NSEC and USE_STDEV compile time flags to configured at runtime. (35cb6b4)
      • Merge branch 'main' into dev (23ee47f)
      • Merge branch 'worktree-stack' (3d47919)
      • open::Options now allow controlling where gitattributes files are loaded from. (358500f)
      • Adjust to changes in gix-attributes (1755c81)
      • Remove types that are now available in gix-os (b645d28)
      • Refactor (0677406)
      • Centralize index entry Stat creation/comparison (870bdb2)
      • Release gix-hash v0.10.4, gix-hashtable v0.1.3 (b574a39)
      • Merge branch 'patch-1' (b02bf24)
      • Add test to run tests on 32 bit systems (fb31ee8)
      • Merge branch 'patch-1' (d0052c1)
      • Upgrade serial-test to v2 (6932017)
      • Release gix-revision v0.12.2 (ec64a88)
      • Merge branch 'fix-801' (a884121)
      • Prevent env-altering tests to affect shallow tests (61eec5a) </details>
    Open source →
  58. 0.43.1 30 Mar 2023
    Release notes

    Documentation

    • <csr-id-02c4659984fa6423bc76cc4980a143edaba8ace0/> fix minor typos
    • <csr-id-cc48c35d0ecf35824910c5b6ecc62fe9b2aff1b5/> fix minor typos

    New Features

    • <csr-id-7c2e5c8d08e4dd1ec115ae06f20f9c8f93d6d616/> add Tree::decode() and TryFrom<Tree> for gix::objs::Tree. This makes it possible to obtain mutable trees for creating trees by hand for the purpose of making commits.

    Bug Fixes

    • <csr-id-d1bd513f27e17787eb223f7b0521f954c518153e/> $HOME detection on windows

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 9 commits contributed to the release over the course of 3 calendar days.
    • 4 days passed between releases.
    • 4 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-path v0.7.3, gix-config-value v0.10.2, gix-config v0.20.1, gix-discover v0.16.2, gix-index v0.15.1, gix-odb v0.43.1, gix-packetline v0.15.1, gix-protocol v0.30.2, gix-worktree v0.15.2, gix v0.43.1 (38eed1d)
      • Merge branch 'pascalkuthe/main' (d47cebe)
      • Refactor (d1e5e12)
      • $HOME detection on windows (d1bd513)
      • Fix minor typos (02c4659)
      • Fix minor typos (cc48c35)
      • Add Tree::decode() and TryFrom<Tree> for gix::objs::Tree. (7c2e5c8)
      • Release gix-ref v0.27.2 (e965b18)
      • Be sure to clear the buffer after an intermediate read error happened and we ignore it. (877951a) </details>
    Open source →
  59. 0.43.0 26 Mar 2023 withdrawn
    Release notes

    <csr-id-f952c101cc8686e685074e8604e0f332c06d6767/>

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 4 commits contributed to the release.
    • 21 days passed between releases.
    • 1 commit was understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Merge pull request #1935 from pierrechevalier83/fix_1923 (3b1bef7)
      • J fmt (c3c6504)
      • Merge pull request #1937 from EliahKagan/document-commands (de2f97d)
      • Add missing command docs + small style fixups (f952c10) </details>
    Open source →
    Release notes

    <csr-id-87f5621d941b5af40abd59a26164a09d0dde2649/>

    Bug Fixes

    • <csr-id-7bd8823ab4241d6d0401f03aec8c0d34f68c347c/> opening repositories without 'strict' mode also ignores IO errors. These will instead be logged, but won't make it impossible to open an otherwise fine repository.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 6 commits contributed to the release.
    • 12 days passed between releases.
    • 2 commits were understood as conventional.
    • 2 unique issues were worked on: #787, #790

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • #787
      • Make clear that gix::discover() isn't suited for authentication remote operations. (87f5621)
    • #790
      • Opening repositories without 'strict' mode also ignores IO errors. (7bd8823)
    • Uncategorized
      • Release gix-tempfile v5.0.2, gix-validate v0.7.4, gix-config v0.20.0, gix-prompt v0.3.3, gix-diff v0.28.1, gix-discover v0.16.1, gix-pack v0.33.2, gix-transport v0.29.1, gix-protocol v0.30.1, gix-revision v0.12.1, gix-worktree v0.15.1, gix v0.43.0, safety bump gix v0.43.0 (5dc1f9f)
      • Prepare changelogs prior to release (3016a28)
      • Merge branch 'fix-790' (ee36e5b)
      • Less dependencies for tests (via serial_test no default features) (8f2accd) </details>
    Open source →
  60. 0.42.0 14 Mar 2023
    Release notes

    <csr-id-dd366a52d46078729a6e36468211b97c92c2921d/>

    New Features

    • <csr-id-dbb15328d7b26aaa51ceadcd5a8cb021155023b3/> add first 'debug' version of gix diff file

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 14 commits contributed to the release.
    • 76 days passed between releases.
    • 2 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Thanks Clippy

    <csr-read-only-do-not-edit/>

    Clippy helped 1 time to make code idiomatic.

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Merge pull request #1880 from cruessler/add-gix-diff-file (b10cc6f)
      • Apply suggestions from code review (1039ae9)
      • Use revspecs for revision and path (dd366a5)
      • Add first 'debug' version of gix diff file (dbb1532)
      • Merge pull request #1888 from cruessler/respect-diff-algorithm-in-blame (dce127e)
      • Adapt to changes in gix-blame (8a31d88)
      • Merge pull request #1859 from cruessler/add-failing-test-for-as-time (36a846f)
      • Merge pull request #1858 from cruessler/add-git-blame-since (7059609)
      • Add test for --since (330711d)
      • Adapt to changes in gix-blame (e7084d8)
      • Merge pull request #1861 from GitoxideLabs/revert-lazylock (6acca19)
      • Don't use LazyLock just yet. (147eb41)
      • Merge pull request #1854 from GitoxideLabs/montly-report (16a248b)
      • Thanks clippy (8e96ed3) </details>
    Open source →
    Release notes

    New Features

    • <csr-id-93d412c54833d822e5369644226c6fd3b888c89c/> shallow support for fetch operations.
    • <csr-id-4e89c19d7656a96bd512dafbc9669011487671f5/> shallow support for clone operations.

    Commit Statistics

    <csr-read-only-do-not-edit/>

    • 11 commits contributed to the release over the course of 3 calendar days.
    • 4 days passed between releases.
    • 2 commits were understood as conventional.
    • 0 issues like '(#ID)' were seen in commit messages

    Commit Details

    <csr-read-only-do-not-edit/>

    <details><summary>view details</summary>

    • Uncategorized
      • Release gix-features v0.28.1, gix-tempfile v5.0.1, gix-ref v0.27.1, gix-pack v0.33.1, gix-packetline v0.15.0, gix-transport v0.29.0, gix-protocol v0.30.0, gix v0.42.0, safety bump 3 crates (c1f1bfb)
      • Prepare changelogs prior to release (c66e298)
      • Make fmt (3836cc0)
      • Merge branch 'various-fixes' (cc0f506)
      • Improve fetchspec handling to be closer to what git does. (a22621d)
      • Assure that --deepen 0 (despite allowed) doesn't actually confuse the server. (b43ea6b)
      • Adjust to changes in gix-packetline (4f45814)
      • Merge branch 'shallow-protocol' (531dd19)
      • Shallow support for fetch operations. (93d412c)
      • Shallow support for clone operations. (4e89c19)
      • Merge branch 'fix-cred-helper' (01277a6) </details>
    Open source →

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive