rustyhorde / vergen

Generate cargo instructions at compile time in build scripts for use with the env! or option_env! macros
Apache License 2.0
370 stars 55 forks source link

Update gix requirement from 0.55.2 to 0.56.0 #268

Closed dependabot[bot] closed 8 months ago

dependabot[bot] commented 9 months ago

Updates the requirements on gix to permit the latest version.

Release notes

Sourced from gix's releases.

gix v0.56.0

New Features

  • add gitoxide.core.externalCommandStderr to allow enabling stderr to the enclosing terminal. Previously, this was enabled by default, now it can additionally be disabled by the caller.
  • use gitoxide.credentials.helperStderr key to control how stderr is handled with helpers. That way users can configure each repository instance according to their needs, with which includes disabling the stderr of credential helpers.
  • revision::Spec::path_and_mode() Provide additional information about revspecs for use with worktree filters.
  • add key for diff.external. That way it's conceivable that applications correctly run either a configured external diff tool, or one that is configured on a per diff-driver basis, while being allowed to fall back to a built-in implementation as needed.
  • add thediff::resource_cache() low-level utility for rapid in-memory diffing of combinations of resources. We also add the object::tree::diff::Platform::for_each_to_obtain_tree_with_cache() to pass a resource-cache for re-use between multiple invocation for significant savings.
  • Add config value gitoxide.http.sslNoVerify This value can by overriden by GIT_SSL_NO_VERIFY env variable. We use the value to override http.sslVerify when specifying ssl_verify in transport Options.
  • In gix read http.sslVerify config value and pass it to gix-transport.
  • add gitoxide.core.refsNamespace key and respect the GIT_NAMESPACE environment variable. It's also provided as context value.
  • make verbose-object-parsing-errors available in gix. That way, it's easy to create programs that are geared towards debugging repositories and finding invalid objects with detailed errors.
  • add the gitoxide.credentials.terminalPrompt key to represent the GIT_TERMINAL_PROMPT That way, it's easy to control the usage of terminals without using and environment.
  • Add http-client-curl-rustls (CLI) and blocking-http-transport-curl-rustls (lib) features to avoid openssl. That way, we should be able to avoid crashes on certain CI configurations.
  • add Head::try_into_peeled_object() and Head::peel_to_object_in_place() This makes it easier to peel to a specific object type, after all tags have been followed, without having to assume an intermediate commit.

Bug Fixes

  • assure the correct repository is used for checkouts after clone. If this is not the case, it's possible for filters to run in the context of potential parent repositories, which then can have all kinds of issues.

    In case of git-lfs, for instance, it would try to download objects from the wrong repository.

  • Allow multiple packs to be received one after another. Previously it would be difficult to perform another fetch operation on the

... (truncated)

Changelog

Sourced from gix's changelog.

Changelog

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.

0.32.0 (2023-12-06)

New Features

  • gix rev parse --format to provide different versions of the same content. This only applies to blobs, but allows to obtain different versions of the same blob like:

    • what's stored in Git
  • what would be checked out to the worktree
  • what would be diffed

Bug Fixes

  • in --trace mode, greatly increase message-buffer size. That way, it's much less likely that messages will get lost due to being overwritten before they can be displayed every 100ms or so.
  • set binary name for completions

Bug Fixes (BREAKING)

  • rename GITOXIDE_* environment variables to GIX_#

Commit Statistics

  • 27 commits contributed to the release over the course of 54 calendar days.
  • 54 days passed between releases.
  • 10 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

... (truncated)

Commits
  • 476d5ef Release gix v0.56.0
  • a6f73f4 update lockfile to point to latest gix-tempfile
  • c8568b9 Release gix-worktree-state v0.5.0, gix v0.56.0, gix-fsck v0.1.0, gitoxide-cor...
  • d3fd11e Release gix-worktree v0.28.0, gix-diff v0.38.0, gix-discover v0.27.0, gix-mac...
  • 55d386a Release gix-date v0.8.1, gix-hash v0.13.2, gix-trace v0.1.4, gix-features v0....
  • 2b1c60a more changelogs, this time for production crates
  • d3dcbe5 prepare changelogs prior to release
  • 8156340 Merge branch 'adjustments-for-cargo'
  • 2762724 feat: add gitoxide.core.externalCommandStderr to allow enabling stderr to...
  • ceb8826 feat!: add Context::stderr to configure whether or not to supress stderr.
  • Additional commits viewable in compare view


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 commands and options
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 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)
dependabot[bot] commented 8 months ago

Superseded by #273.