mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 05:35:20 +00:00
build: Release v32.1 (bug fix release)
Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
parent
aa850b5c3d
commit
4eb4dee9cf
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -179,7 +179,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cloud-hypervisor"
|
name = "cloud-hypervisor"
|
||||||
version = "32.0.0"
|
version = "32.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"api_client",
|
"api_client",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cloud-hypervisor"
|
name = "cloud-hypervisor"
|
||||||
version = "32.0.0"
|
version = "32.1.0"
|
||||||
authors = ["The Cloud Hypervisor Authors"]
|
authors = ["The Cloud Hypervisor Authors"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
default-run = "cloud-hypervisor"
|
default-run = "cloud-hypervisor"
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
- [v32.1](#v321)
|
||||||
- [v32.0](#v320)
|
- [v32.0](#v320)
|
||||||
- [Increased PCI Segment Limit](#increased-pci-segment-limit)
|
- [Increased PCI Segment Limit](#increased-pci-segment-limit)
|
||||||
- [API Changes](#api-changes)
|
- [API Changes](#api-changes)
|
||||||
@ -282,6 +283,19 @@
|
|||||||
- [Unit testing](#unit-testing)
|
- [Unit testing](#unit-testing)
|
||||||
- [Integration tests parallelization](#integration-tests-parallelization)
|
- [Integration tests parallelization](#integration-tests-parallelization)
|
||||||
|
|
||||||
|
# v32.1
|
||||||
|
|
||||||
|
This is a bug fix release. The following issues have been addressed:
|
||||||
|
|
||||||
|
* Report errors explicitly to users when VM failed to boot (#5453)
|
||||||
|
* Fix VFIO on platforms with non-4k page size (#5450, #5469)
|
||||||
|
* Fix TDX initialization (#5454)
|
||||||
|
* Ensure all guest memory regions are page-size aligned (#5496)
|
||||||
|
* Fix seccomp filter lists related to virtio-console, serial and pty
|
||||||
|
(#5506, #5524)
|
||||||
|
* Populate APIC ID properly (#5512)
|
||||||
|
* Ignore and warn TAP FDs in more situations (#5522)
|
||||||
|
|
||||||
# v32.0
|
# v32.0
|
||||||
|
|
||||||
This release has been tracked in our [roadmap
|
This release has been tracked in our [roadmap
|
||||||
|
@ -13,7 +13,7 @@ pub mod protocol;
|
|||||||
|
|
||||||
/// Global VMM version for versioning
|
/// Global VMM version for versioning
|
||||||
const MAJOR_VERSION: u16 = 32;
|
const MAJOR_VERSION: u16 = 32;
|
||||||
const MINOR_VERSION: u16 = 0;
|
const MINOR_VERSION: u16 = 1;
|
||||||
const VMM_VERSION: u16 = MAJOR_VERSION << 12 | MINOR_VERSION & 0b1111;
|
const VMM_VERSION: u16 = MAJOR_VERSION << 12 | MINOR_VERSION & 0b1111;
|
||||||
|
|
||||||
pub trait VersionMapped {
|
pub trait VersionMapped {
|
||||||
|
Loading…
Reference in New Issue
Block a user