diff options
author | GomathiselviS <gomathiselvi@gmail.com> | 2021-01-27 14:28:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-27 19:28:05 +0000 |
commit | 52457c14d33ec6387a693368eeb090c6b58eb443 (patch) | |
tree | 5cf07753df7843f99fc63740a2fe0efc27a4f6df /changelogs | |
parent | 59dad0ffed43b0f7fc3026fc8014e2092cb5b68b (diff) | |
download | vyos-ansible-old-52457c14d33ec6387a693368eeb090c6b58eb443.tar.gz vyos-ansible-old-52457c14d33ec6387a693368eeb090c6b58eb443.zip |
Prepare VYOS for Release 1.1.1 (#118)1.1.1
Prepare VYOS for Release 1.1.1
Reviewed-by: https://github.com/apps/ansible-zuul
Diffstat (limited to 'changelogs')
-rw-r--r-- | changelogs/CHANGELOG.rst | 13 | ||||
-rw-r--r-- | changelogs/changelog.yaml | 21 | ||||
-rw-r--r-- | changelogs/fragments/91-new-interface.yaml | 3 | ||||
-rw-r--r-- | changelogs/fragments/config-processed-as-command.yaml | 3 | ||||
-rw-r--r-- | changelogs/fragments/galaxy-version.yaml | 3 |
5 files changed, 28 insertions, 15 deletions
diff --git a/changelogs/CHANGELOG.rst b/changelogs/CHANGELOG.rst index f886491..f0ec995 100644 --- a/changelogs/CHANGELOG.rst +++ b/changelogs/CHANGELOG.rst @@ -5,6 +5,16 @@ Vyos Collection Release Notes .. contents:: Topics +v1.1.1 +====== + +Bugfixes +-------- + +- Add version key to galaxy.yaml to work around ansible-galaxy bug +- Enable configuring an interface which is not present in the running config. +- vyos_config - Only process src files as commands when they actually contain commands. This fixes an issue were the whitespace preceding a configuration key named 'set' was stripped, tripping up the parser. + v1.1.0 ====== @@ -16,8 +26,7 @@ Minor Changes New Modules ----------- -- vyos_ospf_interfaces - OSPF Interfaces Resource Module - +- vyos_ospf_interfaces - OSPF Interfaces resource module v1.0.5 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index fe41c82..e1b3bc6 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -152,10 +152,23 @@ releases: changes: minor_changes: - Added ospf_interfaces resource module. - modules: - - description: OSPF Interfaces resource module - name: vyos_ospf_interfaces - namespace: '' fragments: - vyos_ospf_interfaces_rm.yaml + modules: + - description: OSPF Interfaces resource module + name: vyos_ospf_interfaces + namespace: '' release_date: '2020-10-30' + 1.1.1: + changes: + bugfixes: + - Add version key to galaxy.yaml to work around ansible-galaxy bug + - Enable configuring an interface which is not present in the running config. + - vyos_config - Only process src files as commands when they actually contain + commands. This fixes an issue were the whitespace preceding a configuration + key named 'set' was stripped, tripping up the parser. + fragments: + - 91-new-interface.yaml + - config-processed-as-command.yaml + - galaxy-version.yaml + release_date: '2021-01-27' diff --git a/changelogs/fragments/91-new-interface.yaml b/changelogs/fragments/91-new-interface.yaml deleted file mode 100644 index b8bba25..0000000 --- a/changelogs/fragments/91-new-interface.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - Enable configuring an interface which is not present in the running config. diff --git a/changelogs/fragments/config-processed-as-command.yaml b/changelogs/fragments/config-processed-as-command.yaml deleted file mode 100644 index b34f5a0..0000000 --- a/changelogs/fragments/config-processed-as-command.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - vyos_config - Only process src files as commands when they actually contain commands. This fixes an issue were the whitespace preceding a configuration key named 'set' was stripped, tripping up the parser. diff --git a/changelogs/fragments/galaxy-version.yaml b/changelogs/fragments/galaxy-version.yaml deleted file mode 100644 index 6d5e47e..0000000 --- a/changelogs/fragments/galaxy-version.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - Add version key to galaxy.yaml to work around ansible-galaxy bug |