From 11b1ab40a58a53a26046c12a3a2495e0d68cf859 Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Tue, 18 Apr 2023 12:02:16 -0700 Subject: [PATCH] build: Release v28.3 (bug fix release) Signed-off-by: Bo Chen --- Cargo.lock | 2 +- Cargo.toml | 2 +- release-notes.md | 16 ++++++++++++++++ vm-migration/src/lib.rs | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 38dd995f9..6b4171439 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -143,7 +143,7 @@ dependencies = [ [[package]] name = "cloud-hypervisor" -version = "28.2.0" +version = "28.3.0" dependencies = [ "anyhow", "api_client", diff --git a/Cargo.toml b/Cargo.toml index 6ce0ab565..80ab28491 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloud-hypervisor" -version = "28.2.0" +version = "28.3.0" authors = ["The Cloud Hypervisor Authors"] edition = "2021" default-run = "cloud-hypervisor" diff --git a/release-notes.md b/release-notes.md index cfb6f430b..6845c7112 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,3 +1,4 @@ +- [v28.3](#v283) - [v28.2](#v282) - [v28.1](#v281) - [v28.0](#v280) @@ -249,6 +250,21 @@ - [Unit testing](#unit-testing) - [Integration tests parallelization](#integration-tests-parallelization) + +# v28.3 + +This is a bug fix release. The following issues have been addressed: + +* Ignore and warn TAP FDs sent via the HTTP request body (#5350) +* Properly preserve and close valid FDs for TAP devices (#5373) +* Only use `KVM_ARM_VCPU_PMU_V3` if available (#5360) +* Fix seccomp filter lists for vhost-user devices (#5361) +* Fix the offset setting while removing the entire mapping of + `vhost-user` FS client (#5235) +* Set vcpu thread status properly and signal exit_evt upon thread exit (#5211) +* Populate CPUID leaf 0x4000_0010 (TSC frequency) (#5179) +* Bug fix to OpenAPI specification file (#5186) + # v28.2 This is a bug fix release. The following issues have been addressed: diff --git a/vm-migration/src/lib.rs b/vm-migration/src/lib.rs index 2381099ad..8f1b9c67f 100644 --- a/vm-migration/src/lib.rs +++ b/vm-migration/src/lib.rs @@ -13,7 +13,7 @@ pub mod protocol; /// Global VMM version for versioning const MAJOR_VERSION: u16 = 28; -const MINOR_VERSION: u16 = 2; +const MINOR_VERSION: u16 = 3; const VMM_VERSION: u16 = MAJOR_VERSION << 12 | MINOR_VERSION & 0b1111; pub trait VersionMapped {