mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
build: Release v28.1 (bug fix release)
Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
Generated
+1
-1
@@ -143,7 +143,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cloud-hypervisor"
|
name = "cloud-hypervisor"
|
||||||
version = "28.0.0"
|
version = "28.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"api_client",
|
"api_client",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cloud-hypervisor"
|
name = "cloud-hypervisor"
|
||||||
version = "28.0.0"
|
version = "28.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 @@
|
|||||||
|
- [v28.1](#v281)
|
||||||
- [v28.0](#v280)
|
- [v28.0](#v280)
|
||||||
- [Community Engagement (Reminder)](#community-engagement-reminder)
|
- [Community Engagement (Reminder)](#community-engagement-reminder)
|
||||||
- [Long Term Support (LTS) Release](#long-term-support-lts-release)
|
- [Long Term Support (LTS) Release](#long-term-support-lts-release)
|
||||||
@@ -247,6 +248,16 @@
|
|||||||
- [Unit testing](#unit-testing)
|
- [Unit testing](#unit-testing)
|
||||||
- [Integration tests parallelization](#integration-tests-parallelization)
|
- [Integration tests parallelization](#integration-tests-parallelization)
|
||||||
|
|
||||||
|
# v28.1
|
||||||
|
This is a bug fix release. The following issues have been addressed:
|
||||||
|
|
||||||
|
* Update dependencies including a version of `linux-loader` that
|
||||||
|
addresses an infinite loop issue ([details](https://github.com/rust-vmm/linux-loader/security/advisories/GHSA-52h2-m2cf-9jh6))
|
||||||
|
* Fix bugs related to `virtio-net` including an integer overflow issue
|
||||||
|
(#4924, #4949)
|
||||||
|
* Use host `cpuid` information for L2 cache for older KVM on x86 (#4920)
|
||||||
|
* Improve README and documentation
|
||||||
|
|
||||||
# v28.0
|
# v28.0
|
||||||
|
|
||||||
This release has been tracked in our new [roadmap
|
This release has been tracked in our new [roadmap
|
||||||
|
|||||||
@@ -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 = 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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user