Refactor (BREAKING)
- clarify different repository types much better
- Remove light* features, add 'lean-async' in its place; remove termion support
- remove pack-cache from
Find::try_find(…)
With the new architecture this can be an implementation detail without
forcing it to be Sync. - move git_pack::data::Object to git_object::Data, massively alter git_odb::Find trait
This will break a lot, but has to happen to prepare these traits for the
next generation of object databases.
Other
- Try to make Handle usable for pack creation
It's nearly there, but for some reason the boxed dyn traits don't get to
be Send even though it's specified.
Bug Fixes
-
Allow resolution of in-pack ref-deltas
This finally allows delta tree caches to be used on typical small packs
returned by GitHub. -
keep non "git" repository name extensions
When converting a remote URL to a destination directory name,
keep extension strings if they are not equal to "git". For example, -
Avoid the dashmap being cloned for each thread
Intead, share it by reference, it's sync after all.This issue was introduced when switching to a
Send + Clone
model,
instead ofSend + Sync
, to allow thread-local caches in database
handles of all kinds.
New Features
- ein tool estimate-hours with shallow clone support
ein tool estimate-hours
now supports mailmapsgix repository mailmap entries
gix mailmap verify
command- unstable mailmap module
ein find
with support for worktree checkoutsein find --debug
to learn why it is slow- --counting-threads flag to configure amount of threads when counting
The efficiency of multi-threaded counting is low per core, and despite
some speedups might be desirable, one might not want to commit all cores
to this amount of waste. - in-manifest and in-lib documentation of feature toggles
Changed (BREAKING)
-
file::Store::(try_)find(…, packed) was removed
The packed buffer is now handled internally while loading it on demand.
When compiled withgit-features/parallel
thefile::Store
remains
send and sync.The packed refs buffer is shared across clones and it's recommended
to clone onefile::Store
instance per thread, each of which can
use its own namespace. -
parallel utilities now use
Send + Clone
insted ofSend + Sync
This helps to assure that thread-local computations always work with the
kind of types we provide. The ones that are carrying out actions are
notably notSync
anymore.We cater to that by defining our bounds accordingly, but for those
who want to use other utilities that need Sync, using types like
Repository
andthread_local!()
is the only way to make this
work. -
Rename gix->ein and gixp->gix
-
remove
Option<impl Progress>
in favor ofimpl Progress
-
multi-index integrity check; use
integrity::Outcome
for various integrity checks -
remove unnecessary
Arc
aroundshould_interrupt
flag -
remove Sha1 mentions in
index::verify::Mode::*
variants
The hash is repository defined and not hard-coded -
introduce
index::File::verify_integrity(…, pack: Option<PackContext>, …)
, replacing tuple
This allows for more documentation on what input is required there and
generally makes for an easier to use API. -
consistently use
object_hash
instead ofhash_kind
Commit Statistics
- 143 commits contributed to the release over the course of 156 calendar days.
- 165 days passed between releases.
- 26 commits where understood as conventional.
- 14 unique issues were worked on: #215, #247, #263, #266, #279, #287, #293, #298, #301, #329, #333, #364, #366, #67
Commit Details
view details
- #215
- Remove light* features, add 'lean-async' in its place; remove termion support (4d2d433)
- #247
- Rename gix->ein and gixp->gix (e8b0919)
- #263
- #266
- upgrade dependencies (c301abe)
- Make single-threaded programs possible to use with git-repository (dde5c6b)
- Use new store in git-repository (2f9e342)
- Use handle with default cache configuration in 'ein hours' (f71806f)
- adapt to changes in git-repository (fae309b)
- Adjust object-acess to test new contains method (8488b41)
- Adjustments to match changes in
git-repository
(117d5f8) - Adapt to changes in git-repository (3ab9b03)
- Adapt to changes in git-repository (3266c47)
- Adjust pack-create to changes in git-pack (12db899)
- Cache-creators are indeed shared across threads, must be sync (c326cb3)
- Try to make Handle usable for pack creation (424c9b3)
- Inform when multi-threaded counting is rejected (cc3b070)
- remove pack-cache from
Find::try_find(…)
(ebc7f47) - move git_pack::data::Object to git_object::Data, massively alter git_odb::Find trait (2290d00)
- #279
- Fast-path multi-pack index verification in the CLI (bcde935)
- Add a less thorough and faster way of verifying multi-indices (7517482)
- Handle large multi-pack indices correctly (4f6b030)
- Fix progress and handling of large of multi-pack index offsets (5dc1f81)
- Basic multi-pack index creation (89428b2)
- Add frame for writing a multi-pack index (9ce1e7f)
- adjust to changes in git_pack (7907ca8)
- even nicer printing (d2bea27)
- nicer printing of index verification results (e3dfa12)
- very first experimental support for multi-pack index verification (bb35c69)
- remove
Option<impl Progress>
in favor ofimpl Progress
(bf04644) - multi-index integrity check; use
integrity::Outcome
for various integrity checks (6829e5e) - remove unnecessary
Arc
aroundshould_interrupt
flag (d851bed) - remove Sha1 mentions in
index::verify::Mode::*
variants (c2679a0) - introduce
index::File::verify_integrity(…, pack: Option<PackContext>, …)
, replacing tuple (80b120d) - refactor (005fba7)
- consistently use
object_hash
instead ofhash_kind
(de4fa64) - Adjust to changes in git-odb (710780c)
- adapt to changes in git-pack (28dba20)
- Deal with changes to git-odb
Write
trait (4d67122) - adapt to changes to
git-odb
(5b0e2b9) - adapt to changes in git-hash (82fec95)
- #287
- lower-case json fields for consistency (f6c0e6d)
- basic output for 'repo verify' json only (9f8d61f)
- share and pass cli arguments for pack verification (db43e47)
- Allow resolution of in-pack ref-deltas (84ade1d)
- Very rough version of repository verification (80a4a7a)
- frame for loose-db validation (a24307d)
- Adjustments to deal with changes to git-pack/git-odb (fcf8fde)
- #293
- Assert store tree cache matches actual source objects (b062bec)
- Sketch a surprisingly difficult way of loading objects in verify_extension() (3baeab4)
- Also verify the index of the default workspace (15b8372)
- First stab at tree verification (f928350)
- Add 'index verify' subcommand to 'gix' (1ac2c21)
- Now we are able to load indices correctly (762efa3)
- refactor (3541e33)
- Print extension names instead of count (1cc07e0)
- Flag to hide extension details (34ea001)
- refactor (d0725bd)
- Fix tree-extension loading for empty trees (2e13989)
- Print basic index information, including the tree extension (9277cf8)
- Basic entry information (239e7b2)
- refactor (8bf585d)
- JSON output for index entries (3fc1622)
- fix build (e3977fe)
- refactor (9b28b18)
- #298
- #301
- pass thread-limit along to checkout (07e9081)
- conversions from Rc to arc for Handle (c19331e)
- proper handling of interruptions during checkout (7575a58)
- add thread-count and chunk-size computation; interrupt capability (8cbe85d)
- refactor (542f49b)
- return proper errors during checkout object lookup (f9beac0)
- more safety around recursion and invariants when resolving ref-deltas (dddb4a5)
- elaborate odb info and simple entries printing (0f65282)
- a first sketch of access odb information using a sub-command (89b628a)
- sub-command to print multi-index entries (6c10e09)
- pack multi-index info subcommand (21c2dd5)
- bring back more detailed errors in case of keep-going (8198817)
- use progress to print errors right when they happen (af03686)
- detailed report about issues after checkout (613483b)
- keep-going support on the command-line (73a7393)
- add tree-info subcommand to more easily test actual tree-traversal performance (29fb0c8)
- fix 'tree entries' performance by not decoding every object (53e79c8)
- first basic tree visualization with --recursive and flat display (111400f)
- frame for traversing tree entries (0e55fbb)
- fix progress - there is no max value for bytes written (537e5aa)
- allow writing empty files during checkout but also query the odb (5388d80)
- support for repo to write actual objects (5494fb3)
- basic version of index checkout via command-line (f23b8d2)
- #329
- #333
- #364
- add some precaution to avoid strange interactions with packs (b052a9a)
- ein tool estimate-hours with shallow clone support (30b22a8)
- simplify estimate-hours by just looking at the author signature (beb478f)
- Adjust to breaking changes in
git-traverse
(d79b506) - Full error handling for CommitRefIter (b94471a)
- #366
- #67
- Uncategorized
- Merge branch 'for-onefetch' (8e5cb65)
- Release git-hash v0.9.3, git-features v0.20.0, git-config v0.2.0, safety bump 12 crates (f0cbb24)
- Merge branch 'svetli-n-refactor_git_config_tests' (babaa9f)
- make fmt (7cf3545)
- adapt to breaking changes in git-actor (40c48c3)
ein find
with support for worktree checkouts (3f28e20)ein find --debug
to learn why it is slow (70109be)- thanks clippy (804d5f1)
- thanks clippy (5db3993)
- Release git-tempfile v2.0.0, safety bump 6 crates (90b1c42)
- upgrade document-features (c35e62e)
- Merge branch 'AP2008-implement-worktree' (f32c669)
- Release git-hash v0.9.2, git-object v0.17.1, git-pack v0.16.1 (0db19b8)
- Merge branch 'index-verification' (ad3c803)
- Release git-config v0.1.11 (a605b67)
- Merge branch 'index-information' (025f157)
- thanks clippy (3aba4b4)
- 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)
- thanks clippy (5a68d2f)
- Merge branch 'use-midx-in-store' (338521b)
- keep non "git" repository name extensions (d33795f)
- thanks clippy (533a532)
- Release git-chunk v0.2.0, safety bump 4 crates (b792fab)
- Merge branch 'oknozor-feat/traversal-sort-by-committer-date' (6add377)
- Fix pack/create (4d8de93)
- Release git-features v0.18.0, git-actor v0.7.0, git-config v0.1.9, git-object v0.16.0, git-diff v0.12.0, git-traverse v0.11.0, git-pack v0.15.0, git-odb v0.25.0, git-packetline v0.12.2, git-transport v0.14.0, git-protocol v0.13.0, git-ref v0.10.0, git-repository v0.13.0, cargo-smart-release v0.7.0, safety bump 12 crates (acd3737)
- Adjust changelogs prior to release (ec38950)
- Merge branch 'git-loose-objects' of https://github.com/xmo-odoo/gitoxide into xmo-odoo-git-loose-objects (ee737cd)
- Adjusting changelogs prior to release of git-config v0.1.8, git-object v0.15.1, git-diff v0.11.1, git-traverse v0.10.1, git-pack v0.14.0, git-odb v0.24.0, git-packetline v0.12.1, git-transport v0.13.1, git-protocol v0.12.1, git-ref v0.9.1, git-repository v0.12.0, cargo-smart-release v0.6.0, safety bump 5 crates (39b40c8)
- Merge branch 'header-field-multi-improve' of https://github.com/xmo-odoo/gitoxide into xmo-odoo-header-field-multi-improve (d88e377)