Skip to content

Commit ef79b12

Browse files
Re-generate changelog v1.8.0
Signed-off-by: deckhouse-BOaTswain <89150800+deckhouse-boatswain@users.noreply.github.com>
1 parent cbcd0ed commit ef79b12

2 files changed

Lines changed: 131 additions & 0 deletions

File tree

CHANGELOG/CHANGELOG-v1.8.0.yml

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
api:
2+
fixes:
3+
- summary: >-
4+
Enhanced reliability of the upload server for block devices by adding readiness checks and
5+
fixing configuration delays to prevent upload errors.
6+
pull_request: https://github.com/deckhouse/virtualization/pull/2178
7+
ci:
8+
features:
9+
- summary: >-
10+
configuration for nested e2e cluster with configurable ClusterNetwork and configure SDN
11+
inside nested cluster
12+
pull_request: https://github.com/deckhouse/virtualization/pull/2181
13+
fixes:
14+
- summary: Fix infrastructure config rendering for nested e2e clusters
15+
pull_request: https://github.com/deckhouse/virtualization/pull/2223
16+
cli:
17+
fixes:
18+
- summary: Mute warnings about empty home directory while executing other d8 commands.
19+
pull_request: https://github.com/deckhouse/virtualization/pull/2204
20+
core:
21+
features:
22+
- summary: >-
23+
Add VMOP migration progress reporting with detailed lifecycle reasons and smoother
24+
sync-phase progress calculation.
25+
pull_request: https://github.com/deckhouse/virtualization/pull/2182
26+
fixes:
27+
- summary: Clarify VM migration failure message when no node is available for the target VM.
28+
pull_request: https://github.com/deckhouse/virtualization/pull/2209
29+
- summary: >-
30+
Fixed vulnerabilities CVE-2026-32280, CVE-2026-32281, CVE-2026-32282, CVE-2026-32283,
31+
CVE-2026-32288, CVE-2026-32289
32+
pull_request: https://github.com/deckhouse/virtualization/pull/2196
33+
- summary: >-
34+
Improve VM migration progress reporting while target scheduling and preparation are already
35+
in progress.
36+
pull_request: https://github.com/deckhouse/virtualization/pull/2190
37+
- summary: Fixed vulnerabilities CVE-2026-34986.
38+
pull_request: https://github.com/deckhouse/virtualization/pull/2188
39+
- summary: Fix KVVM resync for unschedulable VMs when VMClass placement settings are changed.
40+
pull_request: https://github.com/deckhouse/virtualization/pull/2177
41+
- summary: >-
42+
Fixed vulnerabilities CVE-2026-25679, CVE-2026-27142, CVE-2026-27139, CVE-2026-33186,
43+
CVE-2026-34040, CVE-2026-33997.
44+
pull_request: https://github.com/deckhouse/virtualization/pull/2175
45+
- summary: Move virt-handler DaemonSet to hostNetwork
46+
pull_request: https://github.com/deckhouse/virtualization/pull/2174
47+
- summary: >-
48+
Set firmware outdated condition only for running VM instances and align firmware
49+
workload-updater checks with current condition-driven flow.
50+
pull_request: https://github.com/deckhouse/virtualization/pull/2162
51+
dvcr:
52+
fixes:
53+
- summary: Fix starting CVI/VI/VD import after DVCR garbage collection is done.
54+
pull_request: https://github.com/deckhouse/virtualization/pull/2193
55+
module:
56+
features:
57+
- summary: Add temporary ModuleConfig annotation to control KubeVirt live migration DisableTLS setting.
58+
pull_request: https://github.com/deckhouse/virtualization/pull/2198
59+
fixes:
60+
- summary: Add VM PhaseAge column while keeping Age in VirtualMachine brief output.
61+
pull_request: https://github.com/deckhouse/virtualization/pull/2203
62+
observability:
63+
fixes:
64+
- summary: Fix gaps in live migration metrics.
65+
pull_request: https://github.com/deckhouse/virtualization/pull/2170
66+
test:
67+
fixes:
68+
- summary: Increase coreFraction allocation in e2e tests for better stability.
69+
pull_request: https://github.com/deckhouse/virtualization/pull/2217
70+
vm:
71+
features:
72+
- summary: Simple implementation of CPU hotplug
73+
pull_request: https://github.com/deckhouse/virtualization/pull/2147
74+
- summary: >-
75+
Initial implementation of memory hotplug support: change spec.memory will set new memory
76+
size with live migration.
77+
pull_request: https://github.com/deckhouse/virtualization/pull/2110
78+
fixes:
79+
- summary: Fix VM getting stuck with a frozen filesystem when frozen during migration.
80+
pull_request: https://github.com/deckhouse/virtualization/pull/2225
81+
- summary: Remove the cilium KVVMI annotation when disconnecting the Main network.
82+
pull_request: https://github.com/deckhouse/virtualization/pull/2185
83+
- summary: >-
84+
Prevent over-creation of VirtualMachineMACAddress resources and fix network interface ID
85+
allocation for additional VM networks.
86+
pull_request: https://github.com/deckhouse/virtualization/pull/2184
87+
- summary: >-
88+
CLI no longer sends force=false by default, and AlwaysForced policy now rejects only
89+
explicit force=false while preserving policy defaults for unset force.
90+
pull_request: https://github.com/deckhouse/virtualization/pull/2179
91+
vmop:
92+
fixes:
93+
- summary: >-
94+
Force handling fixed for VM lifecycle operations: CLI stop now passes --force, and VMOP
95+
restart now honors spec.force in controller logic.
96+
pull_request: https://github.com/deckhouse/virtualization/pull/2168
97+

