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

build(deps): bump the vhost-device group across 2 directories with 12 updates #769

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 14, 2024

Bumps the vhost-device group with 10 updates in the / directory:

Package From To
clap 4.5.20 4.5.21
thiserror 1.0.69 2.0.3
vhost 0.11.0 0.13.0
vhost-user-backend 0.15.0 0.17.0
virtio-queue 0.12.0 0.14.0
vm-memory 0.14.1 0.16.1
serde 1.0.214 1.0.215
cc 1.1.37 1.2.1
clap_lex 0.7.2 0.7.3
regex-automata 0.4.8 0.4.9

Bumps the vhost-device group with 3 updates in the /staging directory: clap, clap_lex and regex-automata.

Updates clap from 4.5.20 to 4.5.21

Release notes

Sourced from clap's releases.

v4.5.21

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Changelog

Sourced from clap's changelog.

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Commits
  • 03d7226 chore: Release
  • 3df70fb docs: Update changelog
  • 3266c36 Merge pull request #5691 from epage/custom
  • 951762d feat(complete): Allow any OsString-compatible type to be a CompletionCandidate
  • bb6493e feat(complete): Offer - as a path option
  • 27b348d refactor(complete): Simplify ArgValueCandidates code
  • 49b8108 feat(complete): Add PathCompleter
  • 82a360a feat(complete): Add ArgValueCompleter
  • 47aedc6 fix(complete): Ensure paths are sorted
  • 431e2bc test(complete): Ensure ArgValueCandidates get filtered
  • Additional commits viewable in compare view

Updates thiserror from 1.0.69 to 2.0.3

Release notes

Sourced from thiserror's releases.

