diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9a6562fc9..c80bf2589 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,13 +5,36 @@ Cisco Ios Collection Release Notes .. contents:: Topics +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 ------------- -- Fix an issue with some files that doesn't pass the PEP8 sanity check because `type() == ` is not allowed. We need to use `isinstance(,)` function in place +- Fixe an issue with some files that doesn't pass the PEP8 sanity check because `type() == ` is not allowed. We need to use `isinstance(,)` 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 diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 3b89d6f0c..b6642ce58 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1000,3 +1000,26 @@ releases: - 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" diff --git a/changelogs/fragments/acl_remaks_fresh.yml b/changelogs/fragments/acl_remaks_fresh.yml deleted file mode 100644 index dad5b71fc..000000000 --- a/changelogs/fragments/acl_remaks_fresh.yml +++ /dev/null @@ -1,4 +0,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." diff --git a/changelogs/fragments/error_parser_bug.yml b/changelogs/fragments/error_parser_bug.yml deleted file mode 100644 index af3d1d0e2..000000000 --- a/changelogs/fragments/error_parser_bug.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - "Fix invalid password length not being recognized by the error parser." diff --git a/changelogs/fragments/fix_config.yaml b/changelogs/fragments/fix_config.yaml deleted file mode 100644 index 9c32bb160..000000000 --- a/changelogs/fragments/fix_config.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - "ios_config - Relax restrictions on I(src) parameter so it can be used more like I(lines)." diff --git a/changelogs/fragments/ios_snmp_server_changes.yml b/changelogs/fragments/ios_snmp_server_changes.yml deleted file mode 100644 index 6b20d0ea4..000000000 --- a/changelogs/fragments/ios_snmp_server_changes.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -minor_changes: - - ios_snmp_server - Update the module to manage correctly a lot of traps not take in count - - ios_snmp_server - Fix an issue with cbgp2 to take in count correctly the bgp traps -deprecated_features: - - ios_snmp_server - deprecate traps.mpls_vpn with traps.mpls - - ios_snmp_server - deprecate traps.envmon.fan with traps.envmon.fan_enable diff --git a/galaxy.yml b/galaxy.yml index 3669adcb8..f03591471 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -11,4 +11,4 @@ readme: README.md repository: https://github.com/ansible-collections/cisco.ios issues: https://github.com/ansible-collections/cisco.ios/issues tags: [cisco, ios, iosxe, networking] -version: "5.1.0" +version: "5.2.0"