mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 05:35:20 +00:00
build: Release v28.4 (bug fix release)
Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
parent
628bb74cce
commit
d412ac2182
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -149,7 +149,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cloud-hypervisor"
|
name = "cloud-hypervisor"
|
||||||
version = "28.3.0"
|
version = "28.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"api_client",
|
"api_client",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cloud-hypervisor"
|
name = "cloud-hypervisor"
|
||||||
version = "28.3.0"
|
version = "28.4.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 @@
|
|||||||
|
- [v28.4](#v284)
|
||||||
- [v28.3](#v283)
|
- [v28.3](#v283)
|
||||||
- [v28.2](#v282)
|
- [v28.2](#v282)
|
||||||
- [v28.1](#v281)
|
- [v28.1](#v281)
|
||||||
@ -251,6 +252,22 @@
|
|||||||
- [Integration tests parallelization](#integration-tests-parallelization)
|
- [Integration tests parallelization](#integration-tests-parallelization)
|
||||||
|
|
||||||
|
|
||||||
|
# v28.4
|
||||||
|
|
||||||
|
This is a bug fix release. The following issues have been addressed:
|
||||||
|
|
||||||
|
* Fix VFIO on platforms with non-4k page size (#5450)
|
||||||
|
* 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)
|
||||||
|
* Disallow concurrent CPU resizing (#5668)
|
||||||
|
* Use wrapping add for memory offset from instruction emulator (#5719)
|
||||||
|
* Replace unsound `static mut` with `once_cell` (#5772)
|
||||||
|
* Fix a deadlock when TDX is enabled (#5845)
|
||||||
|
* Bug fix to OpenAPI specification file (#5967)
|
||||||
|
* Error out early for live migration when TDX is enabled (#6025)
|
||||||
|
|
||||||
# v28.3
|
# v28.3
|
||||||
|
|
||||||
This is a bug fix release. The following issues have been addressed:
|
This is a bug fix release. The following issues have been addressed:
|
||||||
|
@ -13,7 +13,7 @@ pub mod protocol;
|
|||||||
|
|
||||||
/// Global VMM version for versioning
|
/// Global VMM version for versioning
|
||||||
const MAJOR_VERSION: u16 = 28;
|
const MAJOR_VERSION: u16 = 28;
|
||||||
const MINOR_VERSION: u16 = 3;
|
const MINOR_VERSION: u16 = 4;
|
||||||
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