Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
======

Expand Down
20 changes: 20 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
15 changes: 15 additions & 0 deletions changelogs/fragments/release_110.yml
Original file line number Diff line number Diff line change
@@ -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."

2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
namespace: scale_computing
name: hypercore
version: 1.0.0
version: 1.1.0
readme: README.md
authors:
- XLAB Steampunk <steampunk@xlab.si>
Expand Down
1 change: 1 addition & 0 deletions plugins/modules/vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand Down