diff options
author | GomathiselviS <gomathiselvi@gmail.com> | 2021-07-27 10:58:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 14:58:21 +0000 |
commit | d1ebc5a6e65eda8cb7c39625afdf0fb5918da5dd (patch) | |
tree | f3afefa2bb3172e27eb2dbb9e1a5f1905e86e9c1 | |
parent | 36004b2657d1c271a5c6c8ddfee0488ad36c1236 (diff) | |
download | vyos.vyos-2.5.0.tar.gz vyos.vyos-2.5.0.zip |
Prepare vyos release 2.5.0 (#188)2.5.0
Prepare vyos release 2.5.0
Signed-off-by: GomathiselviS gomathiselvi@gmail.com
SUMMARY
ISSUE TYPE
Docs Pull Request
COMPONENT NAME
ADDITIONAL INFORMATION
Reviewed-by: Sagar Paul <sagpaul@redhat.com>
-rw-r--r-- | CHANGELOG.rst | 18 | ||||
-rw-r--r-- | changelogs/changelog.yaml | 13 | ||||
-rw-r--r-- | changelogs/fragments/fix_issue_vyos_facts.yaml | 3 | ||||
-rw-r--r-- | changelogs/fragments/vyos_logging_global_module.yaml | 5 | ||||
-rw-r--r-- | docs/vyos.vyos.vyos_ping_module.rst | 2 | ||||
-rw-r--r-- | docs/vyos.vyos.vyos_route_maps_module.rst | 4 |
6 files changed, 34 insertions, 11 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1ef863c8..9e622489 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,24 @@ Vyos Collection Release Notes .. contents:: Topics +v2.5.0 +====== + +Minor Changes +------------- + +- vyos_logging_global logging resource module. + +Deprecated Features +------------------- + +- The vyos_logging module has been deprecated in favor of the new vyos_logging_global resource module and will be removed in a release after "2023-08-01". + +Bugfixes +-------- + +- fix issue in route-maps facts code when route-maps facts are empty. + v2.4.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index cd6764ce..76d67c88 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -274,3 +274,16 @@ releases: name: vyos_prefix_lists namespace: '' release_date: '2021-07-06' + 2.5.0: + changes: + bugfixes: + - fix issue in route-maps facts code when route-maps facts are empty. + deprecated_features: + - The vyos_logging module has been deprecated in favor of the new vyos_logging_global + resource module and will be removed in a release after "2023-08-01". + minor_changes: + - vyos_logging_global logging resource module. + fragments: + - fix_issue_vyos_facts.yaml + - vyos_logging_global_module.yaml + release_date: '2021-07-26' diff --git a/changelogs/fragments/fix_issue_vyos_facts.yaml b/changelogs/fragments/fix_issue_vyos_facts.yaml deleted file mode 100644 index 81653a0d..00000000 --- a/changelogs/fragments/fix_issue_vyos_facts.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - fix issue in route-maps facts code when route-maps facts are empty. diff --git a/changelogs/fragments/vyos_logging_global_module.yaml b/changelogs/fragments/vyos_logging_global_module.yaml deleted file mode 100644 index d9f2c8f5..00000000 --- a/changelogs/fragments/vyos_logging_global_module.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -minor_changes: - - vyos_logging_global logging resource module. -deprecated_features: - - The vyos_logging module has been deprecated in favor of the new vyos_logging_global resource module and will be removed in a release after "2023-08-01". diff --git a/docs/vyos.vyos.vyos_ping_module.rst b/docs/vyos.vyos.vyos_ping_module.rst index 59e4a745..a1674b55 100644 --- a/docs/vyos.vyos.vyos_ping_module.rst +++ b/docs/vyos.vyos.vyos_ping_module.rst @@ -405,7 +405,7 @@ Common return values are documented `here <https://docs.ansible.com/ansible/late <div>The round trip time (RTT) stats.</div> <br/> <div style="font-size: smaller"><b>Sample:</b></div> - <div style="font-size: smaller; color: blue; word-wrap: break-word; word-break: break-all;">{'avg': 2, 'max': 8, 'min': 1, 'mdev': 24}</div> + <div style="font-size: smaller; color: blue; word-wrap: break-word; word-break: break-all;">AnsibleMapping([('avg', 2), ('max', 8), ('min', 1), ('mdev', 24)])</div> </td> </tr> </table> diff --git a/docs/vyos.vyos.vyos_route_maps_module.rst b/docs/vyos.vyos.vyos_route_maps_module.rst index 828ce347..c548e9bb 100644 --- a/docs/vyos.vyos.vyos_route_maps_module.rst +++ b/docs/vyos.vyos.vyos_route_maps_module.rst @@ -1464,7 +1464,7 @@ Examples # "route_map": "test3" # } # ], - # "before": {}, + # "before": [], # "changed": true, # "commands": [ # "set policy route-map test1 rule 1 description test", @@ -1672,7 +1672,7 @@ Examples # # Module Execution: # - # "after": {}, + # "after": [], # "before": [ # { # "entries": [ |