Skip to content

Commit

Permalink
build: Release v28.4 (bug fix release)
Browse files Browse the repository at this point in the history
Signed-off-by: Bo Chen <chen.bo@intel.com>
  • Loading branch information
likebreath committed Jan 20, 2024
1 parent 628bb74 commit d412ac2
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
17 changes: 17 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- [v28.4](#v284)
- [v28.3](#v283)
- [v28.2](#v282)
- [v28.1](#v281)
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion vm-migration/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit d412ac2

Please sign in to comment.