Skip to content

Commit 2c90ecf

Browse files
Re-generate changelog v1.7.0
Signed-off-by: deckhouse-BOaTswain <89150800+deckhouse-boatswain@users.noreply.github.com>
1 parent a1cbac7 commit 2c90ecf

File tree

2 files changed

+107
-0
lines changed

2 files changed

+107
-0
lines changed

CHANGELOG/CHANGELOG-v1.7.0.yml

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
api:
2+
features:
3+
- summary: >-
4+
VirtualDisk owner reference is now saved at snapshot time and restored when restoring from
5+
snapshot, so restored disks are again owned by the restored VirtualMachine.
6+
pull_request: https://github.com/deckhouse/virtualization/pull/2032
7+
ci:
8+
fixes:
9+
- summary: e2e bootstrap cluster
10+
pull_request: https://github.com/deckhouse/virtualization/pull/2064
11+
core:
12+
features:
13+
- summary: Reducing USB device downtime during VM migration.
14+
pull_request: https://github.com/deckhouse/virtualization/pull/2098
15+
fixes:
16+
- summary: Fix transient publication of detaching USBIP devices as local USB devices in ResourceSlice.
17+
pull_request: https://github.com/deckhouse/virtualization/pull/2122
18+
- summary: >-
19+
Fix DRA USB device list generation — use capacity-only pre-allocation to avoid empty entries
20+
in the resource slice.
21+
pull_request: https://github.com/deckhouse/virtualization/pull/2121
22+
- summary: >-
23+
Fix validation to require force=true for AlwaysForced liveMigrationPolicy. UI migrations
24+
without explicit force flag are now properly rejected.
25+
pull_request: https://github.com/deckhouse/virtualization/pull/2120
26+
- summary: >-
27+
PreferForced live migration policy now uses autoConverge=true by default, but respects
28+
force=false.
29+
pull_request: https://github.com/deckhouse/virtualization/pull/2111
30+
- summary: >-
31+
Fix DRA feature gates discovery by removing check for DRAResourceClaimDeviceStatus which is
32+
enabled by default.
33+
pull_request: https://github.com/deckhouse/virtualization/pull/2108
34+
- summary: Exit maintenance mode after restore operation failure.
35+
pull_request: https://github.com/deckhouse/virtualization/pull/2094
36+
- summary: >-
37+
Fix VirtualDisk AttachedToVirtualMachines references during clone and customized restore
38+
operations.
39+
pull_request: https://github.com/deckhouse/virtualization/pull/2080
40+
- summary: >-
41+
Reject VM USB device attachments when USB feature gate is disabled and validate only newly
42+
added USB devices on update.
43+
pull_request: https://github.com/deckhouse/virtualization/pull/2077
44+
dvcr:
45+
fixes:
46+
- summary: >-
47+
Fixed VMDK disk image import failures by implementing support for streamOptimized VMDK
48+
format commonly exported from VMware vSphere, Workstation, and Fusion.
49+
pull_request: https://github.com/deckhouse/virtualization/pull/2065
50+
- summary: >-
51+
When DVCR is out of space, a resource will contain a clearer message about it in the
52+
condition.
53+
pull_request: https://github.com/deckhouse/virtualization/pull/2016
54+
module:
55+
fixes:
56+
- summary: >-
57+
Limited the maximum debug verbosity level to 9 in the Virtualization controller to prevent
58+
full trace-level logs from appearing when debug logging is enabled.
59+
pull_request: https://github.com/deckhouse/virtualization/pull/2101
60+
vd:
61+
fixes:
62+
- summary: Do not check datasourceReady for the exporting phase.
63+
pull_request: https://github.com/deckhouse/virtualization/pull/2060
64+
vm:
65+
features:
66+
- summary: Add garbage collection for completed/failed VM pods
67+
pull_request: https://github.com/deckhouse/virtualization/pull/2091
68+
- summary: separate scheduling for USB 2.0 (High-Speed) and USB 3.0 (SuperSpeed) over USBIP
69+
pull_request: https://github.com/deckhouse/virtualization/pull/2045
70+
- summary: add conntrack synchronization for live migration
71+
pull_request: https://github.com/deckhouse/virtualization/pull/1939
72+
fixes:
73+
- summary: Stabilize the order of network interfaces
74+
pull_request: https://github.com/deckhouse/virtualization/pull/2001
75+
- summary: show CSI and volume errors in VM status
76+
pull_request: https://github.com/deckhouse/virtualization/pull/1766
77+
vmop:
78+
features:
79+
- summary: add validation for local storage migration in CE edition
80+
pull_request: https://github.com/deckhouse/virtualization/pull/1950
81+

CHANGELOG/CHANGELOG-v1.7.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Changelog v1.7
2+
3+
## Features
4+
5+
6+
- **[api]** VirtualDisk owner reference is now saved at snapshot time and restored when restoring from snapshot, so restored disks are again owned by the restored VirtualMachine. [#2032](https://github.com/deckhouse/virtualization/pull/2032)
7+
- **[core]** Reducing USB device downtime during VM migration. [#2098](https://github.com/deckhouse/virtualization/pull/2098)
8+
- **[vm]** Add garbage collection for completed/failed VM pods [#2091](https://github.com/deckhouse/virtualization/pull/2091)
9+
- **[vm]** separate scheduling for USB 2.0 (High-Speed) and USB 3.0 (SuperSpeed) over USBIP [#2045](https://github.com/deckhouse/virtualization/pull/2045)
10+
- **[vm]** add conntrack synchronization for live migration [#1939](https://github.com/deckhouse/virtualization/pull/1939)
11+
- **[vmop]** add validation for local storage migration in CE edition [#1950](https://github.com/deckhouse/virtualization/pull/1950)
12+
13+
## Fixes
14+
15+
16+
- **[core]** Fix validation to require force=true for AlwaysForced liveMigrationPolicy. UI migrations without explicit force flag are now properly rejected. [#2120](https://github.com/deckhouse/virtualization/pull/2120)
17+
- **[core]** PreferForced live migration policy now uses autoConverge=true by default, but respects force=false. [#2111](https://github.com/deckhouse/virtualization/pull/2111)
18+
- **[core]** Exit maintenance mode after restore operation failure. [#2094](https://github.com/deckhouse/virtualization/pull/2094)
19+
- **[vm]** Stabilize the order of network interfaces [#2001](https://github.com/deckhouse/virtualization/pull/2001)
20+
- **[vm]** show CSI and volume errors in VM status [#1766](https://github.com/deckhouse/virtualization/pull/1766)
21+
22+
## Chore
23+
24+
25+
- **[module]** Add SecurityPolicyExceptions for module Pods with extended permissions (ds/virt-handler, ds/virtualization-dra, ds/vm-route-forge). [#2026](https://github.com/deckhouse/virtualization/pull/2026)
26+

0 commit comments

Comments
 (0)