github Byron/gitoxide gix-testtools-v0.11.0
gix-testtools v0.11.0

19 months ago

Chore

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

New Features

  • set_current_dir() to change the CWD and reset it to previous version on drop.

  • allow execution of scripts without 'bash'.
    This works by trying to execute the file directly, and on failure, use 'bash'
    as interpreter.

    That way we are finally able to support a wider variety of fixture generators
    and make the crate more useful to a wieder audience.

  • spawn_git_daemon() to spawn a git daemon hosting a working directoy…
    …with support for multiple at a time thanks to port selection (allowing
    tests to run in parallel) as well as auto-kill on drop.

  • increase the waiting time on MacOS for file base locks
    It appears that these workers run into timeouts more and more,
    they got slower or maybe there are just more tests.

  • add Env::unset() for convenience

  • Provide GIT_VERSION information along with a way to skip a test based on it.

  • expose on_ci in the top-level.

  • Allow to re-execute scripts into temp directories.
    This is important in cases where the files created by the script
    contain absolute mentions of locations. That way, when copying
    files over, the test might accidentally return to the original
    read-only location, and write into it making future test runs fail.

  • publicly accessible Result type

Bug Fixes

  • gix-testtools use the latest dependencies
    These should compile properly.

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

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

  • don't overwrite unexpanded git-lfs pointer files.
    It's possible for those with incomplete git-lfs installations
    (and many more situations) to end up in a spot where pointer files
    aren't expanded. If we overwrite the with archives, files look
    changed which can be confusing and lead to even bigger messes
    to happen.

    Now we don't overwrite those files anyomre.

  • Disable tag.gpgSign in test scripts
    This is done for the same reason that commit.gpgsign is disabled for test
    scripts. It prevents test failures if the user has tag.gpgsign enabled in
    their global git config when invoking tests.

  • Allow multiple scripts to run at the same time, if they are not the same.
    Previously, per integration test and thus per crate, one would
    effectively only be able to run a single script at a time because of the
    global identity lock. This was required previously before the additional
    file based lock, per script name, was introduced.

    This is now fixed by dropping the lock after the script identity was
    obtained.

  • _with_args(…) functions now allow non-static strings

Other

  • try to disable GPG signing with environment variables…
    …but it's not picked up at all even though it's definitely present.

Test

  • ensure tests use 'merge.ff false' and recreate fixtures on each run

Changed (BREAKING)

  • rename scripted_fixture_* to not contain 'repo' in the name.
    Further make clear in the documentation that bash is used to execute
    the fixture scripts, previously it wasn't even implied and got
    lost in history.
  • upgrade bstr to 1.0.1

New Features (BREAKING)

  • remove hex_to_id() and add various *_standalone() versions of existing methods.
    With these it's possible to handle fully standalone (as in with their own Cargo.toml) integration
    tests which are needed to resolve cyclic dependencies.

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

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

Commit Statistics

Thanks Clippy

Clippy helped 11 times to make code idiomatic.

Commit Details