CHANGELOG/CHANGELOG-v1.8.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Changelog v1.8
2+
3+
## Features
4+
5+
6+
- **[core]** Add VMOP migration progress reporting with detailed lifecycle reasons and smoother sync-phase progress calculation. [#2182](https://github.com/deckhouse/virtualization/pull/2182)
7+
- **[vm]** Simple implementation of CPU hotplug [#2147](https://github.com/deckhouse/virtualization/pull/2147)
8+
- **[vm]** Initial implementation of memory hotplug support: change spec.memory will set new memory size with live migration. [#2110](https://github.com/deckhouse/virtualization/pull/2110)
9+
10+
## Fixes
11+
12+
13+
- **[api]** Enhanced reliability of the upload server for block devices by adding readiness checks and fixing configuration delays to prevent upload errors. [#2178](https://github.com/deckhouse/virtualization/pull/2178)
14+
- **[cli]** Mute warnings about empty home directory while executing other d8 commands. [#2204](https://github.com/deckhouse/virtualization/pull/2204)
15+
- **[core]** Fixed vulnerabilities CVE-2026-32280, CVE-2026-32281, CVE-2026-32282, CVE-2026-32283, CVE-2026-32288, CVE-2026-32289 [#2196](https://github.com/deckhouse/virtualization/pull/2196)
16+
- **[core]** Fixed vulnerabilities CVE-2026-34986. [#2188](https://github.com/deckhouse/virtualization/pull/2188)
17+
- **[core]** Fix KVVM resync for unschedulable VMs when VMClass placement settings are changed. [#2177](https://github.com/deckhouse/virtualization/pull/2177)
18+
- **[core]** Fixed vulnerabilities CVE-2026-25679, CVE-2026-27142, CVE-2026-27139, CVE-2026-33186, CVE-2026-34040, CVE-2026-33997. [#2175](https://github.com/deckhouse/virtualization/pull/2175)
19+
- **[core]** Move virt-handler DaemonSet to hostNetwork [#2174](https://github.com/deckhouse/virtualization/pull/2174)
20+
- **[module]** Add VM PhaseAge column while keeping Age in VirtualMachine brief output. [#2203](https://github.com/deckhouse/virtualization/pull/2203)
21+
- **[observability]** Fix gaps in live migration metrics. [#2170](https://github.com/deckhouse/virtualization/pull/2170)
22+
- **[vm]** Fix VM getting stuck with a frozen filesystem when frozen during migration. [#2225](https://github.com/deckhouse/virtualization/pull/2225)
23+
- **[vm]** Remove the cilium KVVMI annotation when disconnecting the Main network. [#2185](https://github.com/deckhouse/virtualization/pull/2185)
24+
- **[vm]** CLI no longer sends force=false by default, and AlwaysForced policy now rejects only explicit force=false while preserving policy defaults for unset force. [#2179](https://github.com/deckhouse/virtualization/pull/2179)
25+
- **[vmop]** Force handling fixed for VM lifecycle operations: CLI stop now passes --force, and VMOP restart now honors spec.force in controller logic. [#2168](https://github.com/deckhouse/virtualization/pull/2168)
26+
27+
## Chore
28+
29+
30+
- **[core]** Revert hostPath changing for virt-handler volumes previously done for compatibility with the original Kubevirt. [#2226](https://github.com/deckhouse/virtualization/pull/2226)
31+
- **[core]** Fix vulnerabilitie CVE-2026-39883. [#2200](https://github.com/deckhouse/virtualization/pull/2200)
32+
- **[vmip]** Prevent creation of a VM IP outside the allowed IP range. [#2201](https://github.com/deckhouse/virtualization/pull/2201)
33+
- **[vmsnapshot]** Retry filesystem unfreeze if it fails during deletion or snapshot failure. [#2161](https://github.com/deckhouse/virtualization/pull/2161)
34+

0 commit comments

Comments
 (0)