Changed
- 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
- specify ThreadSafeRepository is not Send/Sync without "parallel"
New Features
- 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 togit checkout
. - add
Repository::head_tree_id_or_empty()
for convenience. - add
Repository::workdir_path()
to easily obtain aPath
for worktree items. - add
Repository::workdir()
as replacement forRepository::work_dir()
.
Keep the latter as deprecated though. filter::Pipeline::worktree_file_to_object()
now can addCommit
type objects.- add
filter::Pipeline::worktree_file_to_object()
.
That way it's easier to correctly add whole files into the object
database. - 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. - 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. - add
Repository::big_file_threshold()
to easily learn what Git considers a big file.
Bug Fixes
-
Don't panic when rev-parsing
^^^
and similar -
filter::Pipeline::convert_to_git()
now also works on Windows under all circumstances. -
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 tocommit_as()
.This als adds
Repository::edit_references_as(committer)
to allow passing
a given committer.
Other
-
Repository::commit()
now explains how to create a commit without ref updates.
Changed (BREAKING)
- drop obsolete SHA‐1 features
The hashing API has moved togix_hash::hasher
, and we now use
sha1-checked
unconditionally.
Bug Fixes (BREAKING)
- make clear what
with_pruned()
is doing by renaming it towith_boundary()
.
This is how it acts, and it's not at all the same ashide()
ingit2
.
Commit Statistics
- 57 commits contributed to the release.
- 17 commits were understood as conventional.
- 2 unique issues were worked on: #1829, #1914
Thanks Clippy
Clippy helped 1 time to make code idiomatic.
Commit Details
view details
- #1829
- Assure
Repository::commit_as()
also uses the committer for reflogs (9bec947)
- Assure
- #1914
- Don't panic when rev-parsing
^^^
and similar (aa8daf8)
- Don't panic when rev-parsing
- Uncategorized
- 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
orGIT_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 aPath
for worktree items. (776f9be) - Add
Repository::workdir()
as replacement forRepository::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 addCommit
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 towith_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)