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
26 changes: 26 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,32 @@ Cisco ACI Ansible Collection Release Notes

.. contents:: Topics

v2.11.0
=======

Release Summary
---------------

Release v2.11.0 of the ``ansible-aci`` collection on 2025-04-18.
This changelog describes all changes made to the modules and plugins included in this collection since v2.10.1.

Minor Changes
-------------

- Add aci_endpoint_tag_ip and aci_endpoint_tag_mac modules to manage Endpoint IP and MAC Tags.
- Add aci_ip_sla_monitoring_policy module.
- Add management_epg and management_epg_type attributes in aci_dns_profile module.
- Add stratum attribute to aci_ntp_policy module.
- Add support for Ansible 2.18 and dropped support for Ansible 2.15 as required by Ansible Galaxy.

Bugfixes
--------

- Fix aci_rest module to only add annotation when the value is a dictionary
- Fix payload to define the correct vPC member side in aci_l3out_logical_interface_vpc_member (#663)
- Fix subclass issue in aci_domain_to_vlan_pool to fix deletion of binding (#695)
- Modify interface_configs requirement using required_if dependency for aci_bulk_static_binding_to_epg

v2.10.1
=======

Expand Down
20 changes: 20 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,26 @@ releases:

'
release_date: '2024-07-12'
2.11.0:
changes:
bugfixes:
- Fix subclass issue in aci_domain_to_vlan_pool to fix deletion of binding (#695)
- Fix payload to define the correct vPC member side in aci_l3out_logical_interface_vpc_member (#663)
- Fix aci_rest module to only add annotation when the value is a dictionary
- Modify interface_configs requirement using required_if dependency for aci_bulk_static_binding_to_epg
minor_changes:
- Add aci_ip_sla_monitoring_policy module.
- Add aci_endpoint_tag_ip and aci_endpoint_tag_mac modules to manage Endpoint IP and MAC Tags.
- Add stratum attribute to aci_ntp_policy module.
- Add management_epg and management_epg_type attributes in aci_dns_profile module.
- Add support for Ansible 2.18 and dropped support for Ansible 2.15 as required by Ansible Galaxy.
release_summary: 'Release v2.11.0 of the ``ansible-aci`` collection on 2025-04-18.

This changelog describes all changes made to the modules and plugins included
in this collection since v2.10.1.

'
release_date: '2025-04-18'
2.2.0:
changes:
bugfixes:
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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) <dag@wieers.com>
Expand Down
3 changes: 3 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ action_groups:
- aci_domain_to_vlan_pool
- aci_encap_pool
- aci_encap_pool_range
- aci_endpoint_tag_ip
- aci_endpoint_tag_mac
- aci_epg
- aci_epg_monitoring_policy
- aci_epg_subnet
Expand Down Expand Up @@ -160,6 +162,7 @@ action_groups:
- aci_interface_policy_spine_policy_group
- aci_interface_policy_storm_control
- aci_interface_selector_to_switch_policy_leaf_profile
- aci_ip_sla_monitoring_policy
- aci_key_policy
- aci_keychain_policy
- aci_l2out
Expand Down
Loading