Compare commits

...

2 Commits

Author SHA1 Message Date
Bo Chen
21c17ccf49 build: Release v50.2
Signed-off-by: Bo Chen <bchen@crusoe.ai>
2026-02-23 09:39:47 -08:00
Wei Liu
cd4d6ded75 vmm: api: Fix image_type in OpenAPI definition
Signed-off-by: Wei Liu <liuwe@microsoft.com>
(cherry picked from commit 52b2ebb2b8)
2026-02-23 09:39:47 -08:00
4 changed files with 12 additions and 3 deletions

2
Cargo.lock generated
View File

@@ -417,7 +417,7 @@ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
[[package]]
name = "cloud-hypervisor"
version = "50.1.0"
version = "50.2.0"
dependencies = [
"anyhow",
"api_client",

View File

@@ -7,7 +7,7 @@ edition = "2024"
homepage = "https://github.com/cloud-hypervisor/cloud-hypervisor"
license = "Apache-2.0 AND BSD-3-Clause"
name = "cloud-hypervisor"
version = "50.1.0"
version = "50.2.0"
# Minimum buildable version:
# Keep in sync with version in .github/workflows/build.yaml
# Policy on MSRV (see #4318):

View File

@@ -1,3 +1,4 @@
- [v50.2](#v502)
- [v50.1](#v501)
- [v50.0](#v500)
- [Configurable Nested Virtualization Option on x86_64](#configurable-nested-virtualization-option-on-x86_64)
@@ -410,6 +411,13 @@
- [Unit testing](#unit-testing)
- [Integration tests parallelization](#integration-tests-parallelization)
# v50.2
This is a bug fix release. The following issues have been addressed:
* Fix image_type in OpenAPI definition (#7734)
# v50.1
This is a point release containing security fixes and bug fixes.

View File

@@ -945,7 +945,8 @@ components:
type: boolean
default: false
image_type:
type: enum ["FixedVhd", "Qcow2", "Raw", "Vhdx"]
type: string
enum: [FixedVhd, Qcow2, Raw, Vhdx, Unknown]
NetConfig: