diff options
Diffstat (limited to 'ansible_collections/cisco/ios/changelogs/changelog.yaml')
-rw-r--r-- | ansible_collections/cisco/ios/changelogs/changelog.yaml | 149 |
1 files changed, 149 insertions, 0 deletions
diff --git a/ansible_collections/cisco/ios/changelogs/changelog.yaml b/ansible_collections/cisco/ios/changelogs/changelog.yaml index 4b6a2e8b1..510f6b809 100644 --- a/ansible_collections/cisco/ios/changelogs/changelog.yaml +++ b/ansible_collections/cisco/ios/changelogs/changelog.yaml @@ -916,3 +916,152 @@ releases: - snmpv3_user_render.yml - update_galaxy.yml release_date: "2023-06-13" + 5.0.0: + changes: + 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. + doc_changes: + - ios_facts - Add ansible_net_cpu_utilization. + 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: + - Deprecated ios_logging module in favor of ios_logging_global. + - Deprecated next_hop_self attribute for bgp_address_family with nexthop_self. + fragments: + - cpu_util.yml + - depr_logging.yml + - enable_states.yml + - facts_fix.yml + - snmp_log.yml + - snmp_user_bug.yml + release_date: "2023-07-05" + 5.1.0: + changes: + 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 + deprecated_features: + - ospfv2 - removed passive_interface to passive_interfaces that supports a list + of interfaces + doc_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. + 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 + fragments: + - bgp_add_fam_route_maps.yaml + - bgp_address_family_bug.yml + - bug_ios_service-private_config_encryption.yml + - codecov_pr.yml + - fix_ospfv2_integration_test.yml + - fix_prefix_list_docs.yaml + - ios_acls.yaml + - ios_acls_fix.yaml + - ios_snmp_user.yml + - logging_global_order.yaml + - pep8_bugfix.yml + - prefix_list_fix.yaml + - rework_ospfv2.yml + - stderr_re_fix.yaml + - update_ospf_docs.yaml + release_date: "2023-10-04" + 5.2.0: + changes: + bugfixes: + - Fix invalid password length not being recognized by the error parser. + deprecated_features: + - ios_snmp_server - deprecate traps.envmon.fan with traps.envmon.fan_enable + - ios_snmp_server - deprecate traps.mpls_vpn with traps.mpls + 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 + fragments: + - acl_remaks_fresh.yml + - error_parser_bug.yml + - fix_config.yaml + - ios_snmp_server_changes.yml + release_date: "2023-10-27" + 5.3.0: + changes: + 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 + 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 + fragments: + - add_ios_evpn_evi.yaml + - add_ios_evpn_global.yaml + - add_ios_vxlan_vtep.yaml + - bgp_global_evpn_fix.yml + - bgp_global_evpn_fix_2.yml + - fix_acls_old.yml + - fix_ios_bgp_address_family.yaml + - fix_ios_evpn_evi.yaml + - fix_ios_vlan_config.yaml + - fix_ios_vlans.yaml + - fix_ios_vrf.yaml + - ios_ping_fix.yml + modules: + - description: Resource module to configure L2VPN EVPN EVI. + name: ios_evpn_evi + namespace: "" + - description: Resource module to configure L2VPN EVPN. + name: ios_evpn_global + namespace: "" + - description: Resource module to configure VXLAN VTEP interface. + name: ios_vxlan_vtep + namespace: "" + release_date: "2023-11-29" |