Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the cargo group with 4 updates #153

Merged
merged 1 commit into from
Dec 24, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 23, 2024

Bumps the cargo group with 4 updates: anyhow, serde_json, thiserror and gix.

Updates anyhow from 1.0.94 to 1.0.95

Release notes

Sourced from anyhow's releases.

1.0.95

Commits
  • 48be1ca Release 1.0.95
  • a03d6d6 Merge pull request #402 from dtolnay/fromboxed
  • 52e4abb Add Error::from_boxed with documentation about bidirectional ?
  • ffecefc Merge pull request #401 from dtolnay/construct
  • 671f700 Add construct_ prefix to name of private construct functions
  • See full diff in compare view

Updates serde_json from 1.0.133 to 1.0.134

Release notes

Sourced from serde_json's releases.

v1.0.134

  • Add RawValue associated constants for literal null, true, false (#1221, thanks @​bheylin)
Commits
  • b2a1415 Release 1.0.134
  • 9875785 Tweak wording of NULL/TRUE/FALSE documentation
  • 4aa05b9 Merge pull request #1222 from dtolnay/rawvalueassoc
  • f42c7c7 Move RawValue associated constants into same impl block as public functions
  • 96576ba Merge pull request #1221 from bheylin/add-const-raw-values-for-null-and-bools
  • 4db66fb Add 'static lifetime to const's
  • 9c9aa1f Add literal 'null', 'true' and 'false' consts to RawValue struct.
  • See full diff in compare view

Updates thiserror from 2.0.7 to 2.0.9

Release notes

Sourced from thiserror's releases.

2.0.9

  • Work around missing_inline_in_public_items clippy restriction being triggered in macro-generated code (#404)

2.0.8

  • Improve support for macro-generated derive(Error) call sites (#399)
Commits

Updates gix from 0.68.0 to 0.69.1

Release notes

Sourced from gix's releases.

gix v0.69.0

Changed

  • Adjust gix::dirwalk::Options::{X,set_X} parameter names This adjusts the names of parameters to X and set_X methods of gix::dirwalk::Options (where X is an option name) to use a systematic naming convention:

    • For the same option X, the X and set_X methods now always have the same name of the parameter that specifies a value for an option.

New Features

  • handle RefLogLookup::Date
  • add merge::tree::TreeFavor similar to *::FileFavor. That way it's possible to control how tree-conflicts should be auto-resolved.

Bug Fixes

  • assure date-tests won't fail over time. Need to use absolute timestamps as it's impossible to control the system time.
  • public access to the contained repository in wrapped types, like Id. This makes these types easier to use as it's enough to pass a wrapped type to perform more actions on the underlying repository.

New Features (BREAKING)

  • move all possible code from gix to gix-protocol. For now, just move the code down and immediately re-integrate in gix to be able to use its tests to validate it.

    This is a breaking change as some types move and change the layout.

  • Add gix-shallow crate and use it from gix and gix-protocol That way it's easier to reuse shallow-handling code from plumbing crates.

    Note that this is a breaking change as gix-protocol now uses the gix-shallow::Update type, which doesn't implement a formerly public from_line() method anymore. Now it is available as fetch::response::shallow_update_from_line().

Bug Fixes (BREAKING)

  • symlinks_to_directories_are_ignored_like_directories by value The methods of gix::dirwalk::Options are paired, where for each option X of Options, a method named like X takes and returns self by value, and a method set_X takes and returns self by mutable reference.

    But in symlinks_to_directories_are_ignored_like_directories, both took self by mutable reference. This fixes that. The effect of

... (truncated)

Commits
  • 3f72512 Release gix v0.69.1
  • 3fb0c18 Merge pull request #1740 from GitoxideLabs/cargo-improvements
  • 51a4301 fix: remove unused fetch-error variants
  • d22937f Merge pull request #1739 from GitoxideLabs/new-release
  • beb0ea8 Release gix-dir v0.11.0, gix-revision v0.31.1, gix-merge v0.2.0, gix-pack v0....
  • c1ba571 Release gix-date v0.9.3, gix-object v0.46.1, gix-command v0.4.0, gix-filter v...
  • 7ea8582 update changelogs prior to release
  • 06d2738 Merge pull request #1737 from GitoxideLabs/report
  • 2cc65bb finalize gix-shallow crate
  • 5017e18 Add the monthly report for December 2024
  • 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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the cargo group with 4 updates: [anyhow](https://github.com/dtolnay/anyhow), [serde_json](https://github.com/serde-rs/json), [thiserror](https://github.com/dtolnay/thiserror) and [gix](https://github.com/GitoxideLabs/gitoxide).


Updates `anyhow` from 1.0.94 to 1.0.95
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.94...1.0.95)

Updates `serde_json` from 1.0.133 to 1.0.134
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.133...v1.0.134)

Updates `thiserror` from 2.0.7 to 2.0.9
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.7...2.0.9)

Updates `gix` from 0.68.0 to 0.69.1
- [Release notes](https://github.com/GitoxideLabs/gitoxide/releases)
- [Changelog](https://github.com/GitoxideLabs/gitoxide/blob/main/CHANGELOG.md)
- [Commits](GitoxideLabs/gitoxide@gix-v0.68.0...gix-v0.69.1)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: gix
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 23, 2024
@kylewlacy kylewlacy merged commit 3d7c77b into main Dec 24, 2024
5 checks passed
@kylewlacy kylewlacy deleted the dependabot/cargo/cargo-6b2964aab8 branch December 24, 2024 05:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant