summaryrefslogtreecommitdiffstats
path: root/ansible_collections/ngine_io/cloudstack/changelogs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:04:41 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:04:41 +0000
commit975f66f2eebe9dadba04f275774d4ab83f74cf25 (patch)
tree89bd26a93aaae6a25749145b7e4bca4a1e75b2be /ansible_collections/ngine_io/cloudstack/changelogs
parentInitial commit. (diff)
downloadansible-975f66f2eebe9dadba04f275774d4ab83f74cf25.tar.xz
ansible-975f66f2eebe9dadba04f275774d4ab83f74cf25.zip
Adding upstream version 7.7.0+dfsg.upstream/7.7.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/ngine_io/cloudstack/changelogs')
-rw-r--r--ansible_collections/ngine_io/cloudstack/changelogs/.gitignore1
-rw-r--r--ansible_collections/ngine_io/cloudstack/changelogs/changelog.yaml128
-rw-r--r--ansible_collections/ngine_io/cloudstack/changelogs/config.yaml29
-rw-r--r--ansible_collections/ngine_io/cloudstack/changelogs/fragments/.keep0
4 files changed, 158 insertions, 0 deletions
diff --git a/ansible_collections/ngine_io/cloudstack/changelogs/.gitignore b/ansible_collections/ngine_io/cloudstack/changelogs/.gitignore
new file mode 100644
index 000000000..6be6b5331
--- /dev/null
+++ b/ansible_collections/ngine_io/cloudstack/changelogs/.gitignore
@@ -0,0 +1 @@
+/.plugin-cache.yaml
diff --git a/ansible_collections/ngine_io/cloudstack/changelogs/changelog.yaml b/ansible_collections/ngine_io/cloudstack/changelogs/changelog.yaml
new file mode 100644
index 000000000..271375eeb
--- /dev/null
+++ b/ansible_collections/ngine_io/cloudstack/changelogs/changelog.yaml
@@ -0,0 +1,128 @@
+ancestor: null
+releases:
+ 0.3.0:
+ changes:
+ minor_changes:
+ - Added support for SSL CA cert verification (https://github.com/ngine-io/ansible-collection-cloudstack/pull/3)
+ fragments:
+ - 3-ca-cert-verification.yml
+ release_date: '2020-07-04'
+ 1.0.0:
+ changes:
+ minor_changes:
+ - cs_vlan_ip_range - Added support to set IP range for system VMs (https://github.com/ngine-io/ansible-collection-cloudstack/pull/18)
+ - cs_vlan_ip_range - Added support to specify pod name (https://github.com/ngine-io/ansible-collection-cloudstack/pull/20)
+ fragments:
+ - 18-for_system_vms_cs_vlan_ip_range.yml
+ - 20-cs_vlan_ip_range_pod.yml
+ release_date: '2020-08-15'
+ 1.0.1:
+ changes:
+ minor_changes:
+ - cs_configuration - Workaround for empty global settings idempotency (https://github.com/ngine-io/ansible-collection-cloudstack/pull/25).
+ fragments:
+ - 25-empty_config_idempotency.yml
+ release_date: '2020-08-30'
+ 1.1.0:
+ changes:
+ minor_changes:
+ - Deprecated the funtionality of first returned zone to be the default zone
+ because of an unreliable API. Zone will be required beginning with next major
+ version 2.0.0.
+ - cs_ip_address - allow to pick a particular IP address for a network, available
+ since CloudStack v4.13 (https://github.com/ngine-io/ansible-collection-cloudstack/issues/30).
+ fragments:
+ - cs_ip_address_reservation.yaml
+ - default_zone_deprecation.yaml
+ release_date: '2020-11-26'
+ 1.2.0:
+ changes:
+ minor_changes:
+ - cs_instance - Fixed an edge case caused by `displaytext` not available (https://github.com/ngine-io/ansible-collection-cloudstack/pull/49).
+ - cs_network - Fixed constraints when creating networks. The param `gateway`
+ is no longer required if the param `netmask` is given (https://github.com/ngine-io/ansible-collection-cloudstack/pull/54).
+ fragments:
+ - 49-cs_instance-fix-keyerror.yml
+ - 54-cs_network-fix-constraints.yml
+ release_date: '2021-02-02'
+ 2.0.0:
+ changes:
+ breaking_changes:
+ - Authentication option using INI files e.g. ``cloudstack.ini`` has been removed.
+ The only supported option to authenticate is by using the module params with
+ fallback to the ENV variables.
+ - default zone deprecation - The `zone` param default value, across multiple
+ modules, has been deprecated due to unreliable API (https://github.com/ngine-io/ansible-collection-cloudstack/pull/62).
+ fragments:
+ - 62-deprecate-default-zone.yml
+ - remove-ini-config.yml
+ release_date: '2021-02-02'
+ 2.1.0:
+ changes:
+ minor_changes:
+ - cs_physical_network - Added VXLAN as an option of isolation methods (https://github.com/ngine-io/ansible-collection-cloudstack/pull/73).
+ - instance - New style inventory plugin implemented for instances (https://github.com/ngine-io/ansible-collection-cloudstack/pull/66)
+ fragments:
+ - 66-instance-inventory-plugin.yml
+ - cs_physical_network_isolation_methods.yml
+ plugins:
+ inventory:
+ - description: Apache CloudStack instance inventory source
+ name: instance
+ namespace: null
+ release_date: '2021-04-12'
+ 2.2.0:
+ changes:
+ bugfixes:
+ - cs_instance - Fixed custom service offerings usage (https://github.com/ngine-io/ansible-collection-cloudstack/issues/79).
+ minor_changes:
+ - cs_instance - add support for MAC address and IPv6 in ``ip_to_networks`` (https://github.com/ngine-io/ansible-collection-cloudstack/issues/78).
+ - cs_instance_info - implemented support for ``host`` filter (https://github.com/ngine-io/ansible-collection-cloudstack/pull/83).
+ - cs_network_offering - implemented support for ``tags``, ``zones`` and ``domains``
+ (https://github.com/ngine-io/ansible-collection-cloudstack/pull/82).
+ fragments:
+ - 78-cs_instance_extend_ip_to_networks.yml
+ - 79-cs_instance_fix_details.yml
+ - 82-cs_network_offering_new_args.yml
+ - 83-cs_instance_info_host_filter.yml
+ release_date: '2021-09-01'
+ 2.2.1:
+ changes:
+ bugfixes:
+ - cs_instance - Fixed attribute error in custom service offerings handling (https://github.com/ngine-io/ansible-collection-cloudstack/pull/87).
+ fragments:
+ - cs_instance-attribute-error.yml
+ release_date: '2021-09-27'
+ 2.2.2:
+ changes:
+ bugfixes:
+ - cs_instance - Fixed missing project ID to volume query when checking root
+ disk size. (https://github.com/ngine-io/ansible-collection-cloudstack/pull/90).
+ fragments:
+ - 90-cs_instance-project-id-volume-query.yml
+ release_date: '2021-10-27'
+ 2.2.3:
+ changes:
+ bugfixes:
+ - cs_instance - Fixed regression project ID KeyError if no project is used (https://github.com/ngine-io/ansible-collection-cloudstack/pull/94).
+ fragments:
+ - cs_insance.md
+ release_date: '2022-02-04'
+ 2.2.4:
+ changes:
+ minor_changes:
+ - Various documentation fixes and code improvements to address ansible sanity
+ tests failure.
+ fragments:
+ - doc-fix.yml
+ release_date: '2022-05-22'
+ 2.3.0:
+ changes:
+ minor_changes:
+ - cs_instance - The arguments ``cpu``, ``cpu_speed`` and ``memory`` are no longer
+ required to be set together (https://github.com/ngine-io/ansible-collection-cloudstack/issues/111).
+ - cs_instance - The optional arguments ``pod`` and ``cluster`` has been added.
+ fragments:
+ - cs_instance-pod-cluster-args.yml
+ - details_cpu_memory.yml
+ release_date: '2022-12-04'
diff --git a/ansible_collections/ngine_io/cloudstack/changelogs/config.yaml b/ansible_collections/ngine_io/cloudstack/changelogs/config.yaml
new file mode 100644
index 000000000..3cb90f285
--- /dev/null
+++ b/ansible_collections/ngine_io/cloudstack/changelogs/config.yaml
@@ -0,0 +1,29 @@
+changelog_filename_template: ../CHANGELOG.rst
+changelog_filename_version_depth: 0
+changes_file: changelog.yaml
+changes_format: combined
+keep_fragments: false
+mention_ancestor: true
+new_plugins_after_name: removed_features
+notesdir: fragments
+prelude_section_name: release_summary
+prelude_section_title: Release Summary
+sections:
+- - major_changes
+ - Major Changes
+- - minor_changes
+ - Minor Changes
+- - breaking_changes
+ - Breaking Changes / Porting Guide
+- - deprecated_features
+ - Deprecated Features
+- - removed_features
+ - Removed Features (previously deprecated)
+- - security_fixes
+ - Security Fixes
+- - bugfixes
+ - Bugfixes
+- - known_issues
+ - Known Issues
+title: Apache CloudStack Collection
+trivial_section_name: trivial
diff --git a/ansible_collections/ngine_io/cloudstack/changelogs/fragments/.keep b/ansible_collections/ngine_io/cloudstack/changelogs/fragments/.keep
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/ansible_collections/ngine_io/cloudstack/changelogs/fragments/.keep