diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d0dd5caa6..90bb7f702 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,18 @@ Cisco Ios Collection Release Notes .. contents:: Topics +v9.0.2 +====== + +Bugfixes +-------- + +- ios_bgp_address_family - Add support for maximum-paths configuration. +- ios_bgp_address_family - Add support for maximum-secondary-paths configuration. +- ios_interfaces - Fixes rendering of FiftyGigabitEthernet as it was wrongly rendering FiftyGigabitEthernet as FiveGigabitEthernet. +- ios_snmp_server - Fixes an issue where enabling the read-only (ro) attribute in communities was not idempotent. +- ios_static_routes - Fix processing of metric_distance as it was wrongly populated under the forward_router_address attribute. + v9.0.1 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index b998ff184..d8a8a131a 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1254,3 +1254,22 @@ releases: - pr-1095-fragment.yaml - vlan_err_reg.yaml release_date: "2024-08-05" + 9.0.2: + changes: + bugfixes: + - ios_bgp_address_family - Add support for maximum-paths configuration. + - ios_bgp_address_family - Add support for maximum-secondary-paths configuration. + - ios_interfaces - Fixes rendering of FiftyGigabitEthernet as it was wrongly + rendering FiftyGigabitEthernet as FiveGigabitEthernet. + - ios_snmp_server - Fixes an issue where enabling the read-only (ro) attribute + in communities was not idempotent. + - ios_static_routes - Fix processing of metric_distance as it was wrongly populated + under the forward_router_address attribute. + fragments: + - 0-readme.yml + - bgp_add_fam_max_path.yaml + - fix-snmp-server-idempotency.yml + - fix_interface_fifty_interface.yml + - ios_static_routes.yaml + - pylint_fix.yaml + release_date: "2024-09-16" diff --git a/changelogs/fragments/0-readme.yml b/changelogs/fragments/0-readme.yml deleted file mode 100644 index 6ae0307d2..000000000 --- a/changelogs/fragments/0-readme.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -trivial: - - README.md - Add Communication section with Forum information. diff --git a/changelogs/fragments/bgp_add_fam_max_path.yaml b/changelogs/fragments/bgp_add_fam_max_path.yaml deleted file mode 100644 index 197bea53c..000000000 --- a/changelogs/fragments/bgp_add_fam_max_path.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -bugfixes: - - ios_bgp_address_family - Add support for maximum-paths configuration. - - ios_bgp_address_family - Add support for maximum-secondary-paths configuration. diff --git a/changelogs/fragments/fix-snmp-server-idempotency.yml b/changelogs/fragments/fix-snmp-server-idempotency.yml deleted file mode 100644 index 0249428a2..000000000 --- a/changelogs/fragments/fix-snmp-server-idempotency.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - ios_snmp_server - Fixes an issue where enabling the read-only (ro) attribute in communities was not idempotent. diff --git a/changelogs/fragments/fix_interface_fifty_interface.yml b/changelogs/fragments/fix_interface_fifty_interface.yml deleted file mode 100644 index 3810521f4..000000000 --- a/changelogs/fragments/fix_interface_fifty_interface.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - ios_interfaces - Fixes rendering of FiftyGigabitEthernet as it was wrongly rendering FiftyGigabitEthernet as FiveGigabitEthernet. diff --git a/changelogs/fragments/ios_static_routes.yaml b/changelogs/fragments/ios_static_routes.yaml deleted file mode 100644 index 5400b7f41..000000000 --- a/changelogs/fragments/ios_static_routes.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - ios_static_routes - Fix processing of metric_distance as it was wrongly populated under the forward_router_address attribute. diff --git a/changelogs/fragments/pylint_fix.yaml b/changelogs/fragments/pylint_fix.yaml deleted file mode 100644 index deab6088c..000000000 --- a/changelogs/fragments/pylint_fix.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -trivial: - - ospfv2 - Fixes pylint error where variable is potentially unbound. diff --git a/galaxy.yml b/galaxy.yml index dea4b9e90..8465f3b6c 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: "9.0.1" +version: "9.0.2"