Skip to content

Bump the rust-vmm group with 4 updates - #9

Merged
github-actions[bot] merged 1 commit into
masterfrom
dependabot/cargo/rust-vmm-5d81dd8e5c
Jun 5, 2026
Merged

Bump the rust-vmm group with 4 updates#9
github-actions[bot] merged 1 commit into
masterfrom
dependabot/cargo/rust-vmm-5d81dd8e5c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 5, 2026

Copy link
Copy Markdown
Contributor

Bumps the rust-vmm group with 4 updates: kvm-ioctls, kvm-bindings, vm-memory and virtio-queue.

Updates kvm-ioctls from 0.19.1 to 0.24.0

Release notes

Sourced from kvm-ioctls's releases.

kvm-ioctls-v0.24.0

Changelog

v0.24.0

Added

  • Plumb through KVM_CAP_X2APIC_API as X2ApicApi cap.
  • [#334](rust-vmm/kvm#334) Added support for KVM_HAS_DEVICE_ATTR and KVM_SET_DEVICE_ATTR vm ioctl on aarch64.

Changed

  • Update to Rust edition 2024
  • Update to kvm-bindings 0.14.0

kvm-ioctls-v0.23.0

Changelog

v0.23.0

Added

  • [#322](rust-vmm/kvm#322) Added VcpuFd::nested_state()and VcpuFd::set_nested_state() to work with nested KVM state. Only works on x86. The helper type KvmNestedStateBuffermakes these new functions easily usable.

Changed

  • Upgrade kvm-bindings to v0.13.0

kvm-ioctls-v0.22.0

Changelog

v0.22.0

Changed

kvm-ioctls-v0.21.0

Changelog

v0.21.0

Added

  • [#310]: Added support for KVM_CAP_XSAVE2 and the KVM_GET_XSAVE2 ioctl.

Changed

  • [#310]: Changed set_xsave() unsafe because the C kvm_xsave struct was extended to have a flexible array member (FAM) in the end in Linux 5.16 and KVM_SET_XSAVE may copy data beyond the traditional size (i.e. 4096 bytes). If any features are enabled dynamically on Linux 5.16+, it is recommended to use set_xsave2() instead.
Commits
  • bd3260e gha: Introduce auto publishing workflows
  • 5290f56 chore: Release kvm-bindings@0.14.0 and kvm-ioclts@0.24.0
  • d699823 vmm-sys-util: Widen range to "v0.14 ~ v0.15"
  • 538ae4f style: clippy and formatting fixes
  • 3b2ec8d build(deps): bump rust-vmm-ci from c3ef897 to 0b1cb86
  • d42632f workspace: reformat according to 2024 style
  • 08d3011 workspace: update to Rust edition 2024
  • b17cd0f dependabot: drop open-pull-request-limit
  • 4239dd9 kvm-ioctls: add support for vm device_attr ioctls on aarch64
  • 8c0590a cap: add X2ApicApi capability.
  • Additional commits viewable in compare view

Updates kvm-bindings from 0.10.0 to 0.14.0

Release notes

Sourced from kvm-bindings's releases.

kvm-bindings-v0.14.0

Changelog

v0.14.0

Changed

  • Update to Rust edition 2024

kvm-bindings-v0.13.0

Changelog

v0.13.0

Added

Changed

  • Regenerate bindings from Linux kernel v6.15.

kvm-bindings-v0.12.0

Changelog

[0.12.0]

Added

  • [#323](rust-vmm/kvm#323) Upgrade vmm-sys-util to v0.14.0
  • #325 Added FamStructWrapper for kvm_irq_routing type.
  • #325 Added serde support for kvm_irq_routing and kvm_irq_routing_entry types.

kvm-bindings-v0.11.1

Changelog

[0.11.1]

Added

  • Implemented Serialize / Deserialize for kvm_xsave2.

kvm-bindings-v0.11.0

Changelog

[0.11.0]

Changed

  • Updated KVM_MAX_CPUID_ENTRIES to 256.
Commits
  • bd3260e gha: Introduce auto publishing workflows
  • 5290f56 chore: Release kvm-bindings@0.14.0 and kvm-ioclts@0.24.0
  • d699823 vmm-sys-util: Widen range to "v0.14 ~ v0.15"
  • 538ae4f style: clippy and formatting fixes
  • 3b2ec8d build(deps): bump rust-vmm-ci from c3ef897 to 0b1cb86
  • d42632f workspace: reformat according to 2024 style
  • 08d3011 workspace: update to Rust edition 2024
  • b17cd0f dependabot: drop open-pull-request-limit
  • 4239dd9 kvm-ioctls: add support for vm device_attr ioctls on aarch64
  • 8c0590a cap: add X2ApicApi capability.
  • Additional commits viewable in compare view

Updates vm-memory from 0.16.2 to 0.17.1

Changelog

Sourced from vm-memory's changelog.

[v0.17.1]

No visible changes.

[v0.17.0]

Added

  • [#311] Allow compiling without the ReadVolatile and WriteVolatile implementations
  • [#312] GuestRegionContainer, a generic container of GuestMemoryRegions, generalizing GuestMemoryMmap (which is now a type alias for GuestRegionContainer<GuestRegionMmap>).
  • [#338] Make GuestMemoryAtomic always implement Clone.
  • [#338] Make GuestAddressSpace a subtrait of Clone.
  • [#339] Add GuestMemory::get_slices()

Changed

  • [#307] Move read_volatile_from, read_exact_volatile_from, write_volatile_to and write_all_volatile_to functions from the GuestMemory trait to the Bytes trait.
  • [#312]: Give GuestMemory::find_region and GuestMemory::num_regions a default implementation, based on linear search.
  • [#312]: Provide a marker trait, GuestMemoryRegionBytes, which enables a default implementation of Bytes<MemoryRegionAddress> for a GuestMemoryRegion if implemented.
  • [#312]: Adjust error types returned from GuestMemoryMmap::from_ranges[_with_files] and GuestRegionMmap::from_range to be separate from the error type returned by GuestRegionCollection functions. Change return type of GuestRegionMmap::new from Result to Option.
  • [#324](https:////redirect.github.com/Global dirty bitmap rust-vmm/vm-memory#324)] GuestMemoryRegion::bitmap() now returns a BitmapSlice. Accessing the full bitmap is now possible only if the type of the memory region is know, for example with MmapRegion::bitmap().
  • [#339] Implement Bytes::load() and Bytes::store() with get_slices() instead of to_region_addr()

Removed

  • [#307] Remove deprecated functions Bytes::read_from, Bytes::read_exact_from, Bytes::write_to, Bytes::write_all_to, GuestMemory::as_slice, GuestMemory::as_slice_mut, GuestMemory::with_regions, GuestMemory::with_regions_mut, GuestMemory::map_and_fold, VolatileSlice::as_ptr, VolatileRef::as_ptr, and VolatileArrayRef::as_ptr.
  • [#320] Drop check_file_offset check when using MmapRegionBuilder. The mmap(2) syscall itself already validates that offset and length are valid, and trying to replicate this check in userspace ended up being imperfect.

Fixed

  • [#339] Fix Bytes::read() and Bytes::write() not to ignore try_access()'s count parameter

Deprecated

  • [#349] Deprecate GuestMemory::try_access(). Use GuestMemory::get_slices() instead.

[v0.16.1]

Added

... (truncated)

Commits
  • 75f3b2c Prepare for 0.17.1 release
  • dea9e19 fix(doc): un-break docs.rs build
  • 17b714c setup trusted publishing
  • 53b711b prepare 0.17.0 release
  • b8401e6 Update CODEOWNERS
  • ebfefb0 windows: be more explicit about unsupported features
  • fc55ed0 fix(windows): enable dep:winapi crate with backend-bitmap
  • 4a8f22b windows: make tests work with only feature backend-mmap
  • 4a8c9ce windows: remove unused imports
  • f49e23e test: check windows build
  • Additional commits viewable in compare view

Updates virtio-queue from 0.14.0 to 0.17.0

Release notes

Sourced from virtio-queue's releases.

virtio-queue-v0.17.0

virtio-queue v0.17.0

Changed

  • Updated vm-memory from 0.16.0 to 0.17.1

virtio-queue-v0.16.0

No release notes provided.

virtio-queue-v0.15.0

Fixed

  • Add license files.

Changed

  • Updated virtio-bindings from 0.2.4 to 0.2.5.
  • Use RawDescriptor to represent the memory layout of the split and packed descriptor in virtio-queue/desc.
  • Move the split descriptor to the virtio-queue/desc.
  • Updated vmm-sys-util from v0.12.1 to v0.14.0

Added

  • Add packed descriptor in virtio-queue
Commits
  • ec17cad virtio-queue: Prepare v0.17.0 release
  • e610eb7 virtio-queue: disable verify_add_used proof
  • ee413bc virtio-queue: stubregion now uses new vm-memory interface
  • 67f9878 build(deps): update vm-memory requirement in the vm-virtio group
  • 9edfa57 build(deps): bump rust-vmm-ci from 1b48931 to 042b206
  • 12d4038 build(deps): bump rust-vmm-ci from 3e24835 to 1b48931
  • d6412c6 build(deps): bump rust-vmm-ci from c0f5d4c to 3e24835
  • 17d4b2c virtio-queue: fix hyperlink in documentation
  • c7588be build(deps): bump rust-vmm-ci from fc4584d to c0f5d4c
  • 57ad18a virtio-bindings: Fix powerpc64 bindings
  • 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 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 rust-vmm group with 4 updates: [kvm-ioctls](https://github.com/rust-vmm/kvm-ioctls), [kvm-bindings](https://github.com/rust-vmm/kvm), [vm-memory](https://github.com/rust-vmm/vm-memory) and [virtio-queue](https://github.com/rust-vmm/vm-virtio).


Updates `kvm-ioctls` from 0.19.1 to 0.24.0
- [Release notes](https://github.com/rust-vmm/kvm-ioctls/releases)
- [Commits](rust-vmm/kvm@v0.19.1...kvm-ioctls-v0.24.0)

Updates `kvm-bindings` from 0.10.0 to 0.14.0
- [Release notes](https://github.com/rust-vmm/kvm/releases)
- [Commits](rust-vmm/kvm@v0.10.0...kvm-bindings-v0.14.0)

Updates `vm-memory` from 0.16.2 to 0.17.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.16.2...v0.17.1)

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

---
updated-dependencies:
- dependency-name: kvm-ioctls
  dependency-version: 0.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-vmm
- dependency-name: kvm-bindings
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-vmm
- dependency-name: vm-memory
  dependency-version: 0.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-vmm
- dependency-name: virtio-queue
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-vmm
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jun 5, 2026
@dependabot
dependabot Bot requested a review from realrasengan as a code owner June 5, 2026 01:15
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jun 5, 2026
@github-actions
github-actions Bot merged commit f5f9392 into master Jun 5, 2026
2 of 4 checks passed
@dependabot
dependabot Bot deleted the dependabot/cargo/rust-vmm-5d81dd8e5c branch June 5, 2026 01:15
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.

0 participants