view details
  • #198
    • fix windows tests by transforming line endings (e276d77)
  • #266
    • a failing test to show the handle-stability doesn't quite work yet (5562e88)
    • refactor (c499843)
  • #293
    • REUC reading works (29c1af9)
    • use parking_lot mutex to avoid poison errors (d8ca74f)
    • base setup for index testing (aa60fdf)
  • #298
    • upgrade dependencies (b039d39)
    • upgrade parking_lot and cargo_toml (f95c1a0)
  • #301
    • Allow to re-execute scripts into temp directories. (449b6c1)
    • don't print archive message if archive is excluded (c6bd30e)
    • Support unique directories for different platforms (0b385b3)
    • Use git exclude information to determine if archives should be generated (4a3dccc)
    • Add TODO (778fd77)
    • publicly accessible Result type (f1635c3)
    • refactor (9ea1e44)
  • #331
    • expose on_ci in the top-level. (654b521)
    • move Env test utility into git-testtools (bd3f4d0)
  • #364
    • add test-tools changelog prior to release (1ebc16a)
  • #366
    • quickfix for unintentionally using 'unicode' feature of bytecode (fb5593a)
  • #382
  • #384
    • enforce signal handler setup to cleanup tempfiles on abort (1caf3ae)
    • No need to isolate archives by crate name (19d46f3)
    • provide some more information when using archives; debug windows more (4f5b1fd)
    • protect test generation from multi-process races (1aec924)
    • definitely don't follow symlnks (1343448)
    • make sure existing files aren't written into (9b5a8a2)
    • extraction of tar archives with identity check (07c1f07)
    • assure there are no archive file-name clashes across crates (c30bebf)
    • actual compression of archives (5dd3d82)
    • simple creation of test-archives (f1e107a)
    • make sure archives are handled by git-lfs (f744a6c)
    • frame for extracting and generating archives (92c7044)
    • further partition generated test directories by script name (e141ddb)
    • auto-set commit.gpgsign=false when executing git (c23feb6)
  • #391
    • also write a failure marker if archive creation failed (7f88c7f)
    • auto-clean test fixtures on re-run if they failed previously (3617ff4)
  • #393
    • Add support for disabling archive usage (624ad2e)
  • #427
  • #450
    • add Env::unset() for convenience (09da4c5)
    • upgrade bstr to 1.0.1 (99905ba)
    • Allow multiple scripts to run at the same time, if they are not the same. (cba9ede)
    • Make tests more robust; fix windows tests (1983fbc)
  • #470
    • update changelogs prior to release (caa7a1b)
  • #488
    • Provide GIT_VERSION information along with a way to skip a test based on it. (2317856)
  • #509
    • some unit tests for the time when something truly unparseable shows up (94fc0d6)
    • Be more verbose when git version parsing fails (9c2f1b5)
  • #607
    • don't overwrite unexpanded git-lfs pointer files. (761b7d7)
    • improve documentation to inform about the need for git-lfs. (519db50)
  • #650
    • allow execution of scripts without 'bash'. (15ecd84)
    • rename scripted_fixture_* to not contain 'repo' in the name. (dbf6c8c)
  • #XXX
    • _with_args(…) functions now allow non-static strings (004dab1)
  • Uncategorized
    • gix-testtools use the latest dependencies (00286c9)
    • Merge branch 'rename-crates' into inform-about-gix-rename (c9275b9)
    • note that crates have been renamed from git-* to gix-*. (e14dc7d)
    • rename git-testtools to gix-testtools (b65c33d)
    • adjust to renaming of git-pack to gix-pack (1ee81ad)
    • adjust to renaming of git-odb to gix-odb (476e2ad)
    • adjust to renaming of git-index to gix-index (86db5e0)
    • adjust to renaming of git-diff to gix-diff (49a163e)
    • adjust to renaming of git-commitgraph to gix-commitgraph (f1dd0a3)
    • adjust to renaming of git-mailmap to gix-mailmap (2e28c56)
    • adjust to renaming of git-lfs to gix-lfs (b9225c8)
    • adjust to renaming of git-chunk to gix-chunk (59194e3)
    • adjust to renaming of git-bitmap to gix-bitmap (75f2a07)
    • adjust to renaming for git-protocol to gix-protocol (823795a)
    • adjust to renaming of git-refspec to gix-refspec (c958802)
    • adjust to renaming of git-revision to gix-revision (ee0ee84)
    • adjust to renaming of git-transport to gix-transport (b2ccf71)
    • adjust to renaming of git-credentials to gix-credentials (6b18abc)
    • adjust to renaming of git-prompt to gix-prompt (6a4654e)
    • adjust to renaming of git-command to gix-command (d26b8e0)
    • adjust to renaming of git-packetline to gix-packetline (5cbd22c)
    • adjust to renaming of git-worktree to gix-worktree (73a1282)
    • adjust to renamining of git-hashtable to gix-hashtable (26a0c98)
    • adjust to renaming of git-url to gix-url (b50817a)
    • adjust to renaming of git-date to gix-date (9a79ff2)
    • adjust to renaminig of git-quote to gix-quote (648025b)
    • adjust to renaming of git-config to gix-config (3a861c8)
    • adjust to renaming of git-ref to gix-ref (1f5f695)
    • adjust to renaming of git-lock to gix-lock (2028e78)
    • adjust to renaming of git-tempfile to gix-tempfile (b6cc3eb)
    • adjust to renaming of git-object to gix-object (fc86a1e)
    • adjust to renaming of git-actor to gix-actor (4dc9b44)
    • adjust to renaming of git-validate to gix-validate (5e40ad0)
    • adjust to renaming of git-hash to gix-hash (4a9d025)
    • adjust to renaming of git-features to gix-features (e2dd68a)
    • adjust to renaming of git-glob to gix-glob (35b2a3a)
    • adjust to renaming of git-sec to gix-sec (eabbb92)
    • adapt to renaming of git-path to gix-path (d3bbcfc)
    • adjust to rename of git-config-value to gix-config-value (622b3e1)
    • Merge branch 'unc-paths' (ff0387e)
    • set_current_dir() to change the CWD and reset it to previous version on drop. (fb68bff)
    • thanks clippy (bac57dd)
    • remove hex_to_id() and add various *_standalone() versions of existing methods. (21bd607)
    • Break cyclical dev dependencies (1fea18f)
    • Release git-date v0.4.1, git-features v0.26.1, git-glob v0.5.2, git-attributes v0.8.1, git-tempfile v3.0.1, git-ref v0.23.1, git-sec v0.6.1, git-config v0.15.1, git-prompt v0.3.1, git-url v0.13.1, git-discover v0.12.1, git-index v0.12.2, git-mailmap v0.9.1, git-pack v0.30.1, git-odb v0.40.1, git-transport v0.25.3, git-protocol v0.26.2, git-revision v0.10.1, git-refspec v0.7.1, git-worktree v0.12.1, git-repository v0.33.0 (5b5b380)
    • Merge branch 'patch-1' (b93f0c4)
    • thanks clippy (b34c9fe)
    • Release git-date v0.4.0, git-actor v0.17.0, git-object v0.26.0, git-traverse v0.22.0, git-index v0.12.0, safety bump 15 crates (0e3d0a5)
    • Release git-features v0.26.0, git-actor v0.16.0, git-attributes v0.8.0, git-object v0.25.0, git-ref v0.22.0, git-config v0.14.0, git-command v0.2.1, git-url v0.13.0, git-credentials v0.9.0, git-diff v0.25.0, git-discover v0.11.0, git-traverse v0.21.0, git-index v0.11.0, git-mailmap v0.8.0, git-pack v0.29.0, git-odb v0.39.0, git-transport v0.25.0, git-protocol v0.26.0, git-revision v0.9.0, git-refspec v0.6.0, git-worktree v0.11.0, git-repository v0.31.0, safety bump 24 crates (5ac9fbe)
    • adapt to changes in git-worktree (5a97bb5)
    • Merge branch 'adjustments-for-cargo' (f8c562a)
    • Release git-testtools v0.10.0 (926ba5b)
    • Release git-date v0.3.1, git-features v0.25.0, git-actor v0.15.0, git-glob v0.5.1, git-path v0.7.0, git-attributes v0.7.0, git-config-value v0.10.0, git-lock v3.0.1, git-validate v0.7.1, git-object v0.24.0, git-ref v0.21.0, git-sec v0.6.0, git-config v0.13.0, git-prompt v0.3.0, git-url v0.12.0, git-credentials v0.8.0, git-diff v0.24.0, git-discover v0.10.0, git-traverse v0.20.0, git-index v0.10.0, git-mailmap v0.7.0, git-pack v0.28.0, git-odb v0.38.0, git-packetline v0.14.1, git-transport v0.24.0, git-protocol v0.25.0, git-revision v0.8.0, git-refspec v0.5.0, git-worktree v0.10.0, git-repository v0.30.0, safety bump 26 crates (e6b9906)
    • Merge branch 'main' into read-split-index (c57bdde)
    • Merge branch 'adjustments-for-cargo' (083909b)
    • thanks clippy (f1160fb)
    • Release git-hash v0.10.1, git-hashtable v0.1.0 (7717170)
    • Merge branch 'main' into http-config (bcd9654)
    • Release git-hash v0.10.0, git-features v0.24.0, git-date v0.3.0, git-actor v0.14.0, git-glob v0.5.0, git-path v0.6.0, git-quote v0.4.0, git-attributes v0.6.0, git-config-value v0.9.0, git-tempfile v3.0.0, git-lock v3.0.0, git-validate v0.7.0, git-object v0.23.0, git-ref v0.20.0, git-sec v0.5.0, git-config v0.12.0, git-command v0.2.0, git-prompt v0.2.0, git-url v0.11.0, git-credentials v0.7.0, git-diff v0.23.0, git-discover v0.9.0, git-bitmap v0.2.0, git-traverse v0.19.0, git-index v0.9.0, git-mailmap v0.6.0, git-chunk v0.4.0, git-pack v0.27.0, git-odb v0.37.0, git-packetline v0.14.0, git-transport v0.23.0, git-protocol v0.24.0, git-revision v0.7.0, git-refspec v0.4.0, git-worktree v0.9.0, git-repository v0.29.0, git-commitgraph v0.11.0, gitoxide-core v0.21.0, gitoxide v0.19.0, safety bump 28 crates (b2c301e)
    • Merge branch 'git-lfs-improvements' (4c1685b)
    • Merge branch 'jpgrayson/main' (b242853)
    • Disable tag.gpgSign in test scripts (1ce3190)
    • Merge branch 'version2021' (0e4462d)
    • upgrade edition to 2021 in most crates. (3d8fa8f)
    • Release git-glob v0.4.2, git-config-value v0.8.2, git-lock v2.2.0, git-ref v0.19.0, git-config v0.11.0, git-discover v0.8.0, git-index v0.8.0, git-transport v0.22.0, git-protocol v0.23.0, git-worktree v0.8.0, git-repository v0.28.0, gitoxide-core v0.20.0, gitoxide v0.18.0, safety bump 9 crates (0c253b1)
    • Merge branch 'main' into http-config (f4ff821)
    • Merge branch 'async-fetch' (0c9c48b)
    • let's be very conservative regarding maximum lock times (ba83945)
    • This should work on windows (when launching the git-daemon) (52f4095)
    • Make sure we can shut-down the daemon by starting it directly (4924b33)
    • spawn_git_daemon() to spawn a git daemon hosting a working directoy… (221f137)
    • Release git-features v0.23.1, git-glob v0.4.1, git-config-value v0.8.1, git-tempfile v2.0.6, git-object v0.22.1, git-ref v0.18.0, git-sec v0.4.2, git-config v0.10.0, git-prompt v0.1.1, git-url v0.10.1, git-credentials v0.6.1, git-diff v0.21.0, git-discover v0.7.0, git-index v0.7.0, git-pack v0.25.0, git-odb v0.35.0, git-transport v0.21.1, git-protocol v0.22.0, git-refspec v0.3.1, git-worktree v0.7.0, git-repository v0.26.0, git-commitgraph v0.10.0, gitoxide-core v0.19.0, gitoxide v0.17.0, safety bump 9 crates (d071583)
    • Merge branch 'main' into write-sparse-index (upgrade to Rust 1.65) (5406630)
    • thanks clippy (04cfa63)
    • Merge branch 'main' into write-sparse-index (c4e6849)
    • Merge branch 'gix-clone' (def53b3)
    • Assure the 'file' protocol is always allowed (7086101)
    • Release git-hash v0.9.11, git-features v0.23.0, git-actor v0.13.0, git-attributes v0.5.0, git-object v0.22.0, git-ref v0.17.0, git-sec v0.4.1, git-config v0.9.0, git-url v0.10.0, git-credentials v0.6.0, git-diff v0.20.0, git-discover v0.6.0, git-traverse v0.18.0, git-index v0.6.0, git-mailmap v0.5.0, git-pack v0.24.0, git-odb v0.34.0, git-packetline v0.13.1, git-transport v0.21.0, git-protocol v0.21.0, git-revision v0.6.0, git-refspec v0.3.0, git-worktree v0.6.0, git-repository v0.25.0, safety bump 24 crates (104d922)
    • Merge branch 'main' into new-http-impl (702a161)
    • Merge branch 'fetch-pack' (3c49400)
    • Merge branch 'main' into fetch-pack (93917cb)
    • increase the waiting time on MacOS for file base locks (67777a8)
    • Merge branch 'diff' (25a7726)
    • Release git-hash v0.9.10, git-features v0.22.5, git-date v0.2.0, git-actor v0.12.0, git-glob v0.4.0, git-path v0.5.0, git-quote v0.3.0, git-attributes v0.4.0, git-config-value v0.8.0, git-tempfile v2.0.5, git-validate v0.6.0, git-object v0.21.0, git-ref v0.16.0, git-sec v0.4.0, git-config v0.8.0, git-discover v0.5.0, git-traverse v0.17.0, git-index v0.5.0, git-worktree v0.5.0, git-testtools v0.9.0, git-command v0.1.0, git-prompt v0.1.0, git-url v0.9.0, git-credentials v0.5.0, git-diff v0.19.0, git-mailmap v0.4.0, git-chunk v0.3.2, git-pack v0.23.0, git-odb v0.33.0, git-packetline v0.13.0, git-transport v0.20.0, git-protocol v0.20.0, git-revision v0.5.0, git-refspec v0.2.0, git-repository v0.24.0, git-commitgraph v0.9.0, gitoxide-core v0.18.0, gitoxide v0.16.0, safety bump 28 crates (29a043b)
    • Merge branch 'filter-refs' (fd14489)
    • make fmt (535e967)
    • Merge branch 'filter-refs-by-spec' (5c05198)
    • Merge branch 'main' into filter-refs-by-spec (1f6e5ab)
    • Merge branch 'fix-522' (5869e9f)
    • Release git-hash v0.9.9 (da0716f)
    • Merge branch 'main' into index-from-tree (bc64b96)
    • Merge branch 'main' into filter-refs-by-spec (51dc828)
    • Release git-diff v0.18.1, git-discover v0.4.2, git-traverse v0.16.4, git-repository v0.23.1 (2571831)
    • Merge branch 'main' into filter-refs-by-spec (56ba481)
    • Merge branch 'joelparkerhenderson/main' (239cb8a)
    • fix format (1b00ab1)
    • Fix git_version_from_bytes to handle trailing newline (14e4e66)
    • Merge branch 'main' into filter-refs-by-spec (a36c05d)
    • Merge branch 'main' into filter-refs-by-spec (cef0b51)
    • Release git-worktree v0.4.3, git-testtools v0.8.0 (b2e4bf2)
    • Release git-attributes v0.3.3, git-ref v0.15.3, git-index v0.4.3, git-worktree v0.4.3, git-testtools v0.8.0 (baad4ce)
    • prepare changelogs prior to release of git-testtools (7668e38)
    • Merge branch 'main' into filter-refs-by-spec (cfa1440)
    • Release git-date v0.0.5, git-hash v0.9.8, git-features v0.22.2, git-actor v0.11.3, git-glob v0.3.2, git-quote v0.2.1, git-attributes v0.3.2, git-tempfile v2.0.4, git-lock v2.1.1, git-validate v0.5.5, git-object v0.20.2, git-ref v0.15.2, git-sec v0.3.1, git-config v0.7.0, git-credentials v0.4.0, git-diff v0.17.2, git-discover v0.4.1, git-bitmap v0.1.2, git-index v0.4.2, git-mailmap v0.3.2, git-chunk v0.3.1, git-traverse v0.16.2, git-pack v0.21.2, git-odb v0.31.2, git-packetline v0.12.7, git-url v0.7.2, git-transport v0.19.2, git-protocol v0.19.0, git-revision v0.4.2, git-refspec v0.1.0, git-worktree v0.4.2, git-repository v0.22.0, safety bump 4 crates (4974eca)
    • Merge branch 'main' into remote-ls-refs (e2ee3de)
    • thanks clippy (9aa8277)
    • Merge branch 'docsrs-show-features' (31c2351)
    • uniformize deny attributes (f7f136d)
    • remove default link to cargo doc everywhere (533e887)
    • Merge branch 'main' into remote-ls-refs (bd5f3e8)
    • Release git-date v0.0.3, git-actor v0.11.1, git-attributes v0.3.1, git-tempfile v2.0.3, git-object v0.20.1, git-ref v0.15.1, git-config v0.6.1, git-diff v0.17.1, git-discover v0.4.0, git-bitmap v0.1.1, git-index v0.4.1, git-mailmap v0.3.1, git-traverse v0.16.1, git-pack v0.21.1, git-odb v0.31.1, git-packetline v0.12.6, git-url v0.7.1, git-transport v0.19.1, git-protocol v0.18.1, git-revision v0.4.0, git-worktree v0.4.1, git-repository v0.21.0, safety bump 5 crates (c96473d)
    • Release git-hash v0.9.7, git-features v0.22.1 (232784a)
    • Merge branch 'main' into remote-ls-refs (c4bf958)
    • fix CI for good (e0c0b8c)
    • Merge branch 'rev-parse-delegate' (2f506c7)
    • Merge pull request #2 from SidneyDouw/main (ce885ad)
    • Merge branch 'Byron:main' into main (9b9ea02)
    • Merge branch 'main' into rev-parse-delegate (6da8250)
    • Add docs related to archives. (f409a2a)
    • Add documentation to test-tools. (074b283)
    • Merge branch 'main' into pathspec (7b61506)
    • make fmt (47724c0)
    • Release git-hash v0.9.6, git-features v0.22.0, git-date v0.0.2, git-actor v0.11.0, git-glob v0.3.1, git-path v0.4.0, git-attributes v0.3.0, git-tempfile v2.0.2, git-object v0.20.0, git-ref v0.15.0, git-sec v0.3.0, git-config v0.6.0, git-credentials v0.3.0, git-diff v0.17.0, git-discover v0.3.0, git-index v0.4.0, git-mailmap v0.3.0, git-traverse v0.16.0, git-pack v0.21.0, git-odb v0.31.0, git-url v0.7.0, git-transport v0.19.0, git-protocol v0.18.0, git-revision v0.3.0, git-worktree v0.4.0, git-repository v0.20.0, git-commitgraph v0.8.0, gitoxide-core v0.15.0, gitoxide v0.13.0, safety bump 22 crates (4737b1e)
    • Merge branch 'config-cascade' (f144eaf)
    • thanks clippy (49f5a54)
    • Merge pull request #1 from Byron/main (085e76b)
    • Merge branch 'main' into pathspec (89ea12b)
    • Merge branch 'main' into cont_include_if (41ea8ba)
    • Release git-path v0.3.0, safety bump 14 crates (400c9be)
    • Release git-date v0.0.1, git-hash v0.9.5, git-features v0.21.1, git-actor v0.10.1, git-path v0.2.0, git-attributes v0.2.0, git-ref v0.14.0, git-sec v0.2.0, git-config v0.5.0, git-credentials v0.2.0, git-discover v0.2.0, git-pack v0.20.0, git-odb v0.30.0, git-url v0.6.0, git-transport v0.18.0, git-protocol v0.17.0, git-revision v0.2.1, git-worktree v0.3.0, git-repository v0.19.0, safety bump 13 crates (a417177)
    • Release git-sec v0.1.2, git-discover v0.1.3, cargo-smart-release v0.10.2 (6cd365e)
    • Merge branch 'main' into SidneyDouw-pathspec (a22b1d8)
    • Release git-path v0.1.3, git-discover v0.1.2, git-repository v0.18.1, cargo-smart-release v0.10.1 (b7399cc)
    • Release git-path v0.1.2, git-sec v0.1.1, git-config v0.4.0, git-discover v0.1.1, git-pack v0.19.1, git-repository v0.18.0, cargo-smart-release v0.10.0, safety bump 2 crates (ceb6dff)
    • Merge branch 'main' into git_includeif (598c853)
    • Release git-hash v0.9.4, git-features v0.21.0, git-actor v0.10.0, git-glob v0.3.0, git-path v0.1.1, git-attributes v0.1.0, git-sec v0.1.0, git-config v0.3.0, git-credentials v0.1.0, git-validate v0.5.4, git-object v0.19.0, git-diff v0.16.0, git-lock v2.1.0, git-ref v0.13.0, git-discover v0.1.0, git-index v0.3.0, git-mailmap v0.2.0, git-traverse v0.15.0, git-pack v0.19.0, git-odb v0.29.0, git-packetline v0.12.5, git-url v0.5.0, git-transport v0.17.0, git-protocol v0.16.0, git-revision v0.2.0, git-worktree v0.2.0, git-repository v0.17.0, safety bump 20 crates (654cf39)
    • make fmt (e043807)
    • Merge branch 'refs-and-worktrees' (8131227)
    • thanks clippy (60cf67c)
    • Merge branch 'main' into git_includeif (b1bfc8f)
    • Merge branch 'basic-worktree-support' (e058bda)
    • Merge branch 'main' into git_includeif (05eb340)
    • Merge branch 'main' into msrv-for-windows (7cb1972)
    • make fmt (251b6df)
    • Merge branch 'worktree-stack' (98da8ba)
    • set the time to wait for lock to longest expected runtime of fixture scripts (eea3988)
    • More robust archive creation on windows (e7b2d8f)
    • Merge branch 'main' into repo-status (0eb2372)
    • Merge branch 'test-archive-support' (350df01)
    • thanks clippy (658862e)
    • thanks clippy (c8d218c)
    • Release git-testtools v0.6.0 (45386a0)
    • Release git-hash v0.9.3, git-features v0.20.0, git-config v0.2.0, safety bump 12 crates (f0cbb24)
    • thanks clippy (1038dab)
    • add fixture_bytes to test tools (85e3820)
    • Commit to using 'unicode' feature of bstr as git-object wants it too (471fa62)
    • Release git-hash v0.9.2, git-object v0.17.1, git-pack v0.16.1 (0db19b8)
    • Release git-hash v0.9.1, git-features v0.19.1, git-actor v0.8.0, git-config v0.1.10, git-object v0.17.0, git-diff v0.13.0, git-tempfile v1.0.4, git-chunk v0.3.0, git-traverse v0.12.0, git-pack v0.16.0, git-odb v0.26.0, git-packetline v0.12.3, git-url v0.3.5, git-transport v0.15.0, git-protocol v0.14.0, git-ref v0.11.0, git-repository v0.14.0, cargo-smart-release v0.8.0, safety bump 4 crates (373cbc8)
    • Release git-bitmap v0.0.1, git-hash v0.9.0, git-features v0.19.0, git-index v0.1.0, safety bump 9 crates (4624725)
    • ensure tests use 'merge.ff false' and recreate fixtures on each run (1d5ab44)
    • Release git-hash v0.8.0, git-features v0.17.0, git-actor v0.6.0, git-object v0.15.0, git-diff v0.11.0, git-traverse v0.10.0, git-pack v0.13.0, git-odb v0.23.0, git-packetline v0.12.0, git-transport v0.13.0, git-protocol v0.12.0, git-ref v0.9.0, git-repository v0.11.0, git-commitgraph v0.6.0, gitoxide-core v0.12.0, gitoxide v0.10.0, cargo-smart-release v0.5.0, safety bump 16 crates (0e02953)
    • Adjusting changelogs prior to release of git-hash v0.7.0, git-features v0.16.5, git-actor v0.5.3, git-validate v0.5.3, git-object v0.14.1, git-diff v0.10.0, git-tempfile v1.0.3, git-lock v1.0.1, git-traverse v0.9.0, git-pack v0.12.0, git-odb v0.22.0, git-packetline v0.11.0, git-url v0.3.4, git-transport v0.12.0, git-protocol v0.11.0, git-ref v0.8.0, git-repository v0.10.0, cargo-smart-release v0.4.0, safety bump 3 crates (a474395)
    • Merge branch 'changelog-generation' (bf0106e)
    • Merge branch 'repository-integration' (49f5453)
    • Bump git-hash v0.6.0 (6efd90d)
    • Merge branch 'Byron:main' into main (dc58eca)
    • Release git-testtools v0.5.0 (86e0a92)
    • Upgrade to nom-7 (f0aa3e1)
    • Apply nightly rustfmt rules. (5e0edba)
    • (cargo-release) version 0.4.0 (70ef344)
    • (cargo-release) version 0.5.0 (ae02dab)
    • [pack] refactor (9ee1e22)
    • [ref] packed refs header line parsing (fde5543)
    • [tools] fix create writable fixture (bf7783d)
    • [ref] on the way towards realistic transactions… (c808cb1)
    • [ref] on the way to setup the first transaction test (29c0b51)
    • Bump once_cell from 1.7.2 to 1.8.0 (bd323d9)
    • (cargo-release) version 0.3.0 (6b33678)
    • Merge branch 'dependabot/cargo/crc-2.0.0' (683c44d)
    • (cargo-release) version 0.2.0 (3286e42)
    • Manually fix crc in tooling (48fa9bc)
    • Bump crc from 1.8.1 to 2.0.0 (07f08ac)
    • (cargo-release) version 0.4.0 (866f86f)
    • [git-ref] the first failing test (7e802a0)
    • prepare test utilities for release… (d35e654)
    • [tree-diff] Beginning of more nested test-suite… (b8a90e7)
    • fix debug assert, thanks gitpython (fe954b9)
    • Revert "FAIL: try to disable GPG signing with environment variables…" (e326352)
    • try to disable GPG signing with environment variables… (29bf8ca)
    • Thanks, cargo audit (4f293f5)
    • thanks clippy (002792a)
    • Set environment in testtools to freeze repositories generation scripts (eaad3ab)
    • faster repeated tests if fixtures don't change (792277f)
    • Allow the use of shared test utilities across crates (b117626)
    • The first test with the new and nice and cheap journey test tool (d3c99e1)

Don't miss a new gitoxide release

NewReleases is sending notifications on new releases.