Skip to content

Commit

Permalink
Bump gix from 0.63.0 to 0.64.0 (#132)
Browse files Browse the repository at this point in the history
[//]: # (dependabot-start)
⚠️  **Dependabot is rebasing this PR** ⚠️ 

Rebasing might not happen immediately, so don't worry if this takes some
time.

Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.

---

[//]: # (dependabot-end)

Bumps [gix](https://github.com/Byron/gitoxide) from 0.63.0 to 0.64.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Byron/gitoxide/releases">gix's
releases</a>.</em></p>
<blockquote>
<h2>gix v0.64.0</h2>
<h3>New Features</h3>
<ul>
<li>enable tracing with the new <code>tracing</code> feature in the
Cargo manifest.
That way, it's easier to directly enable tracing, instead of having to
resort to <code>gix-features</code>.</li>
<li>add <code>config::section::filter()</code> for the default section
filter.
Provide the default implementation to determine which configuration
sections should be trusted.</li>
<li>provide <code>config::credential_helpers()</code> function to
configure an invocation.
That way it's possible to use git credential helpers even without a
Repository instance.</li>
<li>export <code>gix_validate</code> as <code>validate</code>.
The crate appears in the public API of
<code>gix_index::State::from_tree</code>
but it's types weren't readily available.</li>
<li>add <code>PrepareFetch::with_ref_name()</code> to control which ref
is checked out.</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>
<p>make sure that <code>refs/heads/HEAD</code> isn't considered
conflicting</p>
</li>
<li>
<p>re-export <code>gix_validate</code> as it's now part of the public
API.
This allows calling <code>State::from_tree()</code>.</p>
</li>
<li>
<p>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.</p>
<p>This is now 'fixed' by simply aborting early if there is no refspec
mapping at all.</p>
<p>Further, it aborts as early as possible with a nicer error message,
after all, there is no use in having no mapping.</p>
<p>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.</p>
</li>
</ul>
<h3>Other</h3>
<ul>
<li><!-- raw HTML omitted --> gate parking_lot behind interrupt
feature</li>
</ul>
<h3>New Features (BREAKING)</h3>
<ul>
<li>
<p><code>gix-config</code> convenience initiative
A new <code>gix_config::AsKey</code> trait allows all
<code>gix_config::File</code> methods
to receive an implementation of <code>AsKey</code> instead of the tuple
of
<code>(section, subsection, value_name)</code>. This is the default, and
all
methods that take a tuple have been renamed to
<code>&lt;name&gt;_by()</code>, note the <code>_by</code> suffix.</p>
<p>The terminology was reworked so that <code>key</code> is now only
used to identify a value.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/Byron/gitoxide/commit/0e8508a629c74068a1e667ea4222c3e69ae0b861"><code>0e8508a</code></a>
Release gix v0.64.0, gix-fsck v0.4.1, gitoxide-core v0.39.0, gitoxide
v0.37.0</li>
<li><a
href="https://github.com/Byron/gitoxide/commit/77bda04c366e2da14a8aa0c9dc421bc2a75a8d6e"><code>77bda04</code></a>
update Cargo.lock to make 'gix' build</li>
<li><a
href="https://github.com/Byron/gitoxide/commit/6232824301847a9786dea0b926796a3187493587"><code>6232824</code></a>
Release gix-actor v0.31.5, gix-filter v0.11.3, gix-fs v0.11.2,
gix-commitgrap...</li>
<li><a
href="https://github.com/Byron/gitoxide/commit/5fb6a2dec61b7fcd8e5f0f6ff9e5cc41975f2d52"><code>5fb6a2d</code></a>
fix-up version of <code>gix-date</code> depndend on in
<code>gix-actor</code></li>
<li><a
href="https://github.com/Byron/gitoxide/commit/a1b73a67c19d9102a2c5a7f574a7a53a86d0094c"><code>a1b73a6</code></a>
Release gix-glob v0.16.4, gix-attributes v0.22.3, gix-command v0.3.8,
gix-fil...</li>
<li><a
href="https://github.com/Byron/gitoxide/commit/0470df3b8ebb136b219f0057f1e9a7031975cce5"><code>0470df3</code></a>
update manifests (by cargo-smart-release)</li>
<li><a
href="https://github.com/Byron/gitoxide/commit/99c00cc3ae9827555e2e1162328bc57038619d1f"><code>99c00cc</code></a>
prepare changelog prior to release</li>
<li><a
href="https://github.com/Byron/gitoxide/commit/b4dba1c187baba44ee927daa538783f7f424b2f2"><code>b4dba1c</code></a>
Merge branch 'fixes'</li>
<li><a
href="https://github.com/Byron/gitoxide/commit/1e92d1ed3f23e9de84203252d64e701e2c7fb941"><code>1e92d1e</code></a>
fix: assure that worktree-roots are never considered ignored (<a
href="https://redirect.github.com/Byron/gitoxide/issues/1458">#1458</a>).</li>
<li><a
href="https://github.com/Byron/gitoxide/commit/1ebd6c71457b292cdef97c218fb3e4176d10d502"><code>1ebd6c7</code></a>
add tests that show what happens with allow-lists and <code>/</code> in
root (<a
href="https://redirect.github.com/Byron/gitoxide/issues/1458">#1458</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/Byron/gitoxide/compare/gix-v0.63.0...gix-v0.64.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=gix&package-manager=cargo&previous-version=0.63.0&new-version=0.64.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jul 27, 2024
1 parent 6a29548 commit c01cfb5
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 76 deletions.
Loading

0 comments on commit c01cfb5

Please sign in to comment.