build: Release v28.4 (bug fix release)

Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
Bo Chen 2024-01-19 09:27:11 -08:00 committed by Bo Chen
parent 628bb74cce
commit d412ac2182
4 changed files with 20 additions and 3 deletions

2
Cargo.lock generated
View File

@ -149,7 +149,7 @@ dependencies = [
[[package]]
name = "cloud-hypervisor"
version = "28.3.0"
version = "28.4.0"
dependencies = [
"anyhow",
"api_client",

View File

@ -1,6 +1,6 @@
[package]
name = "cloud-hypervisor"
version = "28.3.0"
version = "28.4.0"
authors = ["The Cloud Hypervisor Authors"]
edition = "2021"
default-run = "cloud-hypervisor"

View File

@ -1,3 +1,4 @@
- [v28.4](#v284)
- [v28.3](#v283)
- [v28.2](#v282)
- [v28.1](#v281)
@ -251,6 +252,22 @@
- [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
This is a bug fix release. The following issues have been addressed:

View File

@ -13,7 +13,7 @@ pub mod protocol;
/// Global VMM version for versioning
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;
pub trait VersionMapped {