diff options
Diffstat (limited to 'ansible_collections/cisco/ios/CHANGELOG.rst')
-rw-r--r-- | ansible_collections/cisco/ios/CHANGELOG.rst | 128 |
1 files changed, 128 insertions, 0 deletions
diff --git a/ansible_collections/cisco/ios/CHANGELOG.rst b/ansible_collections/cisco/ios/CHANGELOG.rst index e489054c9..1dcb5aa02 100644 --- a/ansible_collections/cisco/ios/CHANGELOG.rst +++ b/ansible_collections/cisco/ios/CHANGELOG.rst @@ -5,6 +5,134 @@ Cisco Ios Collection Release Notes .. contents:: Topics +v5.3.0 +====== + +Minor Changes +------------- + +- Added ios_evpn_evi resource module. +- Added ios_evpn_global resource module. +- Added ios_vxlan_vtep resource module. +- Fixed ios_evpn_evi resource module integration test failure - code to remove VLAN config. +- ios_bgp_address_family - Fixed an issue with inherit peer-policy CLI +- ios_bgp_address_family - added 'advertise' key +- ios_vlans - added vlan config CLI feature. +- ios_vrf - added MDT related keys + +Bugfixes +-------- + +- Updated the ios_ping ping module to support size param. +- ios_acls - make sequence optional for rendering of standard acls. +- ios_bgp_global - Explicitly add neighbor address to every parser. +- ios_bgp_global - remote_as not mendatory for neighbors. +- ios_vrf - added MDT related keys + +New Modules +----------- + +- ios_evpn_evi - Resource module to configure L2VPN EVPN EVI. +- ios_evpn_global - Resource module to configure L2VPN EVPN. +- ios_vxlan_vtep - Resource module to configure VXLAN VTEP interface. + +v5.2.0 +====== + +Minor Changes +------------- + +- ios_acls - make remarks ordered and to be applied per ace basis. +- ios_acls - remarks in replaced and overridden state to be negated once per ace. +- ios_config - Relax restrictions on I(src) parameter so it can be used more like I(lines). +- ios_snmp_server - Fix an issue with cbgp2 to take in count correctly the bgp traps +- ios_snmp_server - Update the module to manage correctly a lot of traps not take in count + +Deprecated Features +------------------- + +- ios_snmp_server - deprecate traps.envmon.fan with traps.envmon.fan_enable +- ios_snmp_server - deprecate traps.mpls_vpn with traps.mpls + +Bugfixes +-------- + +- Fix invalid password length not being recognized by the error parser. + +v5.1.0 +====== + +Minor Changes +------------- + +- Fixe an issue with some files that doesn't pass the PEP8 sanity check because `type(<obj>) == <type>` is not allowed. We need to use `isinstance(<obj>,<type>)` function in place +- ios_snmp_user - update the user part to compare correctly the auth and privacy parts. +- ospfv2 - added more tests to improve coverage for the rm_template +- ospfv2 - aliased passive_interface to passive_interfaces that supports a list of interfaces +- ospfv2 - fix area ranges rendering +- ospfv2 - fix passive interfaces rendering +- ospfv2 - optimized all the regex to perform better +- ospfv2 - optimized the config side code for quicker comparison and execution + +Deprecated Features +------------------- + +- ospfv2 - removed passive_interface to passive_interfaces that supports a list of interfaces + +Bugfixes +-------- + +- The regex looking for errors in the terminal output was matching anything with '\S+ Error:'. Caused issues with 'show runnning-config' if this string appeared in the output. Updated the regex to require the % anchor. +- bgp_address_family - fix deleted string with int concat issue in bgp_address_family. +- ios_acls - Fix protocol_options rendering corrects processing of overridden/ replaced state. +- ios_acls - Fix standard acls rendering. +- ios_bgp_address_family - fix rendering of remote_as configuration with period. +- ios_logging_global - fix configuration order to configure discriminator before buffer. +- ios_prefix_lists - fix deleted state to remove exisiting prefix lists from configuration. +- ios_service - Put condition to add `private_config_encryption` in default services + +Documentation Changes +--------------------- + +- Fix prefix_lists docs. +- Update examples for ospf_interfaces +- Update examples for ospfv2 +- Update examples for ospfv3 +- ios_acls - update examples and use YAML output in them for better readibility. +- ios_command - Fix formatting of examples. + +v5.0.0 +====== + +Major Changes +------------- + +- This release removes a previously deprecated modules, and a few attributes from this collection. Refer to **Removed Features** section for details. + +Minor Changes +------------- + +- ios_facts - Add CPU utilization. (https://github.com/ansible-collections/cisco.ios/issues/779) + +Removed Features (previously deprecated) +---------------------------------------- + +- Deprecated ios_logging module in favor of ios_logging_global. +- Deprecated next_hop_self attribute for bgp_address_family with nexthop_self. + +Bugfixes +-------- + +- ios_facts - Fix facts gathering when memory statistics head is not hexadecimal. (https://github.com/ansible-collections/cisco.ios/issues/776) +- ios_snmp_server - Fixes error handling for snmp user when snmp agent is not enabled +- ios_static_routes - Fix non vlan entries to have unique group identifier. +- ios_static_routes - Fix parsers to parse interface attribute correctly. + +Documentation Changes +--------------------- + +- ios_facts - Add ansible_net_cpu_utilization. + v4.6.1 ====== |