2.0.3

  • Support the same Path field being repeated in both Debug and Display representation in error message (#383)
  • Improve error message when a format trait used in error message is not implemented by some field (#384)

2.0.2

  • Fix hang on invalid input inside #[error(...)] attribute (#382)

2.0.1

  • Support errors that contain a dynamically sized final field (#375)
  • Improve inference of trait bounds for fields that are interpolated multiple times in an error message (#377)

2.0.0

Breaking changes

  • Referencing keyword-named fields by a raw identifier like {r#type} inside a format string is no longer accepted; simply use the unraw name like {type} (#347)

    This aligns thiserror with the standard library's formatting macros, which gained support for implicit argument capture later than the release of this feature in thiserror 1.x.

    #[derive(Error, Debug)]
    #[error("... {type} ...")]  // Before: {r#type}
    pub struct Error {
        pub r#type: Type,
    }
  • Trait bounds are no longer inferred on fields whose value is shadowed by an explicit named argument in a format message (#345)

    // Before: impl<T: Octal> Display for Error<T>
    // After: impl<T> Display for Error<T>
    #[derive(Error, Debug)]
    #[error("{thing:o}", thing = "...")]
    pub struct Error<T> {
        thing: T,
    }
  • Tuple structs and tuple variants can no longer use numerical {0} {1} access at the same time as supplying extra positional arguments for a format message, as this makes it ambiguous whether the number refers to a tuple field vs a different positional arg (#354)

    #[derive(Error, Debug)]
    #[error("ambiguous: {0} {}", $N)]
    //                  ^^^ Not allowed, use #[error("... {0} {n}", n = $N)]
    pub struct TupleError(i32);
  • Code containing invocations of thiserror's derive(Error) must now have a direct dependency on the thiserror crate regardless of the error data structure's contents (#368, #369, #370, #372)

Features

... (truncated)

Commits
  • 15fd26e Release 2.0.3
  • 7046023 Simplify how has_bonus_display is accumulated
  • 9cc1d0b Merge pull request #384 from dtolnay/nowrap
  • 1d040f3 Use Var wrapper only for Pointer formatting
  • 6a6132d Extend no-display ui test to cover another fmt trait
  • a061beb Merge pull request #383 from dtolnay/both
  • 6388293 Support Display and Debug of same path in error message
  • dc0359e Defer binding_value construction
  • 520343e Add test of Debug and Display of paths
  • 49be39d Release 2.0.2
  • Additional commits viewable in compare view

Updates vhost from 0.11.0 to 0.13.0

Release notes

Sourced from vhost's releases.

vhost-user-backend v0.13.0

Changed

vhost v0.13.0

Added

Changed

vhost v0.12.1

Fixed

  • [#267] Fix feature unification issues with gpu-socket feature.

vhost-user-backend v0.12.0

Fixed

  • [#210] Enable all vrings upon receipt of VHOST_USER_SET_FEATURES message.
  • [#212] Validate queue index in VhostUserHandler::set_vring_base to avoid potential out-of-bounds panic.

Changed

  • [#214] Avoid indexing the same Vec multiple times by locally caching the result of Vec:get.
  • [#219](rust-vmm/vhost#219) Update vmm-sys-util dependency to 0.12.1 and vm-memory dependency to 0.14.0.

vhost v0.12.0 - yanked

This version got yanked because the gpu_socket feature introduced in this release was causing problems (see #265). Starting with the next version (v0.12.1), the gpu_socket feature was removed.

Added

Changed

Remove

Commits
  • 972a8a5 vhost: prepare v0.13.0 release
  • f107ee8 vhost-user-backend: yank v0.16.0 release
  • 9f82b5c vhost: yank v0.12.0 release
  • d983ae0 CHANGELOG: VHOST_USER_RESET_DEVICE support
  • 86eb788 vhost-user: Provide RESET_DEVICE front-end support
  • ff08ca0 vhost-user-server test: Use features constant
  • 72379ea vhost_user: Handle RESET_DEVICE message
  • a573574 build(deps): bump rust-vmm-ci from 209c04e to 1150c47
  • 290794b build(deps): bump the vhost group with 2 updates
  • 4c2526b vhost-user-backend: prepare v0.16.1 release
  • Additional commits viewable in compare view

Updates vhost-user-backend from 0.15.0 to 0.17.0

Release notes

Sourced from vhost-user-backend's releases.

vhost-user-backend v0.17.0

Added

Changed

vhost-user-backend v0.16.1

Fixed

  • [#267] Fix feature unification issues with gpu-socket feature.

vhost-user-backend v0.16.0 - yanked

This version got yanked because the gpu_socket feature introduced in this release was causing problems (see #265). Starting with the next version (v0.16.1), the gpu_socket feature was removed.

Added

Changed

  • [#257](rust-vmm/vhost#257) Update virtio-queue version from 0.12.0 to 0.13.0 and vm-memory from 0.14.0 to 0.15.0.
  • [#240](rust-vmm/vhost#240) Move the set of event_idx property from set_vring_base callback to set_features one
Commits
  • 875f679 vhost-user-backend: prepare v0.17.0 release
  • 972a8a5 vhost: prepare v0.13.0 release
  • f107ee8 vhost-user-backend: yank v0.16.0 release
  • 9f82b5c vhost: yank v0.12.0 release
  • d983ae0 CHANGELOG: VHOST_USER_RESET_DEVICE support
  • 86eb788 vhost-user: Provide RESET_DEVICE front-end support
  • ff08ca0 vhost-user-server test: Use features constant
  • 72379ea vhost_user: Handle RESET_DEVICE message
  • a573574 build(deps): bump rust-vmm-ci from 209c04e to 1150c47
  • 290794b build(deps): bump the vhost group with 2 updates
  • Additional commits viewable in compare view

Updates virtio-queue from 0.12.0 to 0.14.0

Release notes

Sourced from virtio-queue's releases.

virtio-queue-v0.14.0

Changed

  • Updated vm-memory from 0.15.0 to 0.16.0
  • Updated virtio-bindings from 0.2.3 to 0.2.4.

virtio-queue-v0.13.0

  • Updated vm-memory from 0.14.0 to 0.15.0
  • Updated virtio-bindings from 0.2.2 to 0.2.3
Commits
  • 6724256 virtio-queue: Prepare v0.14.0 release
  • cee1e6f virtio-bindings: Prepare v0.2.4 release
  • 6b1ccb1 build: Update vm-memory from 0.15.0 to 0.16.0
  • 4f15927 build: Centralize rust-vmm crates to workspace
  • a2a5cd2 build(deps): bump rust-vmm-ci from cdb4a2d to 209c04e
  • d6c8938 build(deps): bump rust-vmm-ci from 438f36e to cdb4a2d
  • 68cb7c7 virtio-queue: remove enable_notification()'s comments
  • 3e51e2d virtio-bindings: regenerate with bindgen 0.70.1
  • ef53fb8 coverage: update the score
  • cade6bf build(deps): bump rust-vmm-ci from 5e818dc to 438f36e
  • Additional commits viewable in compare view

Updates vm-memory from 0.14.1 to 0.16.1

Changelog

Sourced from vm-memory's changelog.

[v0.16.1]

Added

  • [#304] Implement ReadVolatile and WriteVolatile for TcpStream

[v0.16.0]

Added

  • [#287] Support for RISC-V 64-bit platform.
  • [#299] atomic_bitmap: support enlarging the bitmap.

Changed

  • [#278 Remove GuestMemoryIterator trait, and instead have GuestMemory::iter() return impl Iterator.

[v0.15.0]

Added

  • [#270] atomic_bitmap: add capability to reset bits range
  • [#285] Annotated modules in lib.rs to indicate their feature dependencies such that it is reflected in the docs, enhancing documentation clarity for users.

Changed

  • [#275] Fail builds on non 64-bit platforms.

Fixed

  • [#279] Remove restriction from read_volatile_from and write_volatile_into that made it copy data it chunks of 4096.

Removed

Deprecated

[v0.14.0]

Added

  • [#266] Derive Debug for several types that were missing it.

Changed

  • [#274] Drop Default as requirement for ByteValued.

... (truncated)

Commits
  • de60792 chore: Prepare 0.16.1 release
  • c2cdad5 feat: Implement ReadVolatile and WriteVolatile for TcpStream
  • 4b8649a chore: Format .md files with mdformat
  • 4adccfd chore: Prepare 0.16.0 release
  • 686c843 README: Add RISC-V to supported archs
  • 93fe47d chore: Update CHANGELOG.md since 0.15.0
  • 8aa53ad build(deps): bump rust-vmm-ci from 007a406 to cdb4a2d
  • 805a232 Remove GuestMemoryIterator, replace with GAT
  • 29e165e atomic_bitmap: add test case to validate enlarge function
  • d196d39 atomic_bitmap: support enlarging the bitmap
  • Additional commits viewable in compare view

Updates serde from 1.0.214 to 1.0.215

Release notes

Sourced from serde's releases.

v1.0.215

  • Produce warning when multiple fields or variants have the same deserialization name (#2855, #2856, #2857)
Commits
  • 8939af4 Release 1.0.215
  • fa5d58c Use ui test syntax that does not interfere with rustfmt
  • 1a3cf4b Update PR 2562 ui tests
  • 7d96352 Merge pull request #2857 from dtolnay/collide
  • 111ecc5 Update ui tests for warning on colliding aliases
  • edd6fe9 Revert "Add checks for conflicts for aliases"
  • a20e924 Revert "pacify clippy"
  • b1353a9 Merge pull request #2856 from dtolnay/dename
  • c59e876 Produce a separate warning for every colliding name
  • 7f1e697 Merge pull request #2855 from dtolnay/namespan
  • Additional commits viewable in compare view

Updates cc from 1.1.37 to 1.2.1

Release notes

Sourced from cc's releases.

cc-v1.2.1

Other

  • When invoking cl -?, set stdin to null (#1288)

cc-v1.2.0

Added

  • add i686-pc-windows-gnullvm prefix detection (#1283)

Other

  • Allow only specifying the architecture (#1285)
  • Fix WASM vs. WASI options (#1284)
Changelog

Sourced from cc's changelog.

1.2.1 - 2024-11-14

Other

  • When invoking cl -?, set stdin to null (#1288)

1.2.0 - 2024-11-11

Added

  • add i686-pc-windows-gnullvm prefix detection (#1283)

Other

  • Allow only specifying the architecture (#1285)
  • Fix WASM vs. WASI options (#1284)
Commits

Updates clap_builder from 4.5.20 to 4.5.21

Release notes

Sourced from clap_builder's releases.

v4.5.21

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Changelog

Sourced from clap_builder's changelog.

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Commits
  • 2920fb0 chore: Release
  • 8902627 docs: Update changelog
  • 79d696f Merge pull request #5813 from epage/ignore
  • 479df35 fix(parser): Fill in defaults on ignored error
  • a1d69ca refactor(parser): Split up parsing from post-processing
  • 6827841 test(parser): Show bad ignore_errors defaulting case
  • 76d0049 test(parser): Verify defaulting on errors
  • 3f5c05c test(parser): Ensure we are actually testing ignore_errors
  • ba4745d chore(ci): Fix use of permissions
  • 22944b4 chore(ci): Use matrix for tracking the runner
  • Additional commits viewable in compare view

Updates clap_lex from 0.7.2 to 0.7.3

Changelog

Sourced from clap_lex's changelog.

v0.7.3 (2015-05-03)

Bug Fixes

  • RequiredValues fixes a bug where missing values are parsed as missing arguments (93c4a723)

Improvements

  • ErrorMessages improves error messages and corrections (a29c3983)
  • ArgGroups improves requirement and confliction support for groups (c236dc5f)
Commits
  • 2920fb0 chore: Release
  • 8902627 docs: Update changelog
  • 79d696f Merge pull request #5813 from epage/ignore
  • 479df35 fix(parser): Fill in defaults on ignored error
  • a1d69ca refactor(parser): Split up parsing from post-processing
  • 6827841 test(parser): Show bad ignore_errors defaulting case
  • 76d0049 test(parser): Verify defaulting on errors
  • 3f5c05c test(parser): Ensure we are actually testing ignore_errors
  • ba4745d chore(ci): Fix use of permissions
  • 22944b4 chore(ci): Use matrix for tracking the runner
  • Additional commits viewable in compare view

Updates regex-automata from 0.4.8 to 0.4.9

Commits

Updates serde_derive from 1.0.214 to 1.0.215

Release notes

Sourced from serde_derive's releases.

v1.0.215

  • Produce warning when multiple fields or variants have the same deserialization name (#2855, #2856, #2857)
Commits
  • 8939af4 Release 1.0.215
  • fa5d58c Use ui test syntax that does not interfere with rustfmt
  • 1a3cf4b Update PR 2562 ui tests
  • 7d96352 Merge pull request #2857 from dtolnay/collide
  • 111ecc5 Update ui tests for warning on colliding aliases
  • edd6fe9 Revert "Add checks for conflicts for aliases"
  • a20e924 Revert "pacify clippy"
  • b1353a9 Merge pull request #2856 from dtolnay/dename
  • c59e876 Produce a separate warning for every colliding name
  • 7f1e697 Merge pull request #2855 from dtolnay/namespan
  • Additional commits viewable in compare view

Updates clap from 4.5.20 to 4.5.21

Release notes

Sourced from clap's releases.

v4.5.21

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Changelog

Sourced from clap's changelog.

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Commits
  • 03d7226 chore: Release
  • 3df70fb docs: Update changelog
  • 3266c36 Merge pull request #5691 from epage/custom
  • 951762d feat(complete): Allow any OsString-compatible type to be a CompletionCandidate
  • bb6493e feat(complete): Offer - as a path option
  • 27b348d refactor(complete): Simplify ArgValueCandidates code
  • 49b8108 feat(complete): Add PathCompleter
  • 82a360a feat(complete): Add ArgValueCompleter
  • 47aedc6 fix(complete): Ensure paths are sorted
  • 431e2bc test(complete): Ensure ArgValueCandidates get filtered
  • Additional commits viewable in compare view

Updates clap_builder from 4.5.20 to 4.5.21

Release notes

Sourced from clap_builder's releases.

v4.5.21

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Changelog

Sourced from clap_builder's changelog.

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Commits
  • 2920fb0 chore: Release
  • 8902627 docs: Update changelog
  • 79d696f Merge pull request #5813 from epage/ignore
  • 479df35 fix(parser): Fill in defaults on ignored error
  • a1d69ca refactor(parser): Split up parsing from post-processing
  • 6827841 test(parser): Show bad ignore_errors defaulting case
  • 76d0049 test(parser): Verify defaulting on errors
  • 3f5c05c test(parser): Ensure we are actually testing ignore_errors
  • ba4745d chore(ci): Fix use of permissions
  • 22944b4 chore(ci): Use matrix for tracking the runner
  • Additional commits viewable in compare view

Updates clap_lex from 0.7.2 to 0.7.3

Changelog

Sourced from clap_lex's changelog.

v0.7.3 (2015-05-03)

Bug Fixes

  • RequiredValues fixes a bug where missing values are parsed as missing arguments (93c4a723)

Improvements

  • ErrorMessages improves error messages and corrections (a29c3983)
  • ArgGroups improves requirement and confliction support for groups (c236dc5f)
Commits
  • 2920fb0 chore: Release
  • 8902627 docs: Update changelog
  • 79d696f Merge pull request #5813 from epage/ignore
  • 479df35 fix(parser): Fill in defaults on ignored error
  • a1d69ca refactor(parser): Split up parsing from post-processing
  • 6827841 test(parser): Show bad ignore_errors defaulting case
  • 76d0049 test(parser): Verify defaulting on errors
  • 3f5c05c test(parser): Ensure we are actually testing ignore_errors
  • ba4745d chore(ci): Fix use of permissions
  • 22944b4 chore(ci): Use matrix for tracking the runner
  • Additional commits viewable in compare view

Updates regex-automata from 0.4.8 to 0.4.9

Commits

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

… updates

Bumps the vhost-device group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.20` | `4.5.21` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.69` | `2.0.3` |
| [vhost](https://github.com/rust-vmm/vhost) | `0.11.0` | `0.13.0` |
| [vhost-user-backend](https://github.com/rust-vmm/vhost) | `0.15.0` | `0.17.0` |
| [virtio-queue](https://github.com/rust-vmm/vm-virtio) | `0.12.0` | `0.14.0` |
| [vm-memory](https://github.com/rust-vmm/vm-memory) | `0.14.1` | `0.16.1` |
| [serde](https://github.com/serde-rs/serde) | `1.0.214` | `1.0.215` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.37` | `1.2.1` |
| [clap_lex](https://github.com/clap-rs/clap) | `0.7.2` | `0.7.3` |
| [regex-automata](https://github.com/rust-lang/regex) | `0.4.8` | `0.4.9` |

Bumps the vhost-device group with 3 updates in the /staging directory: [clap](https://github.com/clap-rs/clap), [clap_lex](https://github.com/clap-rs/clap) and [regex-automata](https://github.com/rust-lang/regex).


Updates `clap` from 4.5.20 to 4.5.21
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.20...clap_complete-v4.5.21)

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

Updates `vhost` from 0.11.0 to 0.13.0
- [Release notes](https://github.com/rust-vmm/vhost/releases)
- [Commits](rust-vmm/vhost@vhost-v0.11.0...vhost-v0.13.0)

Updates `vhost-user-backend` from 0.15.0 to 0.17.0
- [Release notes](https://github.com/rust-vmm/vhost/releases)
- [Commits](rust-vmm/vhost@vhost-user-backend-v0.15.0...vhost-user-backend-v0.17.0)

Updates `virtio-queue` from 0.12.0 to 0.14.0
- [Release notes](https://github.com/rust-vmm/vm-virtio/releases)
- [Commits](rust-vmm/vm-virtio@virtio-queue-v0.12.0...virtio-queue-v0.14.0)

Updates `vm-memory` from 0.14.1 to 0.16.1
- [Release notes](https://github.com/rust-vmm/vm-memory/releases)
- [Changelog](https://github.com/rust-vmm/vm-memory/blob/main/CHANGELOG.md)
- [Commits](rust-vmm/vm-memory@v0.14.1...v0.16.1)

Updates `serde` from 1.0.214 to 1.0.215
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.214...v1.0.215)

Updates `cc` from 1.1.37 to 1.2.1
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.1.37...cc-v1.2.1)

Updates `clap_builder` from 4.5.20 to 4.5.21
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.5.20...v4.5.21)

Updates `clap_lex` from 0.7.2 to 0.7.3
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_lex-v0.7.2...clap_lex-v0.7.3)

Updates `regex-automata` from 0.4.8 to 0.4.9
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/regex/commits/regex-automata-0.4.9)

Updates `serde_derive` from 1.0.214 to 1.0.215
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.214...v1.0.215)

Updates `clap` from 4.5.20 to 4.5.21
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.20...clap_complete-v4.5.21)

Updates `clap_builder` from 4.5.20 to 4.5.21
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.5.20...v4.5.21)

Updates `clap_lex` from 0.7.2 to 0.7.3
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_lex-v0.7.2...clap_lex-v0.7.3)

Updates `regex-automata` from 0.4.8 to 0.4.9
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/regex/commits/regex-automata-0.4.9)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: vhost-device
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: vhost-device
- dependency-name: vhost
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: vhost-device
- dependency-name: vhost-user-backend
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: vhost-device
- dependency-name: virtio-queue
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: vhost-device
- dependency-name: vm-memory
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: vhost-device
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: vhost-device
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: vhost-device
- dependency-name: clap_builder
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: vhost-device
- dependency-name: clap_lex
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: vhost-device
- dependency-name: regex-automata
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: vhost-device
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: vhost-device
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: vhost-device
- dependency-name: clap_builder
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: vhost-device
- dependency-name: clap_lex
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: vhost-device
- dependency-name: regex-automata
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: vhost-device
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Nov 14, 2024
stefano-garzarella added a commit to stefano-garzarella/vhost-device that referenced this pull request Nov 14, 2024
Without this, dependabot can open 2 PRs with same updates,
see:
- rust-vmm#762
- rust-vmm#769]

Signed-off-by: Stefano Garzarella <[email protected]>
@stefano-garzarella
Copy link
Member

@dependabot unignore nix

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 15, 2024

No dependency name (nix) or ignore conditions found to unignore.

@stefano-garzarella
Copy link
Member

@dependabot show nix ignore conditions

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 15, 2024

No ignore conditions found for the dependency nix

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 rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant