Skip to content

Commit fa5cc48

Browse files
Merge pull request #72 from ScaleComputing/update-galaxy
Update galaxy
2 parents d5bc5a1 + 3411bbd commit fa5cc48

File tree

5 files changed

+64
-1
lines changed

5 files changed

+64
-1
lines changed

CHANGELOG.rst

+27
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ Scale_Computing.Hypercore Release Notes
55
.. contents:: Topics
66

77

8+
v1.1.0
9+
======
10+
11+
Release Summary
12+
---------------
13+
14+
Feature release with minor changes and small bugfixes.
15+
16+
Minor Changes
17+
-------------
18+
19+
- Added 'machine_type' option to vm module.
20+
- Added 'source' option to api module.
21+
- Implemented 'put' and added to 'action' option in api module.
22+
23+
Bugfixes
24+
--------
25+
26+
- CD_ROM should be created without passing the size option to vm_disk module.
27+
- Changing the 'tiering_priority' does not require machine restart and values are now mapped properly.
28+
- Idempotence for module snapshot_schedule.
29+
- Issues with 'cloud_init' option now fixed, created IDE_DISK is not overriden.
30+
- Make sure enlarging the virtual disk does not require machine restart.
31+
- Makes sure that vm_disk module reports changes when ISO is detached.
32+
- Option 'attach_guest_tools' now works as intended with Windows systems.
33+
- Timeout is now properly applied and overrides the default.
34+
835
v1.0.0
936
======
1037

changelogs/changelog.yaml

+20
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,23 @@ releases:
7676
name: hypercore
7777
namespace: null
7878
release_date: '2022-10-07'
79+
1.1.0:
80+
changes:
81+
bugfixes:
82+
- CD_ROM should be created without passing the size option to vm_disk module.
83+
- Changing the 'tiering_priority' does not require machine restart and values
84+
are now mapped properly.
85+
- Idempotence for module snapshot_schedule.
86+
- Issues with 'cloud_init' option now fixed, created IDE_DISK is not overriden.
87+
- Make sure enlarging the virtual disk does not require machine restart.
88+
- Makes sure that vm_disk module reports changes when ISO is detached.
89+
- Option 'attach_guest_tools' now works as intended with Windows systems.
90+
- Timeout is now properly applied and overrides the default.
91+
minor_changes:
92+
- Added 'machine_type' option to vm module.
93+
- Added 'source' option to api module.
94+
- Implemented 'put' and added to 'action' option in api module.
95+
release_summary: Feature release with minor changes and small bugfixes.
96+
fragments:
97+
- release_110.yml
98+
release_date: '2023-01-10'

changelogs/fragments/release_110.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
release_summary: Feature release with minor changes and small bugfixes.
2+
minor_changes:
3+
- "Added 'source' option to api module."
4+
- "Implemented 'put' and added to 'action' option in api module."
5+
- "Added 'machine_type' option to vm module."
6+
bugfixes:
7+
- "Timeout is now properly applied and overrides the default."
8+
- "Option 'attach_guest_tools' now works as intended with Windows systems."
9+
- "Idempotence for module snapshot_schedule."
10+
- "Issues with 'cloud_init' option now fixed, created IDE_DISK is not overriden."
11+
- "Makes sure that vm_disk module reports changes when ISO is detached."
12+
- "Changing the 'tiering_priority' does not require machine restart and values are now mapped properly."
13+
- "Make sure enlarging the virtual disk does not require machine restart."
14+
- "CD_ROM should be created without passing the size option to vm_disk module."
15+

galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
namespace: scale_computing
33
name: hypercore
4-
version: 1.0.0
4+
version: 1.1.0
55
readme: README.md
66
authors:
77
- XLAB Steampunk <[email protected]>

plugins/modules/vm.py

+1
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@
212212
- Only relevant when creating the VM. This property cannot be modified.
213213
type: str
214214
choices: [ BIOS, UEFI, vTPM+UEFI ]
215+
version_added: 1.1.0
215216
notes:
216217
- C(check_mode) is not supported.
217218
"""

0 commit comments

Comments
 (0)