All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
This release also fixes compatibility issues that formerly prevented to fetch or clone form https://googlesource.com
.
- represent
GIT_(COMMITTER|AUTHOR)_(NAME|EMAIL|DATE)
with git configuration. That way it becomes more obvious where values are coming from.
-
auto-enabled verbosity for
gix fetch/clone
and add--no-verbose
. I found myself always adding (and having to remember to add) the-v
flag for long-running operations so these should be able to default to a higher verbosity level.To counter that, there is a new
--no-verbose
flag to turn that off. -
add
--strict
option to enforce strict checking of configuration. -
gix odb stats
to calculate statistics on the object database. This includes the amount of objects along with a listing of where they are located. -
gix clone --no-tags
support. This is the same asgit clone --no-tags
.
-
open::ReplacementObjects
is removed in favor of two custom git-configuration flags. Now it's possible to map the environment variablesGIT_REPLACE_REF_BASE
andGIT_NO_REPLACE_OBJECTS
to custom git configuration keys which can also be set, namelygitoxide.odb.replaceObjectsRefBase
andgitoxide.odb.noReplaceObjects
.Along with the possibility of disabling the usage of
GIT_
prefixed environment variables one reaches the previous level of control without making object replacement a special case.
-
represent object cache configuration like
GITOXIDE_PACK_CACHE_MEMORY
in git-configuration. That way there is a unified system for how to set values, which may be overridable by configuration variables or not.With this changes, the explicit application of environment variables for setting the cache isn't required anymore as everything happens using git-configuration, and automatically, while providing full control like before.
- 21 commits contributed to the release over the course of 30 calendar days.
- 30 days passed between releases.
- 7 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
view details
- Uncategorized
- fix label for
ein t estimate-hours
command (4c93de1
) - Merge branch 'read-header' (
3d01252
) gix odb stats
to calculate statistics on the object database. (8c9c243
)- Merge branch 'adjustments-for-cargo' (
083909b
) gix clone --no-tags
support. (e2b8c5d
)- update
gix progress
to inform aboutremote.<name>.tagOpt
(3ebb340
) - Merge branch 'adjustments-for-cargo' (
70ccbb2
) - upgrade to prodash v22 for API improvements (
77ab98d
) - auto-enabled verbosity for
gix fetch/clone
and add--no-verbose
. (9814369
) - switch from
atty
tois-terminal
(7304bc1
) - adapt to changes in
git-repository
(c4f68bf
) - represent object cache configuration like
GITOXIDE_PACK_CACHE_MEMORY
in git-configuration. (becbd8d
) - represent
GIT_(COMMITTER|AUTHOR)_(NAME|EMAIL|DATE)
with git configuration. (a4ac9cf
) open::ReplacementObjects
is removed in favor of two custom git-configuration flags. (49f39d6
)- apply related environment variables as config overrides (
9441c26
) - adapt to changes in
git-repository
(f1a4c8b
) - update progress of http.proxyAuthMethod (
872dc1a
) - add
--strict
option to enforce strict checking of configuration. (aeb4a1d
) - don't lock stdout/stderr as it will deadlock on dbg-printing (
62cae0e
) - adapt to changes in
git-config
(1c2e755
) - Merge branch 'main' into http-config (
bcd9654
)
- fix label for
-
Make
reqwest
TLS backend configuration easy. We provide the choice ofnative-tls
orrust-tls
. If none is provided, the user can configure on their on similar to how it's done ingit-repository
.Please note that a choice now has to be made or HTTPS will not be available, so use one of…
- blocking-http-transport-reqwest-rust-tls
- blocking-http-transport-reqwest-native-tls
- 1 commit contributed to the release.
- 4 days passed between releases.
- 1 commit was understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
view details
- Uncategorized
- Make
reqwest
TLS backend configuration easy. (3ddbd2d
)
- Make
This releases fixes gix fetch
so that it is able to clone or fetch pytorch
or other repositories on case-insensitive file systems.
It's also an attempt to trigger CI to build binary releases.
- 9 commits contributed to the release over the course of 9 calendar days.
- 10 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
view details
- Uncategorized
- Merge branch 'http-config' (
665b53e
) - Document that histogram is now the default diff algorithm (
c76572b
) - Introduce new
gitoxide.http.connectTimeout
for more control for git clients (2ab80e4
) - keep track of
no_proxy
environment variable support (f0625de
) - update progress (
3d9fb6c
) - don't forget to update 'progress' (
0ec5220
) - update progress with gitoxide.userAgent (
1c012f4
) - plan for user agent string configuration (
f5499a5
) - keep track of http related configuration keys. (
1afaebd
)
- Merge branch 'http-config' (
-
gix remote ref-map --show-unmapped-remote-refs
. That way it's more obvious to see what was filtered out by ref-specs.It's also great to validate that server-side filtering via ref-prefix will not send refs that are referred to by symbolic refs that are not filtered out. That should be fine as it's all about objects, it's just something to deal with as we may have to deal with symbolic refs that aren't in the set of refs the server sent to us.
-
diff algorithm is controlled by git configuration
diff.algorithm
-
ein t hours
allows to specify the amount of worker threads.
-
collect
stderr
and print it afterwards to avoid intersection with line progress. Previously it would happen that stderr would be printed directly and mix with the line progress (as in-v
) which also prints to stderr.Now errors are collected and output at the end once the line renderer was already shutdown.
- remote
lock_mode
from all methods dealing with reference edits. It is now read fromcore.filesRefLockTimeout
accordingly.
- remove
gix remote --url
in favor of determining the intention similar togit fetch
- 65 commits contributed to the release over the course of 47 calendar days.
- 47 days passed between releases.
- 6 commits were understood as conventional.
- 2 unique issues were worked on: #450, #536
Clippy helped 1 time to make code idiomatic.
view details
- #450
- keep track of several branch related keys (
443a75a
) gix remote ref-map --show-unmapped-remote-refs
. (e973dfe
)- update progress as we now respect
diff.algorithm
(30d32e7
) - apply configuration overrides to newborn repo during clone (
c8ef759
) - collect
stderr
and print it afterwards to avoid intersection with line progress. (3a05328
) - reduce verbosity of
clone
and print once entire clone is done (9a476df
) - first rough sketch of
gix clone
(23a5e8b
) - progress totals (planned, devitaion) (
63947ae
) - prepare attribute-group setup as far as possible. (
f5e2eeb
) - update usage of
core.checkState
(8b2aba1
) - update progress based on filesystem config usage (
de13c66
) - inform about even more keys in
gix progress
(0e9bd41
) - plan more core filesystem attributes (
d10a82e
) - update
init.defaultBranch
- now used by custom initialization. (4d6d7bb
) - support for handshake information in
gix fetch
(c47dcc6
) - fix build (
d034882
) - remove
gix remote --url
in favor of determining the intention similar togit fetch
(92bbe33
) - support for
--url
for arbitrary urls when fetching (8c7351c
) - Frame for
gix fetch
(5b72d27
) - update progress information to include packedRefsTimeout (
fd18320
) - remote
lock_mode
from all methods dealing with reference edits. (3a0fb1b
) - add information about planned lock timeout support (from configuration) (
7076891
) - Add remotes. as planned feature for remotes (
3c188b2
) - slightly nicer styling of config keys (
eade88f
) - complete listing of records based on current usage, probably (
6abd5a4
) - add more records (
5c0d0ab
) - Add tabled for nicer printing (
65e6496
) - refactor (
b42b08a
) - add support for more types of configurations (
317e02a
) - A very first version of
gix progress show
(92e082a
)
- keep track of several branch related keys (
- #536
ein t hours
allows to specify the amount of worker threads. (20259da
)
- Uncategorized
- Merge branch 'write-sparse-index' (
ba17db0
) - plan
index.version
for when we can write V4 indices. (da96d34
) - notes about the split-index extension. (
ad44982
) - take note of additional options for promisor packs and partial clone filters (
1ec27f8
) - make note of
extension.worktreeConfig
(fe1e646
) - Merge branch 'main' into write-sparse-index (
c4e6849
) - add
init.templateDir
togix progress
(9fab050
) - make fmt (
ea2136b
) - Merge branch 'gix-clone' (
def53b3
) - diff algorithm is controlled by git configuration
diff.algorithm
(b1edb9e
) - Merge branch 'main' into gix-clone (
fa27570
) - Merge branch 'imra-diff' (
f53f942
) - adapt to changes in
git-diff
for a 2x speedup when calculating line changes (296f3b6
) - update
gix progress
records (b05a2e7
) - Merge branch 'main' into gix-clone (
de4fe06
) - Mark the upcoming usage of init.defaultBranch. (
6225f35
) - Merge branch 'fix-gix-index-from-tree' (
da5f63c
) - write index without output path to memory only. (
c8d0345
) - Merge branch 'gix-index-from-tree' (
8c24386
) - refactor (
67f2247
) - refactor (
01ab5ca
) - update with various configuration variables relevant to checking out worktrees (
09d767a
) - Merge branch 'clone' (
507dc7e
) - update usage of clone related configuration (
1a1e862
) - update progress with intended uses of
clone.
variables (8b804a3
) - Merge branch 'main' into new-http-impl (
702a161
) - make fmt (
53acf25
) - Merge branch 'fetch-pack' (
f47c891
) - Merge branch 'fetch-pack' (
3c49400
) - update docs (
c5c0ac5
) - input id can now be a commit or tree as prefix or full object id (
8ef3fcb
) - thanks clippy (
8dadd70
) - Merge branch 'fix-odb-race' (
b862fc5
) - Merge branch 'diff' (
25a7726
)
- Merge branch 'write-sparse-index' (
-
ein tool hours -s
was split into-f|--file-stats
and-l|line-stats
. That way more information is generated at increasingly high costs.
-
ein tool hours --stat
to collect additional statistics per author. Note that these are expensive and unconditionally use threads to speed up these computations. -
ein tool hours -b
ignores bots. For now it only considers bots with names containing[bot]
.
- 21 commits contributed to the release over the course of 20 calendar days.
- 27 days passed between releases.
- 3 commits were understood as conventional.
- 2 unique issues were worked on: #450, #470
view details
- #450
- refactor (
11851f3
) - option to print server information about the connection (
4720666
) - show fixes as well (
2237495
) - Correct printing of tag information (even though it doesn't look great) (
f4d8198
) - wire up the
ref-map
sub-command. (94c2b78
) - Select
gix
commands will now load the git installation configuration (23d2dec
) - refactor (
7abc0a3
) - Add sketch of
gix credential
(642e21f
)
- refactor (
- #470
- Uncategorized
- Merge branch 'hours-upgrade' (
26489d1
) - use rev-specs instead of ref-names (
cf7182e
) ein tool hours -b
ignores bots. (5d0332f
)- Merge branch 'filter-refs' (
3773b92
) - implement
gix index from-tree
(2fbd3df
) - make fmt (
535e967
) - Merge branch 'filter-refs-by-spec' (
5c05198
) - Merge branch 'main' into index-from-tree (
bc64b96
) - Merge branch 'main' into filter-refs-by-spec (
56ba481
) - A basic implementation of rev-list without anything fancy (
791dd66
)
- Merge branch 'hours-upgrade' (
- uniformize deny attributes
- Support for
-c/--config
ingix
-
gix remote refs
to list all remote references of a suitable remote. This takes into account either a named remote, or the remote associated with the current branch, or the default remote it could deduce or obtain from the configuration. - use docsrs feature in code to show what is feature-gated automatically on docs.rs
- remove
gix free remote ref-list
in favor ofgix remote refs
The functinality is the same, but the latter is built on top of a repository which is slightly less flexible, but preferable over maintaining a non-repo version.
- 15 commits contributed to the release over the course of 5 calendar days.
- 6 days passed between releases.
- 5 commits were understood as conventional.
- 1 unique issue was worked on: #450
Clippy helped 1 time to make code idiomatic.
view details
- #450
- Support for -c CLI config overrides in
gix config
. (19c1746
) - remove
gix free remote ref-list
in favor ofgix remote refs
(dda9957
) - Support for
-c/--config
ingix
(45a30f0
) - refactor (
e0be6e9
) - Add support for passing urls directly to bypass all remote repository logic. (
df3cf18
) gix remote refs
to list all remote references of a suitable remote. (5d6d5ca
)- Try to use maybe async for the simplest of possibly blocking remote interactions (
db4df25
) - basic parsing of
gix remote refs
without any implementation. (f8f1249
)
- Support for -c CLI config overrides in
- Uncategorized
- Merge branch 'remote-ls-refs' (
39d585d
) - thanks clippy (
bb6813a
) - Merge branch 'main' into remote-ls-refs (
e2ee3de
) - Merge branch 'docsrs-show-features' (
31c2351
) - use docsrs feature in code to show what is feature-gated automatically on docs.rs (
b1c40b0
) - uniformize deny attributes (
f7f136d
) - Merge branch 'main' into remote-ls-refs (
bd5f3e8
)
- Merge branch 'remote-ls-refs' (
- Invert behaviour to
open::Options::strict_config()
, with lenient being the default. This means API users will get libgit2 behaviour but commands likegix
can change options to emulategit
behaviour.
-
--cat-file
flag forgix rev parse
to cat instead of resolving. -
gix rev previous-branches
subcommand
-
ein tools
toein tool
for as it's more intuitive
-
gix rev resolve --explain
- 21 commits contributed to the release over the course of 26 calendar days.
- 26 days passed between releases.
- 5 commits were understood as conventional.
- 1 unique issue was worked on: #427
view details
- #427
- Uncategorized
- Merge branch 'core-abbrev-handling' (
dbaff13
) - Control which command is lenient or not. That way
gix-config
can be lenient. (6a9c58f
) - Invert behaviour to
open::Options::strict_config()
, with lenient being the default. (0235111
) - Merge branch 'main' into remote-ls-refs (
c4bf958
) - Merge branch 'index-write-refactor' (
805f432
) ein tools
toein tool
for as it's more intuitive (edf73dd
)- Merge branch 'main' into write-index-v2 (
a938986
) - add aliases to make revision sub-commands more accessible (
a6d79e3
) - 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
) - Merge branch 'main' into pathspec (
7b61506
) - make fmt (
47724c0
) - Merge branch 'kianmeng-fix-typos' (
4e7b343
) - Fix typos (
e9fcb70
)
- Merge branch 'core-abbrev-handling' (
-
gix config
with section and sub-section filtering. -
gix config
lists all entries of all configuration files git considers. Filters allow to narrow down the output.
- 47 commits contributed to the release over the course of 101 calendar days.
- 108 days passed between releases.
- 2 commits were understood as conventional.
- 3 unique issues were worked on: #301, #331, #427
Clippy helped 3 times to make code idiomatic.
view details
- #301
- Allow reading patterns from stdin (
0c597fe
) - Add
--show-ignore-patterns
togix repo exclude query
(09f904b
) - Basic prefix support as well the first working version of
exclude query
(9cb8385
) - Support for overrides on the command-line (
7d98b21
) - fix build (
cb56f12
) - refactor (
3ff991d
) - frame for
gix repo exclude query
(a331314
) - make fmt (
50ff7aa
)
- Allow reading patterns from stdin (
- #331
- fix journey tests after
gix
restructuring (59b95c9
) gix config
with section and sub-section filtering. (eda39ec
)gix config
lists all entries of all configuration files git considers. (d99453e
)- refactor (
a437abe
) - move 'exclude' up one level and dissolve 'repo' subcommand (
8e5b796
) - move 'mailmap' up one level (
5cf08ce
) - move 'odb' up one level (
0ed65da
) - move 'tree' up one level (
38a8350
) - move 'commit' up one level (
72876f1
) - move 'verify' up one level (
ac7d99a
) - move 'revision' one level up (
c9c78e8
) - move 'remote' to 'free' (
8967fcd
) - move commitgraph to 'free' (
f99c3b2
) - move index to 'free' (
83585bd
) - move 'pack' to 'free' (
1cdecbc
) - migrate mailmap to the new 'free' section (
141c5f1
) - first step towards moving all repository-commands one level up. (
f4e1810
) - make obvious what plumbing and porcelain really are (
faaf791
) - adjustments due to breaking changes in
git_path
(4420ae9
)
- fix journey tests after
- #427
- Uncategorized
- Merge branch 'gix-repo-config' (
afecb63
) - thanks clippy (
48b3f4a
) - Merge pull request #1 from Byron/main (
085e76b
) - make fmt (
0700b09
) - Merge branch 'main' into pathspec (
89ea12b
) - Merge branch 'main' into cont_include_if (
0e9df36
) - Use git_path::realpath in all places that allow it right now (
229dc91
) - Merge branch 'main' into cont_include_if (
41ea8ba
) - Merge branch 'main' into git_includeif (
05eb340
) - Merge branch 'main' into msrv-for-windows (
7cb1972
) - make fmt (
251b6df
) - Merge branch 'worktree-stack' (
98da8ba
) - thanks clippy (
056e8d2
) - thanks clippy (
fdec111
) - Merge branch 'main' into repo-status (
4086335
) - Merge branch 'worktree-stack' (
e90d3fd
)
- Merge branch 'gix-repo-config' (
- Add
gix repo commit describe
It supports typical but basic flags mostly similar to the ones in git.
- 5 commits contributed to the release over the course of 1 calendar day.
- 2 days passed between releases.
- 1 commit was understood as conventional.
- 1 unique issue was worked on: #298
view details
Adapt to changes in git-features
which change Send + Sync
to Send + Clone
. This happens to allow non-sync implementations (i.e. thread-local), along with Sync
ones
which usually are Clone
too as they are passed by immutable reference (which is Clone + Copy
).
- Remove light* features, add 'lean-async' in its place; remove termion support
- remove
Option<impl Progress>
in favor ofimpl Progress
- remove unnecessary
Arc
aroundshould_interrupt
flag - remove Sha1 mentions in
index::verify::Mode::*
variants The hash is repository defined and not hard-coded - Remove lean plumbing CLI
- Collect all stdout messages in line renderer as well Otherwise the threaded line renderer will interfere with genuine program output.
-
gix mailmap verify
command -
ein 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-bin documentation of feature toggles Unfortunately, these don't show up on docs.rs due to it being a abinary only crate. One could consider throwing in a lib just for good measure.
- 63 commits contributed to the release over the course of 126 calendar days.
- 165 days passed between releases.
- 10 commits were understood as conventional.
- 12 unique issues were worked on: #215, #263, #266, #279, #287, #289, #293, #298, #301, #329, #366, #67
view details
- #215
- #263
- #266
- Provide handle with a snapshot of the store's state (
6e0cd6d
)
- Provide handle with a snapshot of the store's state (
- #279
- Fast-path multi-pack index verification in the CLI (
bcde935
) - Basic multi-pack index creation (
89428b2
) - 'index' with its own sub-commands (
c4c5678
) - even nicer printing (
d2bea27
) - remove
Option<impl Progress>
in favor ofimpl Progress
(bf04644
) - remove unnecessary
Arc
aroundshould_interrupt
flag (d851bed
) - remove Sha1 mentions in
index::verify::Mode::*
variants (c2679a0
)
- Fast-path multi-pack index verification in the CLI (
- #287
- #289
- #293
- faster writing to stdout/stderr for plumbing commands (
d04dc01
) - Add 'index verify' subcommand to 'gix' (
1ac2c21
) - Flag to hide extension details (
34ea001
) - Print basic index information, including the tree extension (
9277cf8
) - Basic entry information (
239e7b2
) - refactor (
8bf585d
) - JSON output for index entries (
3fc1622
)
- faster writing to stdout/stderr for plumbing commands (
- #298
- #301
- greatly simplify render-line logic (
a8fa53a
) - pass thread-limit along to checkout (
07e9081
) - add thread-count and chunk-size computation; interrupt capability (
8cbe85d
) - 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
) - refactor (
e6a3d43
) - 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
) - frame for traversing tree entries (
0e55fbb
) - Properly use 'max-performance' feature toggle to get pack caches :D (
a39d476
) - 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
) - support for unicode-precomposition for gix apps (
e90c123
)
- greatly simplify render-line logic (
- #329
- in-manifest and in-bin documentation of feature toggles (
25da30f
)
- in-manifest and in-bin documentation of feature toggles (
- #366
- #67
- --counting-threads flag to configure amount of threads when counting (
0090961
)
- --counting-threads flag to configure amount of threads when counting (
- Uncategorized
- make fmt (
7cf3545
) - small build now uses the line renderer as well (
652a0ac
) - Upgrade to prodash 19 (
90c6c5a
) ein find --debug
to learn why it is slow (70109be
)- fix clap warnings (
aa51e05
) - Merge branch 'index-verification' (
ad3c803
) - Merge branch 'index-information' (
025f157
) - improve CLI docs (
866530a
) - rename 'gix commitgraph' back to 'gix commit-graph' (
d6a72e7
) - Merge branch 'use-midx-in-store' (
338521b
) - Merge branch 'sync-db-draft' (
7d2e20c
) - thanks clippy (
b0f7328
)
- make fmt (
This release pins beta versions of clap
to avoid it to automatically fetch the latest one
during installation.
This is made possible due to clap
itself pinning its dependency
to the clap-derive
crate.
- 1 commit contributed to the release over the course of 1 calendar day.
- 4 days passed between releases.
- 0 commits were understood as conventional.
- 1 unique issue was worked on: #222
A first usable version of git-repository
to make using gitoxide
from your applications so much easier. It serves as a one-stop shop for application developers without sacrificing performance by default while making common use-cases more convenient.
git-repository
as hub crate for application development with focus on usability without sacrificing any knob to tune performance.- opt-in
async
forgit-packetline
,git-transport
andgit-protocol
for fully async git clients, along with thelight-async
feature toggle to build agix pack-receive
with an async client instead of a blocking one. - Statistics for
gix pack-create
with the-s/--statistics
flag to have data indicating the cost of the operation. Currently it's doing a lot of work that has to be avoided in order to be useable in production and the numbers underline that. Future iterations will cause key metrics to go down. - Packs are now reproducible by default, which means that the same tip will always generate a pack with the same hash. This may be a desirable property for some kinds of packs, but not for others which is why it can be turned off for a considerable speed boost.
git-tempfile
crategit-lock
crategit-ref
crate with complete loose-ref, packed-ref and transaction support.
- On M1, thanks to a new release, Sha1 is now computed much faster which unlocks a massive performance boost. In my test, verifying/decoding the entire linux kernel pack now happens in 17s, as compared to 37s for canonical
git
. git-object
parsing is a few percent faster thanks a reworked error handling for objects. By default, error collection is disabled entirely making the error case zero-sized. If needed, verbose and stacked errors can be turned on using a feature toggle for applications who expect repositories with malformed objects and need detailed diagnostics.
- control pack and object cache size in megabytes in some sub-commands
- 5 commits contributed to the release over the course of 26 calendar days.
- 35 days passed between releases.
- 1 commit was understood as conventional.
- 2 unique issues were worked on: #200, #67
This is a maintenance release.
- 1 commit contributed to the release over the course of 8 calendar days.
- 20 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
- 1 commit contributed to the release over the course of 1 calendar day.
- 1 day passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
- 42 commits contributed to the release over the course of 95 calendar days.
- 98 days passed between releases.
- 0 commits were understood as conventional.
- 1 unique issue was worked on: #83
Clippy helped 1 time to make code idiomatic.
- 32 commits contributed to the release over the course of 128 calendar days.
- 143 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Clippy helped 3 times to make code idiomatic.
Maintenance release without any new features.
These are created to account for breaking changes within the dependency graph of
gitoxide
crates. Due to some blunders in the past the version on crates.io
could not be installed anymore.
This was eventually fixed with new minor releases across the ecosystem.
Finally, yet another breaking change due to the introduction of the git-hash
crate to break a dependency cycle between git-object
and git-features
caused
yet another maintenance release.
Maintenance release without any new features.
- 5 commits contributed to the release over the course of 78 calendar days.
- 84 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
view details
- Uncategorized
- Merge branch 'commit-graph' into main (
9cb09b2
) - Add lean-plumbing docs for path of commit-graph-verify (
5c7b52d
) - [commitgraph] Implement basic commit-graph file verification. (
2571113
) - [commitgraph] Stub out commit-graph-verify plumbing command. (
aacf0f0
) - Merge branch 'main' into commit-graph (
ca5b801
)
- Merge branch 'commit-graph' into main (
- 1 commit contributed to the release over the course of 1 calendar day.
- 3 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
- fix installation via
cargo install
- 3 commits contributed to the release over the course of 6 calendar days.
- 6 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
view details
- add
remote-ref-list
andpack-receive
subcommands to gix
- rename plumbing sub-command from
index-from-pack
topack-index-from-data
- 14 commits contributed to the release over the course of 29 calendar days.
- 30 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
view details
- Uncategorized
- [clone] refs can now be written into a specified directory (
fb1f048
) - [clone] First version of writing references, but… (
445be27
) - [clone] first journey test for pack-receive (
46a3511
) - [clone] This actually works: first MVP of retrieving packs via clone (
c06d819
) - [ref-ls] add pretty version for ls-refs (
487d06d
) - [ref-ls] Fix progress display (
2fcb557
) - refactor (
b38290e
) - [ref-ls] refactor (
35e26fc
) - refactor (
f90b92f
) - [ref-ls] Frame for remote-ref-ls command in gitoxide-core (
161e7df
) - [clone] link up lean plumbing command with gitoxide-core: pack-receive (
5ea49c8
) - refactor (
40a6412
) - Less ambiguous name for 'index-from-pack': 'pack-index-from-data' (
386673c
) - refactor (
b4a6e16
)
- [clone] refs can now be written into a specified directory (
- add
pack-explode
andpack-index-from-data
sub-commands - massive speed improvements for
pack-verify
Many small and possibly breaking changes are not mentioned here.
- 46 commits contributed to the release over the course of 30 calendar days.
- 31 days passed between releases.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
view details
- Uncategorized
- Make obvious that interrupt request was received (
34b2373
) - make interrupt handler work reliably (
e71da0f
) - unify used ranges for line renderer amond pretty and lean interface (
f59f66e
) - Add percentage and throughput to tasks that matter (
763d7ca
) - Upgrade to latest iteration of prodash (
3a4faec
) - support for JSON format output (
1931575
) - first pieces of the index-from-pack journey tests (
181d69c
) - Add versions back to main command, remove from sub-commands (
e509373
) - ditch structopt in favor of clap 3.0 beta1 (
d7591e2
) - Move common flags to common plac (
c0352c2
) - Write about user interfaces and the use/non-use of async (
91ba045
) - interrupt support for pretty plumbing (
bca7ce2
) - Revert "Less memory for look up mode, faster start" - too slow (
584350a
) - Less memory for look up mode, faster start (
395c7e7
) - remove memory mode entirely (and some complexity with it) (
8812e91
) - turns out you never want to keep deltas in memory (
657aa2c
) - Remove support for keeping compressed memory to reduce the index size (
1e2ec7e
) - …but there seem to be issues with the kernel pack… (
cc147bc
) - minor fixes after first local tests - it's up to twice as fast!! (
43c7fd1
) - quick and dirty impl of lean command-line for index-from-pack (
9660bbf
) - upgrade dependencies (
44b8221
) - remove invalid clap configuration (
665696f
) - prepare full 'verify' implementation (
ee45c7f
) - refactor (
0a33b24
) - Allow sink-compress configuration; choose best algorithm (
29b9c23
) - Nice error message on failure (
adbc82c
) - The first 'explode' implementation… (
0d31ad1
) - Get all pieces ready for action (
1805d64
) - Pass option for safety checks down to explode(…) (
0bcb790
) - refactor (
f66b116
) - basic tests and CLI args for explode pack (
f932256
) - rename verify-pack to pack-verify (keeping it more formal) (
ec8c48a
) - refactor (
d3c00c8
) - Change bin names from 'gio' to 'gix' and 'gixp' (
5e23137
) - Revert "Invert --statitics switch to become --no-statistics" (
93a9b30
) - Invert --statitics switch to become --no-statistics (
aeb8778
) - use faster algorithm by default (
bb45c3d
) - Fix clippy (
ec40e09
) - Change course and do pack streaming first (
bcb275e
) - get rid of annoying warnings - there is no better and easier way (
41f38c4
) - Fully implement --encode and --re-encode flags (
a7cfac8
) - prepare for re-encoding each pack object (
afae684
) - fix naming change, which was introduced accidentally (
fbb9f98
) - refactor (
2888f1b
) - pass threadlimit down from CLIs (
f98c5b1
) - add new Context argument to support more configuration options (
7c5d8b8
)
- Make obvious that interrupt request was received (
- Initial release with
pack-verify
- 54 commits contributed to the release over the course of 765 calendar days.
- 0 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
view details
- Uncategorized
- bring color back to 'max' versions (
c68d9ab
) - Support for disabling the cursor in the pretty line renderer (
48c4bbd
) - Allow TUI to terminate action properly (
1f1b725
) - refactor (
cce71aa
) - refactor (
f276a05
) - preliminary support for line renderer in max version (
4aa8022
) - unify frame rate across plumbing (and later potentially porcelain) (
e2a7bdd
) - refactor (
41e01a5
) - Proper implementation of line renderer into 'lean' CLI (
e98e7c2
) - Mild improvements to look of verbose log (
5fff552
) - first very basic version of line renderer progress - works… (
0cc1bf2
) - prepare for optional addition of line renderer for lean version (
aac0d34
) - upgrade to prodash version 7 (
af02b46
) - Make --version flags work as expected. (
a4d978c
) - Merge branch 'release' (
a1a0b13
) - rename 'pretty' target into 'max', a better fit for what it is (
5acecc5
) - Make gio commands less cumbersome, self-document their build type (pretty, lean) (
1f9bc03
) - Allow to limit the logging depth for less cluttered output (
fce7035
) - support for json in pretty-plumbing and gitoxide (on demand) (
b3780f8
) - Simplify the 'keep open' logic of TUI progress window (
13cd8ce
) - attempt to implement progress with a mode enum (
ac490c2
) - Allow for more screen space when formatting (
6794300
) - assure pretty progress doesn't occlude the output (
122d69f
) - fix pretty build (
6adf615
) - pass average stats through to the top level (
5b4979c
) - refactor (
7add82c
) - Now ACTUALLY stop TUI when there is no progress anymore :D (
3bf3321
) - Automatically close the TUI when there is no progress anymore. (
c416152
) - Assure we wait for GUI thread to finish (
60eaea0
) - pretty progress in a generalized form (
caa883b
) - neater progress log messages: don't show the module it originates from (
026a0dd
) - refactor (
30925e6
) - support for logging in pretty binaries (
67026e4
) - --verbose flag for lean plumbing binary (
aaf4825
) - first very basic progress implementation (
b820717
) - Pass progress everywhere, for now just to discard it (
da3ae1c
) - split plumbing into separate binary (
b1e51d6
) - refactor (
0fbba9f
) - refactor (
ba6a8ef
) - add initial version of 'lean-cli' feature toggle, but… (
f01c298
) - Support for verifying pack files and index files (
b09b4e1
) - reorganize crates to make 'gitoxide' the CLI, and 'gitoxide-core' the library (
0ac9c5a
) - Add simple pack verification to gio (
8c0e0b5
) - goodbye git-core, hello git-repository (
7cec2b6
) - document existing use of unsafe, deny everywhere else (
41f4bce
) - cargo clippy (
1179ac1
) - move parsing tests close to actual parsing (
3ca2c59
) - color for all grit commands/subcommands (
aa8efdd
) - use structopt instead of clap (
eb7388c
) - Remove failure from grit binary, too (
417c34b
) - refactor (
87c8a2e
) - cargo fmt (
2aa0857
) - implement git-init (
57737c2
) - Initial commit - based on standard project template (
c3d319f
)
- bring color back to 'max' versions (