diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ea40ef0b..ae7258fc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,30 @@ Community Network Release Notes This changelog describes changes after version 2.0.0. +v3.1.0 +====== + +Release Summary +--------------- + +This is the minor release of the ``community.network`` collection. +This changelog contains all changes to the modules in this collection +that have been added after the release of ``community.network`` 3.0.0. + +Minor Changes +------------- + +- community.network.ce_switchport - add support of decode a few stdout values from bitmap to human readable format(https://github.com/ansible-collections/community.network/issues/315) +- community.network.edgeos_config - append save command into result (https://github.com/ansible-collections/community.network/pull/189) + +Bugfixes +-------- + +- ce - Modify the bug in the query configuration method (https://github.com/ansible-collections/community.network/pull/56). +- community.network.ce_switchport - fix error causing by ``KeyError:`` ``host`` due to properties aren't used anywhere (https://github.com/ansible-collections/community.network/issues/313) +- exos_config - fix a hang due to an unexpected prompt during save_when (https://github.com/ansible-collections/community.network/pull/110). +- weos4 cliconf plugin - fix linting errors in documentation data (https://github.com/ansible-collections/community.network/pull/368). + v3.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 02a24361..22405b49 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -58,3 +58,30 @@ releases: name: weos4 namespace: null release_date: '2021-04-22' + 3.1.0: + changes: + bugfixes: + - ce - Modify the bug in the query configuration method (https://github.com/ansible-collections/community.network/pull/56). + - community.network.ce_switchport - fix error causing by ``KeyError:`` ``host`` + due to properties aren't used anywhere (https://github.com/ansible-collections/community.network/issues/313) + - exos_config - fix a hang due to an unexpected prompt during save_when (https://github.com/ansible-collections/community.network/pull/110). + - weos4 cliconf plugin - fix linting errors in documentation data (https://github.com/ansible-collections/community.network/pull/368). + minor_changes: + - community.network.ce_switchport - add support of decode a few stdout values + from bitmap to human readable format(https://github.com/ansible-collections/community.network/issues/315) + - community.network.edgeos_config - append save command into result (https://github.com/ansible-collections/community.network/pull/189) + release_summary: 'This is the minor release of the ``community.network`` collection. + + This changelog contains all changes to the modules in this collection + + that have been added after the release of ``community.network`` 3.0.0.' + fragments: + - 110-fix-exos-save-config.yaml + - 189-append-save-command-into-result.yaml + - 289-safe-eval-no-concat.yml + - 3.1.0.yml + - 313_fix_broken_ce_switchport_module.yaml + - 315_add_support_decode_bitmap_for_ce_switchport_module.yaml + - 56-ce_modify_query_configuration_method.yml + - validate-plugins.yml + release_date: '2022-03-09' diff --git a/changelogs/fragments/110-fix-exos-save-config.yaml b/changelogs/fragments/110-fix-exos-save-config.yaml deleted file mode 100644 index 54ff58f4..00000000 --- a/changelogs/fragments/110-fix-exos-save-config.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - exos_config - fix a hang due to an unexpected prompt during save_when (https://github.com/ansible-collections/community.network/pull/110). diff --git a/changelogs/fragments/189-append-save-command-into-result.yaml b/changelogs/fragments/189-append-save-command-into-result.yaml deleted file mode 100644 index 5ffbc4fb..00000000 --- a/changelogs/fragments/189-append-save-command-into-result.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - community.network.edgeos_config - append save command into result (https://github.com/ansible-collections/community.network/pull/189) diff --git a/changelogs/fragments/289-safe-eval-no-concat.yml b/changelogs/fragments/289-safe-eval-no-concat.yml deleted file mode 100644 index 0e202099..00000000 --- a/changelogs/fragments/289-safe-eval-no-concat.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -trivial: - - Don't rely on ``safe_eval`` being able to do math/concat - (https://github.com/ansible-collections/community.network/pull/289) diff --git a/changelogs/fragments/313_fix_broken_ce_switchport_module.yaml b/changelogs/fragments/313_fix_broken_ce_switchport_module.yaml deleted file mode 100644 index 2d31c2dc..00000000 --- a/changelogs/fragments/313_fix_broken_ce_switchport_module.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -bugfixes: - - community.network.ce_switchport - fix error causing by ``KeyError:`` ``host`` due to properties aren't - used anywhere (https://github.com/ansible-collections/community.network/issues/313) diff --git a/changelogs/fragments/315_add_support_decode_bitmap_for_ce_switchport_module.yaml b/changelogs/fragments/315_add_support_decode_bitmap_for_ce_switchport_module.yaml deleted file mode 100644 index 90d288cf..00000000 --- a/changelogs/fragments/315_add_support_decode_bitmap_for_ce_switchport_module.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -minor_changes: - - community.network.ce_switchport - add support of decode a few stdout values from bitmap to - human readable format(https://github.com/ansible-collections/community.network/issues/315) diff --git a/changelogs/fragments/56-ce_modify_query_configuration_method.yml b/changelogs/fragments/56-ce_modify_query_configuration_method.yml deleted file mode 100644 index 8518cf7a..00000000 --- a/changelogs/fragments/56-ce_modify_query_configuration_method.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "ce - Modify the bug in the query configuration method (https://github.com/ansible-collections/community.network/pull/56)." diff --git a/changelogs/fragments/validate-plugins.yml b/changelogs/fragments/validate-plugins.yml deleted file mode 100644 index aebfdcff..00000000 --- a/changelogs/fragments/validate-plugins.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "weos4 cliconf plugin - fix linting errors in documentation data (https://github.com/ansible-collections/community.network/pull/368)." diff --git a/galaxy.yml b/galaxy.yml index ddc4d445..74133266 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: network -version: 3.0.0 +version: 3.1.0 readme: README.md authors: - Ansible (https://github.com/ansible)