From 1f699e89d90b89295a8a90096820d8f7a9565df5 Mon Sep 17 00:00:00 2001 From: Ansible Bot Date: Mon, 24 Jul 2023 17:13:34 +0000 Subject: [PATCH] Changelog updated --- CHANGELOG.rst | 8 + changelogs/changelog.yaml | 1144 +++++++++++++++--------------- changelogs/fragments/telnet.yaml | 3 - galaxy.yml | 2 +- 4 files changed, 587 insertions(+), 570 deletions(-) delete mode 100644 changelogs/fragments/telnet.yaml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 707c47e01..ec20039aa 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,14 @@ Ansible Netcommon Collection Release Notes .. contents:: Topics +v5.1.3 +====== + +Bugfixes +-------- + +- Vendor telnetlib from cpython (https://github.com/ansible-collections/ansible.netcommon/pull/546) + v5.1.2 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 087e67f5d..e9ec97d1a 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1,383 +1,312 @@ -ancestor: null +--- +ancestor: releases: - 1.0.0: - modules: - - description: Run a cli command on cli-based network devices - name: cli_command - namespace: "" - - description: Push text based configuration to network devices over network_cli - name: cli_config - namespace: "" - - description: Copy a file from a network device to Ansible Controller - name: net_get - namespace: "" - - description: Tests reachability using ping from a network device - name: net_ping - namespace: "" - - description: Copy a file from Ansible Controller to a network device - name: net_put - namespace: "" - - description: netconf device configuration - name: netconf_config - namespace: "" - - description: Fetch configuration/state data from NETCONF enabled network devices. - name: netconf_get - namespace: "" - - description: Execute operations on NETCONF enabled network devices. - name: netconf_rpc - namespace: "" - - description: - Handles create, update, read and delete of configuration data on - RESTCONF enabled devices. - name: restconf_config - namespace: "" - - description: Fetch configuration/state data from RESTCONF enabled devices. - name: restconf_get - namespace: "" - - description: Executes a low-down and dirty telnet command - name: telnet - namespace: "" - plugins: - become: - - description: Switch to elevated permissions on a network device - name: enable - namespace: null - connection: - - description: Use httpapi to run command on network appliances - name: httpapi - namespace: null - - description: Provides a persistent connection using the netconf protocol - name: netconf - namespace: null - - description: Use network_cli to run command on network appliances - name: network_cli - namespace: null - - description: Use a persistent unix socket for connection - name: persistent - namespace: null - httpapi: - - description: HttpApi Plugin for devices supporting Restconf API - name: restconf - namespace: null - netconf: - - description: - Use default netconf plugin to run standard netconf commands as - per RFC - name: default - namespace: null - release_date: "2020-06-23" - 1.1.0: + 5.1.3: changes: bugfixes: - - Replace deprecated `getiterator` call with `iter` - - ipaddr - "host" query supports /31 subnets properly - - ipaddr filter - Fixed issue where the first IPv6 address in a subnet was not - being considered a valid address. - - ipaddr filter now returns empty list instead of False on empty list input - - net_put - Restore missing function removed when action plugin stopped inheriting - NetworkActionBase - - nthhost filter now returns str instead of IPAddress object - - slaac filter now returns str instead of IPAddress object - major_changes: - - Add libssh connection plugin and refactor network_cli (https://github.com/ansible-collections/ansible.netcommon/pull/30) - minor_changes: - - Add content option validation for netconf_config module (https://github.com/ansible-collections/ansible.netcommon/pull/66) - - Documentation of module arguments updated to match expected types where missing. - - "Resource Modules: changed flag is set to true in check_mode for all ACTION_STATES - (https://github.com/ansible-collections/ansible.netcommon/pull/82)" - removed_features: - - module_utils.network.common.utils.ComplexDict has been removed + - Vendor telnetlib from cpython (https://github.com/ansible-collections/ansible.netcommon/pull/546) fragments: - - 103-net-put-handle-src.yaml - - 30-add-libssh-connection-support.yaml - - 34-ipaddr-empty-list.yaml - - 66-netconf-config-vaildation.yml - - 72-ipv6-first-address-fix.yaml - - 74-remove-getiterator.yaml - - 75-unit-tests.yaml - - 78-sanity-cleanup.yaml - - 82-changed_true_action_states_check_mode_yes.yml - - 95-ipaddr.yaml - release_date: "2020-07-30" - 1.1.1: + - telnet.yaml + release_date: "2023-07-24" + 5.1.2: changes: - release_summary: Rereleased 1.1.0 with regenerated documentation. + bugfixes: + - Ensure that all connection plugin options that should be strings are actually + strings (https://github.com/ansible-collections/ansible.netcommon/pull/549). fragments: - - 1.1.1.yaml - release_date: "2020-07-31" - 1.1.2: + - 549-connection-strings.yml + - 550-ansible-lint.yml + - gha_release.yaml + - line-length.yaml + release_date: "2023-07-05" + 5.1.1: changes: - release_summary: Rereleased 1.1.1 with updated changelog. + bugfixes: + - network_resource - do not append network_os to module names when building + supported resources list. This fix is only valid for cases where FACTS_RESOURCE_SUBSETS + is undefined. fragments: - - 1.1.2.yaml - release_date: "2020-08-06" - 1.2.0: + - resource_manager.yaml + release_date: "2023-05-09" + 5.1.0: changes: bugfixes: - - cli_config fixes issue when rollback_id = 0 evalutes to False - - sort_list will sort a list of dicts using the sorted method with key as an - argument. + - httpapi - ``send()`` method no longer applied leftover kwargs to ``open_url()``. + Fix applies those arguments as intended (https://github.com/ansible-collections/ansible.netcommon/pull/524). + - network_resource - fix a potential UnboundLocalError if the module fails + to import a Resource Module. (https://github.com/ansible-collections/ansible.netcommon/pull/513) + - restconf - creation of new resources is no longer erroneously forced to + use POST. (https://github.com/ansible-collections/ansible.netcommon/issues/502) + - network_cli - when receiving longer responses with libssh, parts of the + response were sometimes repeated. The response is now returned as it is + received (https://github.com/ansible-collections/community.routeros/issues/132). + - network_cli - network cli connection avoids traceback when using invalid + user minor_changes: - - Added description to collection galaxy.yml file. - - NetworkConfig objects now have an optional `comment_tokens` parameter which - takes a list of strings which will override the DEFAULT_COMMENT_TOKENS list. - - New cli_parse module for parsing structured text using a variety of parsers. - The initial implemetation of cli_parse can be used with json, native, ntc_templates, - pyats, textfsm, ttp, and xml. - - The httpapi connection plugin now works with `wait_for_connection`. This will - periodically request the root page of the server described by the plugin's - options until the request succeeds. This can only test that the server is - reachable, the correctness or usability of the API is not guaranteed. + - telnet - apply ``timeout`` to command prompts. + - telnet - add support for regexes to ``login_prompt`` and ``password_prompt``. + - telnet - add ``stdout`` and ``stdout_lines`` to module output. + - parse_cli - add support for multiple matches inside a block by adding new + dictionary key to result + - libssh - add ``config_file`` option to specify an alternate SSH config file + to use. fragments: - - 105-wait_for_conn-httpapi.yaml - - 109-cli_parse_module_addition.yaml - - 110-NetworkConfig-comments.yaml - - 114-sort_list_listofdicts.yaml - - 118-cli_config.yaml - - 127-galaxy-fragment.yaml - release_date: "2020-08-25" - 1.2.1: + - 530-parse_cli.yaml + - httpapi-kwargs.yaml + - libssh-repeated-text.yaml + - libssh_config_file.yaml + - lint.yaml + - network_cli_bad_user.yaml + - restconf_put.yaml + - telnet-refactoring.yml + - ule-docs.yaml + release_date: "2023-04-03" + 5.0.0: changes: + breaking_changes: + - VALID_MASKS, is_masklen, is_netmask, to_bits, to_ipv6_network, to_masklen, + to_netmask, and to_subnet are no longer importable from ansible_collections.ansible.netcommon.plugins.module_utils.network.common.utils + and should now be found at their proper location ansible.module_utils.common.network + - ResourceModule is no longer importable from ansible_collections.ansible.netcommon.plugins.module_utils.network.common + and should now be found at its proper location + ansible_collections.ansible.netcommon.plugins.module_utils.network.common.rm_base.resource_module + - NetworkTemplate is no longer importable from ansible_collections.ansible.netcommon.plugins.module_utils.network.common + and should now be found at its proper location + ansible_collections.ansible.netcommon.plugins.module_utils.network.common.rm_base.network_template + - NetworkConnectionBase now inherits from PersistentConnectionBase in ansible.utils. + As a result, the minimum ansible.utils version has increased to 2.7.0. bugfixes: - - Fixed "Object of type Capabilities is not JSON serializable" when using default - netconf plugin. + - Cast AnsibleUnsafeText to str in convert_doc_to_ansible_module_kwargs() + to keep CSafeLoader happy. This fixes issues with content scaffolding tools. + minor_changes: + - httpapi - Add option netcommon_httpapi_ciphers to allow overriding default + SSL/TLS ciphers. (https://github.com/ansible-collections/ansible.netcommon/pull/494) + removed_features: + - cli_parse - This plugin was moved to ansible.utils in version 1.0.0, and + the redirect to that collection has now been removed. fragments: - - netconf-capabilites-fix.yaml - release_date: "2020-09-04" - 1.3.0: + - 23H1_breaking.yaml + - flake8.yaml + - netcommon_httpapi_ciphers.yaml + - persistentbase.yaml + - telnet.yaml + release_date: "2023-02-27" + 4.1.0: changes: bugfixes: - - cli_parse - Ensure only native types are returned to the control node from - the parser. - - netconf - Changed log level for message of using default netconf plugin to - match the level used when a platform-specific netconf plugin is found + - restconf_get - fix direction of XML deserialization when ``output == 'xml'`` minor_changes: - - Confirmed commit fails with TypeError in IOS XR netconf plugin (https://github.com/ansible-collections/cisco.iosxr/issues/74) - - The netconf_config module now allows root tag with namespace prefix. - - "cli_config: Add new return value diff which is returned when the cliconf - plugin supports onbox diff" - - "cli_config: Clarify when commands is returned when the module is run" + - Add implementation for content_templates_parser. fragments: - - 134-cli-config-diff.yaml - - allow_root_tag_with_prefix.yaml - - cli_parse_fix.yaml - - iosxr_netconf_config_commit_testcase.yaml - - netconf-default.yaml - release_date: "2020-09-29" - 1.4.0: + - add_content_template_parser.yaml + - fix_wrong_xml_direction.yaml + release_date: "2022-11-02" + 4.0.0: changes: - bugfixes: - - Added support for private key based authentication with libssh transport (https://github.com/ansible-collections/ansible.netcommon/issues/168) - - Fixed ipaddr filter plugins in ansible.netcommon collections is not working - with latest Ansible (https://github.com/ansible-collections/ansible.netcommon/issues/157) - - Fixed netconf_rpc task fails due to encoding issue in the response (https://github.com/ansible-collections/ansible.netcommon/issues/151) - - Fixed ssh_type none issue while using net_put and net_get module (https://github.com/ansible-collections/ansible.netcommon/issues/153) - - Fixed unit tests under python3.5 - - 'ipaddr filter - query "address/prefix" (also: "gateway", "gw", "host/prefix", - "hostnet", and "router") now handles addresses with /32 prefix or /255.255.255.255 - netmask' - - network_cli - Update underlying ssh connection's play_context in update_play_context, - so that the username or password can be updated - minor_changes: - - "'prefix' added to NetworkTemplate class, inorder to handle the negate operation - for vyos config commands." - - Add support for json format input format for netconf modules using ``xmltodict`` - - Update docs for netconf_get and netconf_config examples using display=native + removed_features: + - net_vrf - Use _vrf instead. + - net_vlan - Use _vlans instead. + - net_user - Use _user instead. + - net_system - Use _system instead. + - net_static_route - Use _static_routes instead. + - net_logging - Use _logging_global instead. + - net_lldp_interface - Use _lldp_interfaces instead. + - net_lldp - Use _lldp_global instead. + - net_linkagg - Use _lag_interfaces instead. + - net_l3_interface - Use _l3_interfaces instead. + - net_l2_interface - Use _l2_interfaces instead. + - net_interface - Use _interfaces instead. + - net_banner - Use _banner instead. + - napalm - Removed unused connection plugin. fragments: - - 135-network-cli-change-password.yaml - - 144-test-fixes.yaml - - 151-netconf_rpc_fix.yaml - - 153-part1-fix_ssh_type_none_issue.yaml - - 157-ipaddr-fix.yaml - - 168-libssh-privatekey-support.yaml - - ipaddr-host-prefix-32.yaml - - negate-command-vyos.yaml - - netconf_get_config_doc_updates.yaml - - netconf_xmltodict_support.yaml - release_date: "2020-10-29" - 1.4.1: + - 2H22_removal.yaml + - license.yaml + release_date: "2022-10-13" + 3.1.3: changes: release_summary: - Change how black config is specified to avoid issues with Automation - Hub release process + The v3.1.2 is unavailable on Ansible Automation Hub because + a technical issue. Please download and use v3.1.3 from Automation Hub. fragments: - - revert_pyproject.yaml - release_date: "2020-10-29" - 1.5.0: + - prepare_312.yaml + release_date: "2022-10-04" + 3.1.2: changes: bugfixes: - - Add netconf_config integration tests for nxos (https://github.com/ansible-collections/ansible.netcommon/pull/185) - - Fix GetReply object has no attribute strip() (https://github.com/ansible-collections/cisco.iosxr/issues/97) - - Fix config diff logic if parent configuration is present more than once in - the candidate config and update docs (https://github.com/ansible-collections/ansible.netcommon/pull/189) - - Fix missing changed from net_get (https://github.com/ansible-collections/ansible.netcommon/issues/198) - - Fix netconf_config module integration test issuea (https://github.com/ansible-collections/ansible.netcommon/pull/177) - - Fix restconf_config incorrectly spoofs HTTP 409 codes (https://github.com/ansible-collections/ansible.netcommon/issues/191) - - Split checks for prompt and errors in network_cli so that detected errors - are not lost if the prompt is in a later chunk. - minor_changes: - - Add 'purged' to ACTION_STATES. + - libssh - check for minimum ansible-pylibssh version before using password_prompt + option. (https://github.com/ansible-collections/ansible.netcommon/pull/467) fragments: - - 177_netconf_config_test_issue.yaml - - 189_config_diff_fix.yaml - - 191_restconf_config_fix.yaml - - 198_net_get_missing_changed.yaml - - 97_getReplyobject_has_no_attribute_strip_issue.yaml - - add_purged_action_state.yaml - - error-independently.yaml - - netconf_nxos_tests.yaml - release_date: "2021-01-27" - 2.0.0: + - 2.15-ignores.yaml + - libssh_check.yaml + release_date: "2022-09-30" + 3.1.1: changes: - breaking_changes: - - Removed vendored ipaddress package from collection. If you use ansible_collections.ansible.netcommon.plugins.module_utils.compat.ipaddress - in your collection, you will need to change this to import ipaddress instead. - If your content using ipaddress supports Python 2.7, you will additionally - need to make sure that the user has the ipaddress package installed. Please - refer to https://docs.ansible.com/ansible/latest/dev_guide/developing_modules_best_practices.html#importing-and-using-shared-code - to see how to safely import external packages that may be missing from the - user's system A backport of ipaddress for Python 2.7 is available at https://pypi.org/project/ipaddress/ bugfixes: - - Expose connection class object to rm_template (https://github.com/ansible-collections/ansible.netcommon/pull/180) - - network_cli - When using ssh_type libssh, handle closed connection gracefully - instead of throwing an exception - deprecated_features: - - Deprecate cli_parse module and textfsm, ttp, xml, json parser plugins as they - are moved to ansible.utils collection (https://github.com/ansible-collections/ansible.netcommon/pull/182 - https://github.com/ansible-collections/ansible.utils/pull/28) - major_changes: - - Remove deprecated connection arguments from netconf_config + - libssh - add ssh_args, ssh_common_args, and ssh_extra_args options. These + options are exclusively for collecting proxy information from as an alternative + to the proxy_command option. + - libssh - Removed the wording "Tech preview". From version 3.0.0 the default + if installed. + - Fix to set connection plugin options correctly. + - Fix a small number of potential use-before-assignment issues. + fragments: + - 441-pre-commit.yaml + - 448-set_options.yaml + - 451-libssh-remove-tech-preview.yaml + - 454-legacy_cleanup.yaml + - pylint.yaml + release_date: "2022-09-06" + 3.1.0: + changes: minor_changes: - - Add SCP support when using ssh_type libssh - - Add `single_user_mode` option for command output caching. - - Move cli_config idempotent warning message with the task response under `warnings` - key if `changed` is `True` - - Reduce CPU usage and network module run time when using `ansible_network_import_modules` - - Support any() and all() filters in Jinja2. + - libssh - Added `password_prompt` option to override default "password:" + prompt used by pylibssh + - Adds a new option `terminal_errors` in network_cli, that determines how + terminal setting failures are handled. + - Add grpc connection plugin support. fragments: - - 180_RMbase_engine.yaml - - 182-cli_parse_deprecate.yaml - - 212-update-documentation.yaml - - 213-docs-updates.yaml - - 217-pylibssh-conn-closed.yaml - - 226-libssh-scp.yaml - - 93-remove-ipaddress.yaml - - ansible_network_direct_execution.yaml - - config_module_warning_msg.yaml - - remove-netconf_config-args.yaml - - support_caching.yaml - - support_custom_filters.yaml - - update_requires_ansible.yaml - - yamllint.yaml + - add-grpc-connection-plugin.yaml + - libssh-password-prompt.yaml + - terminal_errors.yaml + modules: + - description: Fetch configuration/state data from gRPC enabled target hosts. + name: grpc_config + namespace: "" + - description: Fetch configuration/state data from gRPC enabled target hosts. + name: grpc_get + namespace: "" plugins: - cache: - - description: RAM backed, non persistent cache. - name: memory - namespace: null - release_date: "2021-03-01" - 2.0.1: + connection: + - description: Provides a persistent connection using the gRPC protocol + name: grpc + namespace: + release_date: "2022-08-02" + 3.0.1: changes: bugfixes: - - Allow setting `host_key_checking` through a play/task var for `network_cli`. - - Ensure passed-in terminal_initial_prompt and terminal_initial_answer values - are cast to bytes before using - - Update valid documentation for net_ping module. - - ncclient - catch and handle exception to prevent stack trace when running - in FIPS mode - - net_put - Remove temp file created when file already exist on destination - when mode is 'text'. - minor_changes: - - Several module_utils files were intended to be licensed BSD, but missing a - license preamble in the files. The preamble has been added, and all authors - for the files have given their assent to the intended license https://github.com/ansible-collections/ansible.netcommon/pull/122 + - restconf - When non-JSON data is encountered, return the bytes found instead + of nothing. + - libssh - Fix for improperly set hostname in connect + - httpapi - Fix for improperly set hostname in url fragments: - - 100-bugfix-net-ping-docs.yaml - - 122-add-license.yaml - - 220-initial-prompt-bytes.yaml - - 227-remove_tests_sanity_requirements.yml - - 231-unit-tests.yaml - - 235-fix-net-put-issue.yaml - - 240-document-libssh-requirement.yaml - - fips-ncclient-import-error.yaml - - new_action_state.yaml - - no_log_fix.yaml - - set_host_key_checking.yaml - release_date: "2021-03-30" - 2.0.2: + - 412-unit-updates.yaml + - 419-prettier.yaml + - 428.yaml + - 432.yaml + - fix-changelog-location.yaml + - import_modules-logging.yaml + - libssh-tests.yaml + - remote_addr.yaml + - restconf-not-json.yaml + - update-pre-commit.yaml + release_date: "2022-05-31" + 3.0.0: + changes: + breaking_changes: + - network_cli - Change default value of ``import_modules`` option from ``no`` + to ``yes`` + - netconf - Change default value of ``import_modules`` option from ``no`` + to ``yes`` + - httpapi - Change default value of ``import_modules`` option from ``no`` + to ``yes`` + known_issues: + - "eos - When using eos modules on Ansible 2.9, tasks will occasionally fail + with ``import_modules`` enabled. This can be avoided by setting ``import_modules: + no``" + major_changes: + - "network_cli - Change default value of `ssh_type` option from `paramiko` + to `auto`. This value will use libssh if the ansible-pylibssh module is + installed, otherwise will fallback to paramiko.\n" + - cli_parse - this module has been moved to the ansible.utils collection. + ``ansible.netcommon.cli_parse`` will continue to work to reference the module + in its new location, but this redirect will be removed in a future release + fragments: + - 364-pre-commit-ci.yaml + - 384-cli_parse-move.yaml + - 387-change-defaults.yaml + - 390-sanity.yaml + - 394-change-defaults.yaml + - pre-commit-add-docs.yaml + - update-linter-config.yaml + release_date: "2022-04-26" + 2.6.1: changes: bugfixes: - - Fix cli_parse issue with parsers in utils collection (https://github.com/ansible-collections/ansible.netcommon/pull/270) - - Support single_user_mode with Ansible 2.9. + - Fix validate-module sanity test. + release_summary: Rereleased 2.6.0 with updated utils dependancy. fragments: - - 254-add_ignore_txt.yml - - cli_parse_fix.yaml - - single_user_mode.yaml - release_date: "2021-04-28" - 2.1.0: + - 2.6.0.yaml + - fix_sanity.yaml + release_date: "2022-03-10" + 2.6.0: changes: bugfixes: - - Variables in play_context will now be updated for netconf connections on each - task run. - - fix SCP/SFTP when using network_cli with libssh + - No activity on the transport's channel was triggering a socket.timeout() + after 30 secs, even if persistent_command_timeout is set to a higher value. + This patch fixes it. + - Fix issue with cli_parse native_parser plugin when input is empty (https://github.com/ansible-collections/ansible.netcommon/issues/347). minor_changes: - - Add support for ProxyCommand with netconf connection. + - Redirected ipaddr filters to ansible.utils (https://github.com/ansible-collections/ansible.netcommon/pull/359). + - httpapi - new parameter retries in send() method limits the number of times + a request is retried when a HTTP error that can be worked around is encountered. + The default is to retry indefinitely to maintain old behavior, but this + default may change in a later breaking release. fragments: - - 259-netconf-play-context.yaml - - drop-base-cache.yaml - - libssh-get-put.yaml - - support_proxycommand_netconf.yaml - release_date: "2021-05-17" - 2.2.0: + - 364-pre-commit-ci.yaml + - add_remove_prompt.yaml + - bugfix_cli_parse_native_parser.yaml + - deprecate_ipaddr_filters.yaml + - httpapi-retries.yaml + - shell_timeout.yaml + release_date: "2022-03-01" + 2.5.1: changes: bugfixes: - - libssh - Fix fromatting of authenticity error message when not prompting for - input (https://github.com/ansible-collections/ansible.netcommon/issues/283) - - netconf - Fix connection with ncclient versions < 0.6.10 - - network_cli - Fix for execution failing when ansible_ssh_password is used - to specify password (https://github.com/ansible-collections/ansible.netcommon/issues/288) - minor_changes: - - Add variable to control ProxyCommand with libssh connection. - - "NetworkTemplate and ResouceModule base classes have been moved under module_utils.network.common.rm_base. - Stubs have been kept for backwards compatibility. These will be removed after - 2023-01-01. Please update imports for existing modules that subclass them. - The `cli_rm_builder `_ - has been updated to use the new imports. - - " + - Fixed plugins inheriting from netcommon's base plugins (for example httpapi/restconf + or netconf/default) so that they can be properly loaded (https://github.com/ansible-collections/ansible.netcommon/issues/356). fragments: - - 257-libssh-proxy-var.yaml - - 288-netcli-password.yaml - - libssh-auth-msg.yaml - - ncclient-sock-arg.yaml - - update_rmbase.yaml - release_date: "2021-06-23" - 2.3.0: + - 358-pluginloader.yaml + - pre-commit.yaml + release_date: "2022-02-09" + 2.5.0: changes: + bugfixes: + - network_cli - fix issue when multiple terminal_initial_(prompt|answer) values + are given (https://github.com/ansible-collections/ansible.netcommon/issues/331). + - network_cli - Provide clearer error message when a prompt regex fails to + compile minor_changes: - - Add vlan_expander filter - - Persistent connection options (persistent_command_timeout, persistent_log_messages, - etc.) have been unified across all persistent connections. New persistent - connections may also now get these options by extending the connection_persistent - documentation fragment. + - "`network_cli` - added new option 'become_errors' to determine how privilege + escalation failures are handled." + - Support removal of non-config lines from running config while taking backup. + - Make ansible_network_os as optional param for httpapi connection plugin. + - Copied the cliconf, httpapi, netconf, and terminal base plugins and NetworkConnectionBase + into netcommon. These base plugins may now be imported from netcommmon instead + of ansible if a collection depends on netcommon versions newer than this + version, allowing features and bugfixes to flow to those collections without + upgrading ansible. fragments: - - 280-vlan_expander.yaml - - 295-connection-tests.yaml - - 308-unify-persistent.yaml - - fix_integration_test_iosxr_7.0.2.yaml - release_date: "2021-07-27" + - 0-copy_ignore_txt.yml + - 334-base-plugins.yaml + - httpapi_make_ansible_network_os_optional_param.yaml + - initial_prompt-bytes-fix.yaml + - non_config.yaml + - on_become_errors.yaml + - prompt-regex.yaml + release_date: "2021-12-07" 2.4.0: changes: bugfixes: - - network_cli - Add ability to set options inherited from paramiko/libssh in - ansible >= 2.11 (https://github.com/ansible-collections/ansible.netcommon/pull/271). + - network_cli - Add ability to set options inherited from paramiko/libssh + in ansible >= 2.11 (https://github.com/ansible-collections/ansible.netcommon/pull/271). deprecated_features: - network_cli - The paramiko_ssh setting ``look_for_keys`` was set automatically - based on the values of the ``password`` and ``private_key_file`` options passed - to network_cli. This option can now be set explicitly, and the automatic setting - of ``look_for_keys`` will be removed after 2024-01-01 (https://github.com/ansible-collections/ansible.netcommon/pull/271). + based on the values of the ``password`` and ``private_key_file`` options + passed to network_cli. This option can now be set explicitly, and the automatic + setting of ``look_for_keys`` will be removed after 2024-01-01 (https://github.com/ansible-collections/ansible.netcommon/pull/271). minor_changes: - - Add network_resource plugin to manage and provide single entry point for all - resource modules for higher oder roles. + - Add network_resource plugin to manage and provide single entry point for + all resource modules for higher oder roles. fragments: - 271-net-cli-options.yaml - 318-netcli-tests.yaml @@ -390,286 +319,369 @@ releases: name: network_resource namespace: "" release_date: "2021-08-27" - 2.5.0: + 2.3.0: changes: - bugfixes: - - network_cli - Provide clearer error message when a prompt regex fails to compile - - network_cli - fix issue when multiple terminal_initial_(prompt|answer) values - are given (https://github.com/ansible-collections/ansible.netcommon/issues/331). minor_changes: - - Copied the cliconf, httpapi, netconf, and terminal base plugins and NetworkConnectionBase - into netcommon. These base plugins may now be imported from netcommmon instead - of ansible if a collection depends on netcommon versions newer than this version, - allowing features and bugfixes to flow to those collections without upgrading - ansible. - - Make ansible_network_os as optional param for httpapi connection plugin. - - Support removal of non-config lines from running config while taking backup. - - "`network_cli` - added new option 'become_errors' to determine how privilege - escalation failures are handled." + - Persistent connection options (persistent_command_timeout, persistent_log_messages, + etc.) have been unified across all persistent connections. New persistent + connections may also now get these options by extending the connection_persistent + documentation fragment. + - Add vlan_expander filter fragments: - - 0-copy_ignore_txt.yml - - 334-base-plugins.yaml - - httpapi_make_ansible_network_os_optional_param.yaml - - initial_prompt-bytes-fix.yaml - - non_config.yaml - - on_become_errors.yaml - - prompt-regex.yaml - release_date: "2021-12-07" - 2.5.1: + - 280-vlan_expander.yaml + - 295-connection-tests.yaml + - 308-unify-persistent.yaml + - fix_integration_test_iosxr_7.0.2.yaml + release_date: "2021-07-27" + 2.2.0: changes: bugfixes: - - Fixed plugins inheriting from netcommon's base plugins (for example httpapi/restconf - or netconf/default) so that they can be properly loaded (https://github.com/ansible-collections/ansible.netcommon/issues/356). - fragments: - - 358-pluginloader.yaml - - pre-commit.yaml - release_date: "2022-02-09" - 2.6.0: - changes: - bugfixes: - - Fix issue with cli_parse native_parser plugin when input is empty (https://github.com/ansible-collections/ansible.netcommon/issues/347). - - No activity on the transport's channel was triggering a socket.timeout() after - 30 secs, even if persistent_command_timeout is set to a higher value. This - patch fixes it. + - network_cli - Fix for execution failing when ansible_ssh_password is used + to specify password (https://github.com/ansible-collections/ansible.netcommon/issues/288) + - netconf - Fix connection with ncclient versions < 0.6.10 + - libssh - Fix fromatting of authenticity error message when not prompting + for input (https://github.com/ansible-collections/ansible.netcommon/issues/283) minor_changes: - - Redirected ipaddr filters to ansible.utils (https://github.com/ansible-collections/ansible.netcommon/pull/359). - - httpapi - new parameter retries in send() method limits the number of times - a request is retried when a HTTP error that can be worked around is encountered. - The default is to retry indefinitely to maintain old behavior, but this default - may change in a later breaking release. + - "NetworkTemplate and ResouceModule base classes have been moved under module_utils.network.common.rm_base. + Stubs have been kept for backwards compatibility. These will be removed + after 2023-01-01. Please update imports for existing modules that subclass + them. The `cli_rm_builder `_ + has been updated to use the new imports.\n" + - Add variable to control ProxyCommand with libssh connection. fragments: - - 364-pre-commit-ci.yaml - - add_remove_prompt.yaml - - bugfix_cli_parse_native_parser.yaml - - deprecate_ipaddr_filters.yaml - - httpapi-retries.yaml - - shell_timeout.yaml - release_date: "2022-03-01" - 2.6.1: + - 257-libssh-proxy-var.yaml + - 288-netcli-password.yaml + - libssh-auth-msg.yaml + - ncclient-sock-arg.yaml + - update_rmbase.yaml + release_date: "2021-06-23" + 2.1.0: changes: bugfixes: - - Fix validate-module sanity test. - release_summary: Rereleased 2.6.0 with updated utils dependancy. - fragments: - - 2.6.0.yaml - - fix_sanity.yaml - release_date: "2022-03-10" - 3.0.0: - changes: - breaking_changes: - - httpapi - Change default value of ``import_modules`` option from ``no`` to - ``yes`` - - netconf - Change default value of ``import_modules`` option from ``no`` to - ``yes`` - - network_cli - Change default value of ``import_modules`` option from ``no`` - to ``yes`` - known_issues: - - "eos - When using eos modules on Ansible 2.9, tasks will occasionally fail - with ``import_modules`` enabled. This can be avoided by setting ``import_modules: - no``" - major_changes: - - cli_parse - this module has been moved to the ansible.utils collection. ``ansible.netcommon.cli_parse`` - will continue to work to reference the module in its new location, but this - redirect will be removed in a future release - - "network_cli - Change default value of `ssh_type` option from `paramiko` to - `auto`. This value will use libssh if the ansible-pylibssh module is installed, - otherwise will fallback to paramiko. - - " + - fix SCP/SFTP when using network_cli with libssh + - Variables in play_context will now be updated for netconf connections on + each task run. + minor_changes: + - Add support for ProxyCommand with netconf connection. fragments: - - 364-pre-commit-ci.yaml - - 384-cli_parse-move.yaml - - 387-change-defaults.yaml - - 390-sanity.yaml - - 394-change-defaults.yaml - - pre-commit-add-docs.yaml - - update-linter-config.yaml - release_date: "2022-04-26" - 3.0.1: + - 259-netconf-play-context.yaml + - drop-base-cache.yaml + - libssh-get-put.yaml + - support_proxycommand_netconf.yaml + release_date: "2021-05-17" + 2.0.2: changes: bugfixes: - - httpapi - Fix for improperly set hostname in url - - libssh - Fix for improperly set hostname in connect - - restconf - When non-JSON data is encountered, return the bytes found instead - of nothing. + - Fix cli_parse issue with parsers in utils collection (https://github.com/ansible-collections/ansible.netcommon/pull/270) + - Support single_user_mode with Ansible 2.9. fragments: - - 412-unit-updates.yaml - - 419-prettier.yaml - - 428.yaml - - 432.yaml - - fix-changelog-location.yaml - - import_modules-logging.yaml - - libssh-tests.yaml - - remote_addr.yaml - - restconf-not-json.yaml - - update-pre-commit.yaml - release_date: "2022-05-31" - 3.1.0: + - 254-add_ignore_txt.yml + - cli_parse_fix.yaml + - single_user_mode.yaml + release_date: "2021-04-28" + 2.0.1: changes: + bugfixes: + - net_put - Remove temp file created when file already exist on destination + when mode is 'text'. + - ncclient - catch and handle exception to prevent stack trace when running + in FIPS mode + - Update valid documentation for net_ping module. + - Ensure passed-in terminal_initial_prompt and terminal_initial_answer values + are cast to bytes before using + - Allow setting `host_key_checking` through a play/task var for `network_cli`. minor_changes: - - Add grpc connection plugin support. - - Adds a new option `terminal_errors` in network_cli, that determines how terminal - setting failures are handled. - - libssh - Added `password_prompt` option to override default "password:" prompt - used by pylibssh + - Several module_utils files were intended to be licensed BSD, but missing + a license preamble in the files. The preamble has been added, and all authors + for the files have given their assent to the intended license https://github.com/ansible-collections/ansible.netcommon/pull/122 fragments: - - add-grpc-connection-plugin.yaml - - libssh-password-prompt.yaml - - terminal_errors.yaml - modules: - - description: Fetch configuration/state data from gRPC enabled target hosts. - name: grpc_config - namespace: "" - - description: Fetch configuration/state data from gRPC enabled target hosts. - name: grpc_get - namespace: "" - plugins: - connection: - - description: Provides a persistent connection using the gRPC protocol - name: grpc - namespace: null - release_date: "2022-08-02" - 3.1.1: + - 100-bugfix-net-ping-docs.yaml + - 122-add-license.yaml + - 220-initial-prompt-bytes.yaml + - 227-remove_tests_sanity_requirements.yml + - 231-unit-tests.yaml + - 235-fix-net-put-issue.yaml + - 240-document-libssh-requirement.yaml + - fips-ncclient-import-error.yaml + - new_action_state.yaml + - no_log_fix.yaml + - set_host_key_checking.yaml + release_date: "2021-03-30" + 2.0.0: changes: + breaking_changes: + - Removed vendored ipaddress package from collection. If you use ansible_collections.ansible.netcommon.plugins.module_utils.compat.ipaddress + in your collection, you will need to change this to import ipaddress instead. + If your content using ipaddress supports Python 2.7, you will additionally + need to make sure that the user has the ipaddress package installed. Please + refer to + https://docs.ansible.com/ansible/latest/dev_guide/developing_modules_best_practices.html#importing-and-using-shared-code + to see how to safely import external packages that may be missing from the + user's system A backport of ipaddress for Python 2.7 is available at https://pypi.org/project/ipaddress/ bugfixes: - - Fix a small number of potential use-before-assignment issues. - - Fix to set connection plugin options correctly. - - libssh - Removed the wording "Tech preview". From version 3.0.0 the default - if installed. - - libssh - add ssh_args, ssh_common_args, and ssh_extra_args options. These - options are exclusively for collecting proxy information from as an alternative - to the proxy_command option. + - Expose connection class object to rm_template (https://github.com/ansible-collections/ansible.netcommon/pull/180) + - network_cli - When using ssh_type libssh, handle closed connection gracefully + instead of throwing an exception + deprecated_features: + - Deprecate cli_parse module and textfsm, ttp, xml, json parser plugins as + they are moved to ansible.utils collection (https://github.com/ansible-collections/ansible.netcommon/pull/182 + https://github.com/ansible-collections/ansible.utils/pull/28) + major_changes: + - Remove deprecated connection arguments from netconf_config + minor_changes: + - Support any() and all() filters in Jinja2. + - Reduce CPU usage and network module run time when using `ansible_network_import_modules` + - Move cli_config idempotent warning message with the task response under + `warnings` key if `changed` is `True` + - Add `single_user_mode` option for command output caching. + - Add SCP support when using ssh_type libssh fragments: - - 441-pre-commit.yaml - - 448-set_options.yaml - - 451-libssh-remove-tech-preview.yaml - - 454-legacy_cleanup.yaml - - pylint.yaml - release_date: "2022-09-06" - 3.1.2: + - 180_RMbase_engine.yaml + - 182-cli_parse_deprecate.yaml + - 212-update-documentation.yaml + - 213-docs-updates.yaml + - 217-pylibssh-conn-closed.yaml + - 226-libssh-scp.yaml + - 93-remove-ipaddress.yaml + - ansible_network_direct_execution.yaml + - config_module_warning_msg.yaml + - remove-netconf_config-args.yaml + - support_caching.yaml + - support_custom_filters.yaml + - update_requires_ansible.yaml + - yamllint.yaml + plugins: + cache: + - description: RAM backed, non persistent cache. + name: memory + namespace: + release_date: "2021-03-01" + 1.5.0: changes: bugfixes: - - libssh - check for minimum ansible-pylibssh version before using password_prompt - option. (https://github.com/ansible-collections/ansible.netcommon/pull/467) + - Fix config diff logic if parent configuration is present more than once + in the candidate config and update docs (https://github.com/ansible-collections/ansible.netcommon/pull/189) + - Add netconf_config integration tests for nxos (https://github.com/ansible-collections/ansible.netcommon/pull/185) + - Fix netconf_config module integration test issuea (https://github.com/ansible-collections/ansible.netcommon/pull/177) + - Split checks for prompt and errors in network_cli so that detected errors + are not lost if the prompt is in a later chunk. + - Fix restconf_config incorrectly spoofs HTTP 409 codes (https://github.com/ansible-collections/ansible.netcommon/issues/191) + - Fix missing changed from net_get (https://github.com/ansible-collections/ansible.netcommon/issues/198) + - Fix GetReply object has no attribute strip() (https://github.com/ansible-collections/cisco.iosxr/issues/97) + minor_changes: + - Add 'purged' to ACTION_STATES. fragments: - - 2.15-ignores.yaml - - libssh_check.yaml - release_date: "2022-09-30" - 3.1.3: + - 177_netconf_config_test_issue.yaml + - 189_config_diff_fix.yaml + - 191_restconf_config_fix.yaml + - 198_net_get_missing_changed.yaml + - 97_getReplyobject_has_no_attribute_strip_issue.yaml + - add_purged_action_state.yaml + - error-independently.yaml + - netconf_nxos_tests.yaml + release_date: "2021-01-27" + 1.4.1: changes: release_summary: - The v3.1.2 is unavailable on Ansible Automation Hub because - a technical issue. Please download and use v3.1.3 from Automation Hub. + Change how black config is specified to avoid issues with Automation + Hub release process fragments: - - prepare_312.yaml - release_date: "2022-10-04" - 4.0.0: + - revert_pyproject.yaml + release_date: "2020-10-29" + 1.4.0: changes: - removed_features: - - napalm - Removed unused connection plugin. - - net_banner - Use _banner instead. - - net_interface - Use _interfaces instead. - - net_l2_interface - Use _l2_interfaces instead. - - net_l3_interface - Use _l3_interfaces instead. - - net_linkagg - Use _lag_interfaces instead. - - net_lldp - Use _lldp_global instead. - - net_lldp_interface - Use _lldp_interfaces instead. - - net_logging - Use _logging_global instead. - - net_static_route - Use _static_routes instead. - - net_system - Use _system instead. - - net_user - Use _user instead. - - net_vlan - Use _vlans instead. - - net_vrf - Use _vrf instead. + bugfixes: + - network_cli - Update underlying ssh connection's play_context in update_play_context, + so that the username or password can be updated + - 'ipaddr filter - query "address/prefix" (also: "gateway", "gw", "host/prefix", + "hostnet", and "router") now handles addresses with /32 prefix or /255.255.255.255 + netmask' + - Fixed unit tests under python3.5 + - Fixed ssh_type none issue while using net_put and net_get module (https://github.com/ansible-collections/ansible.netcommon/issues/153) + - Fixed netconf_rpc task fails due to encoding issue in the response (https://github.com/ansible-collections/ansible.netcommon/issues/151) + - Fixed ipaddr filter plugins in ansible.netcommon collections is not working + with latest Ansible (https://github.com/ansible-collections/ansible.netcommon/issues/157) + - Added support for private key based authentication with libssh transport + (https://github.com/ansible-collections/ansible.netcommon/issues/168) + minor_changes: + - Update docs for netconf_get and netconf_config examples using display=native + - Add support for json format input format for netconf modules using ``xmltodict`` + - "'prefix' added to NetworkTemplate class, inorder to handle the negate operation + for vyos config commands." fragments: - - 2H22_removal.yaml - - license.yaml - release_date: "2022-10-13" - 4.1.0: + - 135-network-cli-change-password.yaml + - 144-test-fixes.yaml + - 151-netconf_rpc_fix.yaml + - 153-part1-fix_ssh_type_none_issue.yaml + - 157-ipaddr-fix.yaml + - 168-libssh-privatekey-support.yaml + - ipaddr-host-prefix-32.yaml + - negate-command-vyos.yaml + - netconf_get_config_doc_updates.yaml + - netconf_xmltodict_support.yaml + release_date: "2020-10-29" + 1.3.0: changes: bugfixes: - - restconf_get - fix direction of XML deserialization when ``output == 'xml'`` + - netconf - Changed log level for message of using default netconf plugin + to match the level used when a platform-specific netconf plugin is found + - cli_parse - Ensure only native types are returned to the control node from + the parser. minor_changes: - - Add implementation for content_templates_parser. + - "cli_config: Clarify when commands is returned when the module is run" + - "cli_config: Add new return value diff which is returned when the cliconf + plugin supports onbox diff" + - The netconf_config module now allows root tag with namespace prefix. + - Confirmed commit fails with TypeError in IOS XR netconf plugin (https://github.com/ansible-collections/cisco.iosxr/issues/74) fragments: - - add_content_template_parser.yaml - - fix_wrong_xml_direction.yaml - release_date: "2022-11-02" - 5.0.0: + - 134-cli-config-diff.yaml + - allow_root_tag_with_prefix.yaml + - cli_parse_fix.yaml + - iosxr_netconf_config_commit_testcase.yaml + - netconf-default.yaml + release_date: "2020-09-29" + 1.2.1: changes: - breaking_changes: - - NetworkConnectionBase now inherits from PersistentConnectionBase in ansible.utils. - As a result, the minimum ansible.utils version has increased to 2.7.0. - - NetworkTemplate is no longer importable from ansible_collections.ansible.netcommon.plugins.module_utils.network.common - and should now be found at its proper location ansible_collections.ansible.netcommon.plugins.module_utils.network.common.rm_base.network_template - - ResourceModule is no longer importable from ansible_collections.ansible.netcommon.plugins.module_utils.network.common - and should now be found at its proper location ansible_collections.ansible.netcommon.plugins.module_utils.network.common.rm_base.resource_module - - VALID_MASKS, is_masklen, is_netmask, to_bits, to_ipv6_network, to_masklen, - to_netmask, and to_subnet are no longer importable from ansible_collections.ansible.netcommon.plugins.module_utils.network.common.utils - and should now be found at their proper location ansible.module_utils.common.network bugfixes: - - Cast AnsibleUnsafeText to str in convert_doc_to_ansible_module_kwargs() to - keep CSafeLoader happy. This fixes issues with content scaffolding tools. - minor_changes: - - httpapi - Add option netcommon_httpapi_ciphers to allow overriding default - SSL/TLS ciphers. (https://github.com/ansible-collections/ansible.netcommon/pull/494) - removed_features: - - cli_parse - This plugin was moved to ansible.utils in version 1.0.0, and the - redirect to that collection has now been removed. + - Fixed "Object of type Capabilities is not JSON serializable" when using + default netconf plugin. fragments: - - 23H1_breaking.yaml - - flake8.yaml - - netcommon_httpapi_ciphers.yaml - - persistentbase.yaml - - telnet.yaml - release_date: "2023-02-27" - 5.1.0: + - netconf-capabilites-fix.yaml + release_date: "2020-09-04" + 1.2.0: changes: bugfixes: - - httpapi - ``send()`` method no longer applied leftover kwargs to ``open_url()``. - Fix applies those arguments as intended (https://github.com/ansible-collections/ansible.netcommon/pull/524). - - network_cli - network cli connection avoids traceback when using invalid user - - network_cli - when receiving longer responses with libssh, parts of the response - were sometimes repeated. The response is now returned as it is received (https://github.com/ansible-collections/community.routeros/issues/132). - - network_resource - fix a potential UnboundLocalError if the module fails to - import a Resource Module. (https://github.com/ansible-collections/ansible.netcommon/pull/513) - - restconf - creation of new resources is no longer erroneously forced to use - POST. (https://github.com/ansible-collections/ansible.netcommon/issues/502) + - sort_list will sort a list of dicts using the sorted method with key as + an argument. + - cli_config fixes issue when rollback_id = 0 evalutes to False minor_changes: - - libssh - add ``config_file`` option to specify an alternate SSH config file - to use. - - parse_cli - add support for multiple matches inside a block by adding new - dictionary key to result - - telnet - add ``stdout`` and ``stdout_lines`` to module output. - - telnet - add support for regexes to ``login_prompt`` and ``password_prompt``. - - telnet - apply ``timeout`` to command prompts. + - The httpapi connection plugin now works with `wait_for_connection`. This + will periodically request the root page of the server described by the plugin's + options until the request succeeds. This can only test that the server is + reachable, the correctness or usability of the API is not guaranteed. + - New cli_parse module for parsing structured text using a variety of parsers. + The initial implemetation of cli_parse can be used with json, native, ntc_templates, + pyats, textfsm, ttp, and xml. + - NetworkConfig objects now have an optional `comment_tokens` parameter which + takes a list of strings which will override the DEFAULT_COMMENT_TOKENS list. + - Added description to collection galaxy.yml file. fragments: - - 530-parse_cli.yaml - - httpapi-kwargs.yaml - - libssh-repeated-text.yaml - - libssh_config_file.yaml - - lint.yaml - - network_cli_bad_user.yaml - - restconf_put.yaml - - telnet-refactoring.yml - - ule-docs.yaml - release_date: "2023-04-03" - 5.1.1: + - 105-wait_for_conn-httpapi.yaml + - 109-cli_parse_module_addition.yaml + - 110-NetworkConfig-comments.yaml + - 114-sort_list_listofdicts.yaml + - 118-cli_config.yaml + - 127-galaxy-fragment.yaml + release_date: "2020-08-25" + 1.1.2: changes: - bugfixes: - - network_resource - do not append network_os to module names when building - supported resources list. This fix is only valid for cases where FACTS_RESOURCE_SUBSETS - is undefined. + release_summary: Rereleased 1.1.1 with updated changelog. fragments: - - resource_manager.yaml - release_date: "2023-05-09" - 5.1.2: + - 1.1.2.yaml + release_date: "2020-08-06" + 1.1.1: + changes: + release_summary: Rereleased 1.1.0 with regenerated documentation. + fragments: + - 1.1.1.yaml + release_date: "2020-07-31" + 1.1.0: changes: bugfixes: - - Ensure that all connection plugin options that should be strings are actually - strings (https://github.com/ansible-collections/ansible.netcommon/pull/549). + - slaac filter now returns str instead of IPAddress object + - nthhost filter now returns str instead of IPAddress object + - net_put - Restore missing function removed when action plugin stopped inheriting + NetworkActionBase + - ipaddr filter now returns empty list instead of False on empty list input + - ipaddr filter - Fixed issue where the first IPv6 address in a subnet was + not being considered a valid address. + - ipaddr - "host" query supports /31 subnets properly + - Replace deprecated `getiterator` call with `iter` + major_changes: + - Add libssh connection plugin and refactor network_cli (https://github.com/ansible-collections/ansible.netcommon/pull/30) + minor_changes: + - "Resource Modules: changed flag is set to true in check_mode for all ACTION_STATES + (https://github.com/ansible-collections/ansible.netcommon/pull/82)" + - Add content option validation for netconf_config module (https://github.com/ansible-collections/ansible.netcommon/pull/66) + - Documentation of module arguments updated to match expected types where + missing. + removed_features: + - module_utils.network.common.utils.ComplexDict has been removed fragments: - - 549-connection-strings.yml - - 550-ansible-lint.yml - - gha_release.yaml - - line-length.yaml - release_date: "2023-07-05" + - 103-net-put-handle-src.yaml + - 30-add-libssh-connection-support.yaml + - 34-ipaddr-empty-list.yaml + - 66-netconf-config-vaildation.yml + - 72-ipv6-first-address-fix.yaml + - 74-remove-getiterator.yaml + - 75-unit-tests.yaml + - 78-sanity-cleanup.yaml + - 82-changed_true_action_states_check_mode_yes.yml + - 95-ipaddr.yaml + release_date: "2020-07-30" + 1.0.0: + modules: + - description: Run a cli command on cli-based network devices + name: cli_command + namespace: "" + - description: Push text based configuration to network devices over network_cli + name: cli_config + namespace: "" + - description: Copy a file from a network device to Ansible Controller + name: net_get + namespace: "" + - description: Tests reachability using ping from a network device + name: net_ping + namespace: "" + - description: Copy a file from Ansible Controller to a network device + name: net_put + namespace: "" + - description: netconf device configuration + name: netconf_config + namespace: "" + - description: Fetch configuration/state data from NETCONF enabled network devices. + name: netconf_get + namespace: "" + - description: Execute operations on NETCONF enabled network devices. + name: netconf_rpc + namespace: "" + - description: + Handles create, update, read and delete of configuration data + on RESTCONF enabled devices. + name: restconf_config + namespace: "" + - description: Fetch configuration/state data from RESTCONF enabled devices. + name: restconf_get + namespace: "" + - description: Executes a low-down and dirty telnet command + name: telnet + namespace: "" + plugins: + become: + - description: Switch to elevated permissions on a network device + name: enable + namespace: + connection: + - description: Use httpapi to run command on network appliances + name: httpapi + namespace: + - description: Provides a persistent connection using the netconf protocol + name: netconf + namespace: + - description: Use network_cli to run command on network appliances + name: network_cli + namespace: + - description: Use a persistent unix socket for connection + name: persistent + namespace: + httpapi: + - description: HttpApi Plugin for devices supporting Restconf API + name: restconf + namespace: + netconf: + - description: + Use default netconf plugin to run standard netconf commands + as per RFC + name: default + namespace: + release_date: "2020-06-23" diff --git a/changelogs/fragments/telnet.yaml b/changelogs/fragments/telnet.yaml deleted file mode 100644 index 4e39966f7..000000000 --- a/changelogs/fragments/telnet.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - telnet - Vendor telnetlib.py from Python to work around its pending removal. diff --git a/galaxy.yml b/galaxy.yml index 932c31c9a..aa409f2ff 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -13,4 +13,4 @@ readme: README.md repository: https://github.com/ansible-collections/ansible.netcommon issues: https://github.com/ansible-collections/ansible.netcommon/issues tags: [networking, security, cloud, network_cli, netconf, httpapi, grpc] -version: 5.1.2 +version: 5.1.3