diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 664fd2160..ab10ccddf 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,33 @@ Cisco ACI Ansible Collection Release Notes .. contents:: Topics +v2.11.0 +======= + +Release Summary +--------------- + +Release v2.11.0 of the ``ansible-aci`` collection on 2024-11-20. +This changelog describes all changes made to the modules and plugins included in this collection since v2.10.1. + +Minor Changes +------------- + +- Add stratum attribute to aci_ntp_policy module +- Add support for management epg configuration in aci_dns_profile module +- Added support for Ansible 2.18 and dropped support for 2.15. - Also changed supported Python version from 3.10 to 3.11 + +Bugfixes +-------- + +- Add subclass to `aci_domain_to_vlan_pool` to fix deletion of binding (#695) +- Fix wrong payload attribute used to define the correct vPC member side in aci_l3out_logical_interface_vpc_member (#663) Co-authored-by: akinross +- Fixed seealso module references to include FQCN. +- Made changes to aci_rest module to only add annotation when the value is a dictionary and changed the way the cookie is retrieved in the httpapi plugin +- Modify interface_configs requirement using required_if dependency for aci_bulk_static_binding_to_epg +- Remove duplicate alias name for extepg in aci_l3out_extsubnet +- Updated README to match RedHat s ansible collection template. + v2.10.1 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index a25734374..53876e525 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -257,6 +257,36 @@ releases: ' release_date: '2024-07-12' + 2.11.0: + changes: + bugfixes: + - Add subclass to `aci_domain_to_vlan_pool` to fix deletion of binding (#695) + - 'Fix wrong payload attribute used to define the correct vPC member side in + aci_l3out_logical_interface_vpc_member (#663) Co-authored-by: akinross ' + - Fixed seealso module references to include FQCN. + - Made changes to aci_rest module to only add annotation when the value is + a dictionary and changed the way the cookie is retrieved in the httpapi + plugin + - Modify interface_configs requirement using required_if dependency for aci_bulk_static_binding_to_epg + - Remove duplicate alias name for extepg in aci_l3out_extsubnet + - Updated README to match RedHat s ansible collection template. + minor_changes: + - Add stratum attribute to aci_ntp_policy module + - Add support for management epg configuration in aci_dns_profile module + - Added support for Ansible 2.18 and dropped support for 2.15. - Also changed + supported Python version from 3.10 to 3.11 + release_summary: 'Release v2.11.0 of the ``ansible-aci`` collection on 2024-11-20. + + This changelog describes all changes made to the modules and plugins included + in this collection since v2.10.1. + + ' + trivial: + - Add comment to describe UI behaviour of VLAN mode when encap is set in aci_epg_to_domain + module + - Remove reference in documentation to encap_mode in the encap variable description + of aci_epg_to_domain module + release_date: '2024-11-20' 2.2.0: changes: bugfixes: diff --git a/galaxy.yml b/galaxy.yml index e33e42aef..12d0162bb 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -2,7 +2,7 @@ namespace: cisco name: aci # The version of the collection. Must be compatible with semantic versioning -version: 2.10.1 +version: 2.11.0 readme: README.md authors: - Dag Wieers (@dagwieers)