diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 118342640..cf63a901d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,33 @@ Scale_Computing.Hypercore Release Notes .. contents:: Topics +v1.1.0 +====== + +Release Summary +--------------- + +Feature release with minor changes and small bugfixes. + +Minor Changes +------------- + +- Added 'machine_type' option to vm module. +- Added 'source' option to api module. +- Implemented 'put' and added to 'action' option in api module. + +Bugfixes +-------- + +- CD_ROM should be created without passing the size option to vm_disk module. +- Changing the 'tiering_priority' does not require machine restart and values are now mapped properly. +- Idempotence for module snapshot_schedule. +- Issues with 'cloud_init' option now fixed, created IDE_DISK is not overriden. +- Make sure enlarging the virtual disk does not require machine restart. +- Makes sure that vm_disk module reports changes when ISO is detached. +- Option 'attach_guest_tools' now works as intended with Windows systems. +- Timeout is now properly applied and overrides the default. + v1.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 633c2c061..a3e03ba9c 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -76,3 +76,23 @@ releases: name: hypercore namespace: null release_date: '2022-10-07' + 1.1.0: + changes: + bugfixes: + - CD_ROM should be created without passing the size option to vm_disk module. + - Changing the 'tiering_priority' does not require machine restart and values + are now mapped properly. + - Idempotence for module snapshot_schedule. + - Issues with 'cloud_init' option now fixed, created IDE_DISK is not overriden. + - Make sure enlarging the virtual disk does not require machine restart. + - Makes sure that vm_disk module reports changes when ISO is detached. + - Option 'attach_guest_tools' now works as intended with Windows systems. + - Timeout is now properly applied and overrides the default. + minor_changes: + - Added 'machine_type' option to vm module. + - Added 'source' option to api module. + - Implemented 'put' and added to 'action' option in api module. + release_summary: Feature release with minor changes and small bugfixes. + fragments: + - release_110.yml + release_date: '2023-01-10' diff --git a/changelogs/fragments/release_110.yml b/changelogs/fragments/release_110.yml new file mode 100644 index 000000000..ba27e6a67 --- /dev/null +++ b/changelogs/fragments/release_110.yml @@ -0,0 +1,15 @@ +release_summary: Feature release with minor changes and small bugfixes. +minor_changes: + - "Added 'source' option to api module." + - "Implemented 'put' and added to 'action' option in api module." + - "Added 'machine_type' option to vm module." +bugfixes: + - "Timeout is now properly applied and overrides the default." + - "Option 'attach_guest_tools' now works as intended with Windows systems." + - "Idempotence for module snapshot_schedule." + - "Issues with 'cloud_init' option now fixed, created IDE_DISK is not overriden." + - "Makes sure that vm_disk module reports changes when ISO is detached." + - "Changing the 'tiering_priority' does not require machine restart and values are now mapped properly." + - "Make sure enlarging the virtual disk does not require machine restart." + - "CD_ROM should be created without passing the size option to vm_disk module." + \ No newline at end of file diff --git a/galaxy.yml b/galaxy.yml index 553ab39f8..97ae455aa 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- namespace: scale_computing name: hypercore -version: 1.0.0 +version: 1.1.0 readme: README.md authors: - XLAB Steampunk diff --git a/plugins/modules/vm.py b/plugins/modules/vm.py index 7254da323..9b2af2adc 100644 --- a/plugins/modules/vm.py +++ b/plugins/modules/vm.py @@ -212,6 +212,7 @@ - Only relevant when creating the VM. This property cannot be modified. type: str choices: [ BIOS, UEFI, vTPM+UEFI ] + version_added: 1.1.0 notes: - C(check_mode) is not supported. """