diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000000..24b9534f50 --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,475 @@ +=============================== +Community General Release Notes +=============================== + +.. contents:: Topics + + +v0.2.0 +====== + +Release Summary +--------------- + +This is the first proper release of the ``community.general`` collection on 2020-06-20. +The changelog describes all changes made to the modules and plugins included in this +collection since Ansible 2.9.0. + + +Major Changes +------------- + +- docker_container - the ``network_mode`` option will be set by default to the name of the first network in ``networks`` if at least one network is given and ``networks_cli_compatible`` is ``true`` (will be default from community.general 2.0.0 on). Set to an explicit value to avoid deprecation warnings if you specify networks and set ``networks_cli_compatible`` to ``true``. The current default (not specifying it) is equivalent to the value ``default``. +- docker_container - the module has a new option, ``container_default_behavior``, whose default value will change from ``compatibility`` to ``no_defaults``. Set to an explicit value to avoid deprecation warnings. +- gitlab_user - no longer requires ``name``, ``email`` and ``password`` arguments when ``state=absent``. +- zabbix_action - no longer requires ``esc_period`` and ``event_source`` arguments when ``state=absent``. + +Minor Changes +------------- + +- A new filter ``to_time_unit`` with specializations ``to_milliseconds``, ``to_seconds``, ``to_minutes``, ``to_hours``, ``to_days``, ``to_weeks``, ``to_months`` and ``to_years`` has been added. For example ``'2d 4h' | community.general.to_hours`` evaluates to 52. +- Add a make option to the make module to be able to choose a specific make executable +- Add information about changed packages in homebrew returned facts (https://github.com/ansible/ansible/issues/59376). +- Follow up changes in homebrew_cask (https://github.com/ansible/ansible/issues/34696). +- Moved OpenStack dynamic inventory script to Openstack Collection. +- Remove redundant encoding in json.load call in ipa module_utils (https://github.com/ansible/ansible/issues/66592). +- Updated documentation about netstat command requirement for listen_ports_facts module (https://github.com/ansible/ansible/issues/68077). +- airbrake_deployment - Allow passing ``project_id`` and ``project_key`` for v4 api deploy compatibility +- ali_instance - Add params ``unique_suffix``, ``tags``, ``purge_tags``, ``ram_role_name``, ``spot_price_limit``, ``spot_strategy``, ``period_unit``, ``dry_run``, ``include_data_disks`` +- ali_instance and ali_instance_info - the required package footmark needs a version higher than 1.19.0 +- ali_instance_info - Add params ``name_prefix``, ``filters`` +- alicloud modules - Add authentication params to all modules +- alicloud modules - now only support Python 3.6, not support Python 2.x +- cisco_spark - the module has been renamed to ``cisco_webex`` (https://github.com/ansible-collections/community.general/pull/457). +- cloudflare_dns - Report unexpected failure with more detail (https://github.com/ansible-collections/community.general/pull/511). +- database - add support to unique indexes in postgresql_idx +- digital_ocean_droplet - add support for new vpc_uuid parameter +- docker connection plugin - run Powershell modules on Windows containers. +- docker_container - add ``cpus`` option (https://github.com/ansible/ansible/issues/34320). +- docker_container - add new ``container_default_behavior`` option (PR https://github.com/ansible/ansible/pull/63419). +- docker_container - allow to configure timeout when the module waits for a container's removal. +- docker_container - only passes anonymous volumes to docker daemon as ``Volumes``. This increases compatibility with the ``docker`` CLI program. Note that if you specify ``volumes: strict`` in ``comparisons``, this could cause existing containers created with docker_container from Ansible 2.9 or earlier to restart. +- docker_container - support for port ranges was adjusted to be more compatible to the ``docker`` command line utility: a one-port container range combined with a multiple-port host range will no longer result in only the first host port be used, but the whole range being passed to Docker so that a free port in that range will be used. +- docker_container.py - update a containers restart_policy without restarting the container (https://github.com/ansible/ansible/issues/65993) +- docker_stack - Added ``stdout``, ``stderr``, and ``rc`` to return values. +- docker_swarm_service - Added support for ``init`` option. +- docker_swarm_service - Sort lists when checking for changes. +- firewalld - new feature, can now set ``target`` for a ``zone`` (https://github.com/ansible-collections/community.general/pull/526). +- flatpak and flatpak_remote - use ``module.run_command()`` instead of ``subprocess.Popen()``. +- gitlab_project_variable - implement masked and protected attributes +- gitlab_project_variable - implemented variable_type attribute. +- hashi_vault - AWS IAM auth method added. Accepts standard ansible AWS params and only loads AWS libraries when needed. +- hashi_vault - INI and additional ENV sources made available for some new and old options. +- hashi_vault - ``secret`` can now be an unnamed argument if it's specified first in the term string (see examples). +- hashi_vault - ``token`` is now an explicit option (and the default) in the choices for ``auth_method``. This matches previous behavior (``auth_method`` omitted resulted in token auth) but makes the value clearer and allows it to be explicitly specified. +- hashi_vault - new option ``return_format`` added to control how secrets are returned, including options for multiple secrets and returning raw values with metadata. +- hashi_vault - previous (undocumented) behavior was to attempt to read token from ``~/.vault-token`` if not specified. This is now controlled through ``token_path`` and ``token_file`` options (defaults will mimic previous behavior). +- hashi_vault - previously all options had to be supplied via key=value pairs in the term string; now a mix of string and parameters can be specified (see examples). +- hashi_vault - uses newer authentication calls in the HVAC library and falls back to older ones with deprecation warnings. +- homebrew - Added environment variable to honor update_homebrew setting (https://github.com/ansible/ansible/issues/56650). +- homebrew - New option ``upgrade_options`` allows to pass flags to upgrade +- homebrew - ``install_options`` is now validated to be a list of strings. +- homebrew_tap - ``name`` is now validated to be a list of strings. +- idrac_redfish_config - Support for multiple manager attributes configuration +- java_keystore - add the private_key_passphrase parameter (https://github.com/ansible-collections/community.general/pull/276). +- jira - added search function with support for Jira JQL (https://github.com/ansible-collections/community.general/pull/22). +- jira - added update function which can update Jira Selects etc (https://github.com/ansible-collections/community.general/pull/22). +- lvg - add ``pvresize`` new parameter (https://github.com/ansible/ansible/issues/29139). +- mysql_db - add ``master_data`` parameter (https://github.com/ansible/ansible/pull/66048). +- mysql_db - add ``skip_lock_tables`` option (https://github.com/ansible/ansible/pull/66688). +- mysql_db - add the ``check_implicit_admin`` parameter (https://github.com/ansible/ansible/issues/24418). +- mysql_db - add the ``config_overrides_defaults`` parameter (https://github.com/ansible/ansible/issues/26919). +- mysql_db - add the ``dump_extra_args`` parameter (https://github.com/ansible/ansible/pull/67747). +- mysql_db - add the ``executed_commands`` returned value (https://github.com/ansible/ansible/pull/65498). +- mysql_db - add the ``force`` parameter (https://github.com/ansible/ansible/pull/65547). +- mysql_db - add the ``restrict_config_file`` parameter (https://github.com/ansible/ansible/issues/34488). +- mysql_db - add the ``unsafe_login_password`` parameter (https://github.com/ansible/ansible/issues/63955). +- mysql_db - add the ``use_shell`` parameter (https://github.com/ansible/ansible/issues/20196). +- mysql_info - add ``exclude_fields`` parameter (https://github.com/ansible/ansible/issues/63319). +- mysql_info - add ``global_status`` filter parameter option and return (https://github.com/ansible/ansible/pull/63189). +- mysql_info - add ``return_empty_dbs`` parameter to list empty databases (https://github.com/ansible/ansible/issues/65727). +- mysql_replication - add ``channel`` parameter (https://github.com/ansible/ansible/issues/29311). +- mysql_replication - add ``connection_name`` parameter (https://github.com/ansible/ansible/issues/46243). +- mysql_replication - add ``fail_on_error`` parameter (https://github.com/ansible/ansible/pull/66252). +- mysql_replication - add ``master_delay`` parameter (https://github.com/ansible/ansible/issues/51326). +- mysql_replication - add ``master_use_gtid`` parameter (https://github.com/ansible/ansible/pull/62648). +- mysql_replication - add ``queries`` return value (https://github.com/ansible/ansible/pull/63036). +- mysql_replication - add support of ``resetmaster`` choice to ``mode`` parameter (https://github.com/ansible/ansible/issues/42870). +- mysql_user - ``priv`` parameter can be string or dictionary (https://github.com/ansible/ansible/issues/57533). +- mysql_user - add ``plugin_auth_string`` parameter (https://github.com/ansible/ansible/pull/44267). +- mysql_user - add ``plugin_hash_string`` parameter (https://github.com/ansible/ansible/pull/44267). +- mysql_user - add ``plugin`` parameter (https://github.com/ansible/ansible/pull/44267). +- mysql_user - add the resource_limits parameter (https://github.com/ansible-collections/community.general/issues/133). +- mysql_variables - add ``mode`` parameter (https://github.com/ansible/ansible/issues/60119). +- nagios module - a start parameter has been added, allowing the time a Nagios outage starts to be set. It defaults to the current time if not provided, preserving the previous behavior and ensuring compatibility with existing playbooks. +- nsupdate - Use provided TSIG key to not only sign update queries but also lookup queries +- open_iscsi - allow ``portal`` parameter to be a domain name by resolving the portal ip address beforehand (https://github.com/ansible-collections/community.general/pull/461). +- packet_device - add ``tags`` parameter on device creation (https://github.com/ansible-collections/community.general/pull/418) +- pacman - Improve package state detection speed: Don't query for full details of a package. +- parted - add the ``fs_type`` parameter (https://github.com/ansible-collections/community.general/issues/135). +- pear - added ``prompts`` parameter to allow users to specify expected prompt that could hang Ansible execution (https://github.com/ansible-collections/community.general/pull/530). +- postgresql_copy - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/313). +- postgresql_db - add ``dump_extra_args`` parameter (https://github.com/ansible/ansible/pull/66717). +- postgresql_db - add support for .pgc file format for dump and restores. +- postgresql_db - add the ``executed_commands`` returned value (https://github.com/ansible/ansible/pull/65542). +- postgresql_db - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/issues/106). +- postgresql_ext - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/282). +- postgresql_ext - refactor to simplify and remove dead code (https://github.com/ansible-collections/community.general/pull/291) +- postgresql_ext - use query parameters with cursor object (https://github.com/ansible/ansible/pull/64994). +- postgresql_idx - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/264). +- postgresql_idx - refactor to simplify code (https://github.com/ansible-collections/community.general/pull/291) +- postgresql_info - add collecting info about logical replication publications in databases (https://github.com/ansible/ansible/pull/67614). +- postgresql_info - add collection info about replication subscriptions (https://github.com/ansible/ansible/pull/67464). +- postgresql_info - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/308). +- postgresql_lang - add ``owner`` parameter (https://github.com/ansible/ansible/pull/62999). +- postgresql_lang - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/272). +- postgresql_membership - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/158). +- postgresql_owner - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/198). +- postgresql_ping - add the ``session_role`` parameter (https://github.com/ansible-collections/community.general/pull/312). +- postgresql_ping - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/312). +- postgresql_privs - add support for TYPE as object types in postgresql_privs module (https://github.com/ansible/ansible/issues/62432). +- postgresql_privs - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/177). +- postgresql_publication - add the ``session_role`` parameter (https://github.com/ansible-collections/community.general/pull/279). +- postgresql_publication - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/279). +- postgresql_query - add the ``encoding`` parameter (https://github.com/ansible/ansible/issues/65367). +- postgresql_query - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/294). +- postgresql_schema - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/259). +- postgresql_sequence - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/295). +- postgresql_set - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/302). +- postgresql_slot - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/298). +- postgresql_subscription - add the ``session_role`` parameter (https://github.com/ansible-collections/community.general/pull/280). +- postgresql_subscription - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/280). +- postgresql_table - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/307). +- postgresql_tablespace - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/240). +- postgresql_user - add scram-sha-256 support (https://github.com/ansible/ansible/issues/49878). +- postgresql_user - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/116). +- postgresql_user - add the comment parameter (https://github.com/ansible/ansible/pull/66711). +- postgresql_user_obj_stat_info - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/310). +- postgresql_user_obj_stat_info - refactor to simplify code (https://github.com/ansible-collections/community.general/pull/291) +- proxmox - add the ``description`` and ``hookscript`` parameter (https://github.com/ansible-collections/community.general/pull/245). +- redfish_command - Support for virtual media insert and eject commands (https://github.com/ansible-collections/community.general/issues/493) +- redfish_config - New ``bios_attributes`` option to allow setting multiple BIOS attributes in one command. +- redfish_config, redfish_command - Add ``resource_id`` option to specify which System, Manager, or Chassis resource to modify. +- redis - add TLS support to redis cache plugin (https://github.com/ansible-collections/community.general/pull/410). +- rhn_channel - Added ``validate_certs`` option (https://github.com/ansible/ansible/issues/68374). +- rundeck modules - added new options ``client_cert``, ``client_key``, ``force``, ``force_basic_auth``, ``http_agent``, ``url_password``, ``url_username``, ``use_proxy``, ``validate_certs`` to allow changing fetch_url parameters. +- slack - Add support for user/bot/application tokens (using Slack WebAPI) +- slack - Return ``thread_id`` with thread timestamp when user/bot/application tokens are used +- syslogger - added new parameter ident to specify the name of application which is sending the message to syslog (https://github.com/ansible-collections/community.general/issues/319). +- terraform - Adds option ``backend_config_files``. This can accept a list of paths to multiple configuration files (https://github.com/ansible-collections/community.general/pull/394). +- terraform - Adds option ``variables_files`` for multiple var-files (https://github.com/ansible-collections/community.general/issues/224). +- ufw - accept ``interface_in`` and ``interface_out`` as parameters. +- zabbix_action - allow str values for ``esc_period`` options (https://github.com/ansible/ansible/pull/66841). +- zabbix_host - now supports configuring user macros and host tags on the managed host (see https://github.com/ansible/ansible/pull/66777) +- zabbix_host_info - ``host_name`` based search results now include host groups. +- zabbix_hostmacro - ``macro_name`` now accepts macros in zabbix native format as well (e.g. ``{$MACRO}``) +- zabbix_hostmacro - ``macro_value`` is no longer required when ``state=absent`` +- zabbix_proxy - ``interface`` sub-options ``type`` and ``main`` are now deprecated and will be removed in community.general 3.0.0. Also, the values passed to ``interface`` are now checked for correct types and unexpected keys. +- zabbix_proxy - added option proxy_address for comma-delimited list of IP/CIDR addresses or DNS names to accept active proxy requests from +- zabbix_template - add new option omit_date to remove date from exported/dumped template (https://github.com/ansible/ansible/pull/67302) +- zabbix_template - adding new update rule templateLinkage.deleteMissing for newer zabbix versions (https://github.com/ansible/ansible/pull/66747). +- zabbix_template_info - add new option omit_date to remove date from exported/dumped template (https://github.com/ansible/ansible/pull/67302) +- zypper - Added ``allow_vendor_change`` and ``replacefiles`` zypper options (https://github.com/ansible-collections/community.general/issues/381) + +Breaking Changes / Porting Guide +-------------------------------- + +- The environment variable for the auth context for the oc.py connection plugin has been corrected (K8S_CONTEXT). It was using an initial lowercase k by mistake. (https://github.com/ansible-collections/community.general/pull/377). +- bigpanda - the parameter ``message`` was renamed to ``deployment_message`` since ``message`` is used by Ansible Core engine internally. +- cisco_spark - the module option ``message`` was renamed to ``msg``, as ``message`` is used internally in Ansible Core engine (https://github.com/ansible/ansible/issues/39295) +- datadog - the parameter ``message`` was renamed to ``notification_message`` since ``message`` is used by Ansible Core engine internally. +- docker_container - no longer passes information on non-anonymous volumes or binds as ``Volumes`` to the Docker daemon. This increases compatibility with the ``docker`` CLI program. Note that if you specify ``volumes: strict`` in ``comparisons``, this could cause existing containers created with docker_container from Ansible 2.9 or earlier to restart. +- docker_container - support for port ranges was adjusted to be more compatible to the ``docker`` command line utility: a one-port container range combined with a multiple-port host range will no longer result in only the first host port be used, but the whole range being passed to Docker so that a free port in that range will be used. +- hashi_vault lookup - now returns the latest version when using the KV v2 secrets engine. Previously, it returned all versions of the secret which required additional steps to extract and filter the desired version. + +Deprecated Features +------------------- + +- airbrake_deployment - Add deprecation notice for ``token`` parameter and v2 api deploys. This feature will be removed in community.general 3.0.0. +- clc_aa_policy - The ``wait`` option had no effect and will be removed in community.general 3.0.0. +- clc_aa_policy - the ``wait`` parameter will be removed. It has always been ignored by the module. +- docker_container - the ``trust_image_content`` option is now deprecated and will be removed in community.general 3.0.0. It has never been used by the module. +- docker_container - the ``trust_image_content`` option will be removed. It has always been ignored by the module. +- docker_container - the default of ``container_default_behavior`` will change from ``compatibility`` to ``no_defaults`` in community.general 3.0.0. Set the option to an explicit value to avoid a deprecation warning. +- docker_container - the default value for ``network_mode`` will change in community.general 3.0.0, provided at least one network is specified and ``networks_cli_compatible`` is ``true``. See porting guide, module documentation or deprecation warning for more details. +- docker_stack - Return values ``out`` and ``err`` have been deprecated and will be removed in community.general 3.0.0. Use ``stdout`` and ``stderr`` instead. +- docker_stack - the return values ``err`` and ``out`` have been deprecated. Use ``stdout`` and ``stderr`` from now on instead. +- helm - Put ``helm`` module to deprecated. New implementation is available in community.kubernetes collection. +- redfish_config - Deprecate ``bios_attribute_name`` and ``bios_attribute_value`` in favor of new `bios_attributes`` option. +- redfish_config - the ``bios_attribute_name`` and ``bios_attribute_value`` options will be removed. To maintain the existing behavior use the ``bios_attributes`` option instead. +- redfish_config and redfish_command - the behavior to select the first System, Manager, or Chassis resource to modify when multiple are present will be removed. Use the new ``resource_id`` option to specify target resource to modify. +- redfish_config, redfish_command - Behavior to modify the first System, Mananger, or Chassis resource when multiple are present is deprecated. Use the new ``resource_id`` option to specify target resource to modify. +- zabbix_proxy - deprecates ``interface`` sub-options ``type`` and ``main`` when proxy type is set to passive via ``status=passive``. Make sure these suboptions are removed from your playbook as they were never supported by Zabbix in the first place. + +Removed Features (previously deprecated) +---------------------------------------- + +- core - remove support for ``check_invalid_arguments`` in ``UTMModule``. +- pacman - Removed deprecated ``recurse`` option, use ``extra_args=--recursive`` instead + +Security Fixes +-------------- + +- **SECURITY** - CVE-2019-14904 - solaris_zone module accepts zone name and performs actions related to that. However, there is no user input validation done while performing actions. A malicious user could provide a crafted zone name which allows executing commands into the server manipulating the module behaviour. Adding user input validation as per Solaris Zone documentation fixes this issue. +- **security issue** - Ansible: Splunk and Sumologic callback plugins leak sensitive data in logs (CVE-2019-14864) +- ldap_attr, ldap_entry - The ``params`` option has been removed in Ansible-2.10 as it circumvents Ansible's option handling. Setting ``bind_pw`` with the ``params`` option was disallowed in Ansible-2.7, 2.8, and 2.9 as it was insecure. For information about this policy, see the discussion at: https://meetbot.fedoraproject.org/ansible-meeting/2017-09-28/ansible_dev_meeting.2017-09-28-15.00.log.html This fixes CVE-2020-1746 + +Bugfixes +-------- + +- Convert MD5SUM to lowercase before comparison in maven_artifact module (https://github.com/ansible-collections/community.general/issues/186). +- Fix GitLab modules authentication by handling `python-gitlab` library version >= 1.13.0 (https://github.com/ansible/ansible/issues/64770) +- Fix SSL protocol references in the ``mqtt`` module to prevent failures on Python 2.6. +- Fix the ``xml`` module to use ``list(elem)`` instead of ``elem.getchildren()`` since it is being removed in Python 3.9 +- Fix to return XML as a string even for python3 (https://github.com/ansible/ansible/pull/64032). +- Fixes the url handling in lxd_container module that url cannot be specified in lxd environment created by snap. +- Fixes the url handling in lxd_profile module that url cannot be specified in lxd environment created by snap. +- Redact GitLab Project variables which might include sensetive information such as password, api_keys and other project related details. +- Run command in absent state in atomic_image module. +- While deleting gitlab user, name, email and password is no longer required ini gitlab_user module (https://github.com/ansible/ansible/issues/61921). +- airbrake_deployment - Allow deploy notifications for Airbrake compatible v2 api (e.g. Errbit) +- apt_rpm - fix ``package`` type from ``str`` to ``list`` to fix invoking with list of packages (https://github.com/ansible-collections/community.general/issues/143). +- archive - make module compatible with older Ansible versions (https://github.com/ansible-collections/community.general/pull/306). +- become - Fix various plugins that still used play_context to get the become password instead of through the plugin - https://github.com/ansible/ansible/issues/62367 +- cloudflare_dns - fix KeyError 'success' (https://github.com/ansible-collections/community.general/issues/236). +- cronvar - only run ``get_bin_path()`` once +- cronvar - use correct binary name (https://github.com/ansible/ansible/issues/63274) +- cronvar - use get_bin_path utility to locate the default crontab executable instead of the hardcoded /usr/bin/crontab. (https://github.com/ansible/ansible/pull/59765) +- cyberarkpassword - fix invalid attribute access (https://github.com/ansible/ansible/issues/66268) +- datadog_monitor - Corrects ``_update_monitor`` to use ``notification_message`` insteade of deprecated ``message`` (https://github.com/ansible-collections/community.general/pull/389). +- datadog_monitor - added missing ``log alert`` type to ``type`` choices (https://github.com/ansible-collections/community.general/issues/251). +- dense callback - fix plugin access to its configuration variables and remove a warning message (https://github.com/ansible/ansible/issues/64628). +- digital_ocean_droplet - Fix creation of DigitalOcean droplets using digital_ocean_droplet module (https://github.com/ansible/ansible/pull/61655) +- docker connection plugin - do not prefix remote path if running on Windows containers. +- docker_compose - fix issue where docker deprecation warning results in ansible erroneously reporting a failure +- docker_container - fix idempotency for IP addresses for networks. The old implementation checked the effective IP addresses assigned by the Docker daemon, and not the specified ones. This causes idempotency issues for containers which are not running, since they have no effective IP addresses assigned. +- docker_container - fix network idempotence comparison error. +- docker_container - improve error behavior when parsing port ranges fails. +- docker_container - make sure that when image is missing, check mode indicates a change (image will be pulled). +- docker_container - passing ``test: [NONE]`` now actually disables the image's healthcheck, as documented. +- docker_container - wait for removal of container if docker API returns early (https://github.com/ansible/ansible/issues/65811). +- docker_image - fix validation of build options. +- docker_image - improve file handling when loading images from disk. +- docker_image - make sure that deprecated options also emit proper deprecation warnings next to warnings which indicate how to replace them. +- docker_login - Use ``with`` statement when accessing files, to prevent that invalid JSON output is produced. +- docker_login - correct broken fix for https://github.com/ansible/ansible/pull/60381 which crashes for Python 3. +- docker_login - fix error handling when ``username`` or ``password`` is not specified when ``state`` is ``present``. +- docker_login - make sure that ``~/.docker/config.json`` is created with permissions ``0600``. +- docker_machine - fallback to ip subcommand output if IPAddress is missing (https://github.com/ansible-collections/community.general/issues/412). +- docker_network - fix idempotence comparison error. +- docker_network - fix idempotency for multiple IPAM configs of the same IP version (https://github.com/ansible/ansible/issues/65815). +- docker_network - validate IPAM config subnet CIDR notation on module setup and not during idempotence checking. +- docker_node_info - improve error handling when service inspection fails, for example because node name being ambiguous (https://github.com/ansible/ansible/issues/63353, PR https://github.com/ansible/ansible/pull/63418). +- docker_swarm_service - ``source`` must no longer be specified for ``tmpfs`` mounts. +- docker_swarm_service - fix task always reporting as changed when using ``healthcheck.start_period``. +- docker_swarm_service - passing ``test: [NONE]`` now actually disables the image's healthcheck, as documented. +- firewalld - enable the firewalld module to function offline with firewalld version 0.7.0 and newer (https://github.com/ansible/ansible/issues/63254) +- flatpak and flatpak_remote - fix command line construction to build commands as lists instead of strings. +- gcp_storage_file lookup - die gracefully when the ``google.cloud`` collection is not installed, or changed in an incompatible way. +- github_deploy_key - added support for pagination +- gitlab_user - Fix adding ssh key to new/changed user and adding group membership for new/changed user +- hashi_vault - Fix KV v2 lookup to always return latest version +- hashi_vault - Handle equal sign in key=value (https://github.com/ansible/ansible/issues/55658). +- hashi_vault - error messages are now user friendly and don't contain the secret name ( https://github.com/ansible-collections/community.general/issues/54 ) +- hashi_vault - if used via ``with_hashi_vault`` and a list of n secrets to retrieve, only the first one would be retrieved and returned n times. +- hashi_vault - when a non-token authentication method like ldap or userpass failed, but a valid token was loaded anyway (via env or token file), the token was used to attempt authentication, hiding the failure of the requested auth method. +- homebrew - fix Homebrew module's some functions ignored check_mode option (https://github.com/ansible/ansible/pull/65387). +- influxdb_user - Don't grant admin privilege in check mode +- ipa modules - fix error when IPA_HOST is empty and fallback on DNS (https://github.com/ansible-collections/community.general/pull/241) +- java_keystore - make module compatible with older Ansible versions (https://github.com/ansible-collections/community.general/pull/306). +- jira - printing full error message from jira server (https://github.com/ansible-collections/community.general/pull/22). +- jira - transition issue not working (https://github.com/ansible-collections/community.general/issues/109). +- linode inventory plugin - fix parsing of access_token (https://github.com/ansible/ansible/issues/66874) +- manageiq_provider - fix serialization error when running on python3 environment. +- maven_artifact - make module compatible with older Ansible versions (https://github.com/ansible-collections/community.general/pull/306). +- mysql - dont mask ``mysql_connect`` function errors from modules (https://github.com/ansible/ansible/issues/64560). +- mysql_db - fix Broken pipe error appearance when state is import and the target file is compressed (https://github.com/ansible/ansible/issues/20196). +- mysql_db - fix bug in the ``db_import`` function introduced by https://github.com/ansible/ansible/pull/56721 (https://github.com/ansible/ansible/issues/65351). +- mysql_info - add parameter for __collect to get only what are wanted (https://github.com/ansible-collections/community.general/pull/136). +- mysql_replication - allow to pass empty values to parameters (https://github.com/ansible/ansible/issues/23976). +- mysql_user - Fix idempotence when long grant lists are used (https://github.com/ansible/ansible/issues/68044) +- mysql_user - Remove false positive ``no_log`` warning for ``update_password`` option +- mysql_user - add ``INVOKE LAMBDA`` privilege support (https://github.com/ansible-collections/community.general/issues/283). +- mysql_user - fix ``host_all`` arguments conversion string formatting error (https://github.com/ansible/ansible/issues/29644). +- mysql_user - fix support privileges with underscore (https://github.com/ansible/ansible/issues/66974). +- mysql_user - fix the error No database selected (https://github.com/ansible/ansible/issues/68070). +- mysql_user - make sure current_pass_hash is a string before using it in comparison (https://github.com/ansible/ansible/issues/60567). +- mysql_variable - fix the module doesn't support variables name with dot (https://github.com/ansible/ansible/issues/54239). +- nmcli - typecast parameters to string as required (https://github.com/ansible/ansible/issues/59095). +- nsupdate - Do not try fixing non-existing TXT values (https://github.com/ansible/ansible/issues/63364) +- nsupdate - Fix zone name lookup of internal/private zones (https://github.com/ansible/ansible/issues/62052) +- one_vm - improve file handling by using a context manager. +- ovirt - don't ignore ``instance_cpus`` parameter +- pacman - Fix pacman output parsing on localized environment. (https://github.com/ansible/ansible/issues/65237) +- pacman - fix module crash with ``IndexError: list index out of range`` (https://github.com/ansible/ansible/issues/63077) +- pamd - Bugfix for attribute error when removing the first or last line +- parted - added 'undefined' align option to support parted versions < 2.1 (https://github.com/ansible-collections/community.general/pull/405). +- parted - consider current partition state even in check mode (https://github.com/ansible-collections/community.general/issues/183). +- passwordstore lookup - Honor equal sign in userpass +- pmrun plugin - The success_command string was no longer quoted. This caused unusual use-cases like ``become_flags=su - root -c`` to fail. +- postgres - use query params with cursor.execute in module_utils.postgres.PgMembership class (https://github.com/ansible/ansible/pull/65164). +- postgres.py - add a new keyword argument ``query_params`` (https://github.com/ansible/ansible/pull/64661). +- postgres_user - Remove false positive ``no_log`` warning for ``no_password_changes`` option +- postgresql_db - Removed exception for 'LibraryError' (https://github.com/ansible/ansible/issues/65223). +- postgresql_db - allow to pass users names which contain dots (https://github.com/ansible/ansible/issues/63204). +- postgresql_idx.py - use the ``query_params`` arg of exec_sql function (https://github.com/ansible/ansible/pull/64661). +- postgresql_lang - use query params with cursor.execute (https://github.com/ansible/ansible/pull/65093). +- postgresql_membership - make the ``groups`` and ``target_roles`` parameters required (https://github.com/ansible/ansible/pull/67046). +- postgresql_membership - remove unused import of exec_sql function (https://github.com/ansible-collections/community.general/pull/178). +- postgresql_owner - use query_params with cursor object (https://github.com/ansible/ansible/pull/65310). +- postgresql_privs - fix sorting lists with None elements for python3 (https://github.com/ansible/ansible/issues/65761). +- postgresql_privs - sort results before comparing so that the values are compared and not the result of ``.sort()`` (https://github.com/ansible/ansible/pull/65125) +- postgresql_privs.py - fix reports as changed behavior of module when using ``type=default_privs`` (https://github.com/ansible/ansible/issues/64371). +- postgresql_publication - fix typo in module.warn method name (https://github.com/ansible/ansible/issues/64582). +- postgresql_publication - use query params arg with cursor object (https://github.com/ansible/ansible/issues/65404). +- postgresql_query - improve file handling by using a context manager. +- postgresql_query - the module doesn't support non-ASCII characters in SQL files with Python3 (https://github.com/ansible/ansible/issues/65367). +- postgresql_schema - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65679). +- postgresql_sequence - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65787). +- postgresql_set - fix converting value to uppercase (https://github.com/ansible/ansible/issues/67377). +- postgresql_set - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65791). +- postgresql_slot - make the ``name`` parameter required (https://github.com/ansible/ansible/pull/67046). +- postgresql_slot - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65791). +- postgresql_subscription - fix typo in module.warn method name (https://github.com/ansible/ansible/pull/64583). +- postgresql_subscription - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65791). +- postgresql_table - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65862). +- postgresql_tablespace - make the ``tablespace`` parameter required (https://github.com/ansible/ansible/pull/67046). +- postgresql_tablespace - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65862). +- postgresql_user - allow to pass user name which contains dots (https://github.com/ansible/ansible/issues/63204). +- postgresql_user - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65862). +- proxmox - fix version detection of proxmox 6 and up (Fixes https://github.com/ansible/ansible/issues/59164) +- proxysql - fixed mysql dictcursor +- pulp_repo - the ``client_cert`` and ``client_key`` options were used for both requests to the Pulp instance and for the repo to sync with, resulting in errors when they were used. Use the new options ``feed_client_cert`` and ``feed_client_key`` for client certificates that should only be used for repo synchronisation, and not for communication with the Pulp instance. (https://github.com/ansible/ansible/issues/59513) +- puppet - fix command line construction for check mode and ``manifest:`` +- pure - fix incorrect user_string setting in module_utils file (https://github.com/ansible/ansible/pull/66914) +- redfish_command - fix EnableAccount if Enabled property is not present in Account resource (https://github.com/ansible/ansible/issues/59822) +- redfish_command - fix error when deleting a disabled Redfish account (https://github.com/ansible/ansible/issues/64684) +- redfish_command - fix power ResetType mapping logic (https://github.com/ansible/ansible/issues/59804) +- redfish_config - fix support for boolean bios attrs (https://github.com/ansible/ansible/pull/68251) +- redfish_facts - fix KeyError exceptions in GetLogs (https://github.com/ansible/ansible/issues/59797) +- redhat_subscription - do not set the default quantity to ``1`` when no quantity is provided (https://github.com/ansible/ansible/issues/66478) +- replace use of deprecated functions from ``ansible.module_utils.basic``. +- rshm_repository - reduce execution time when changed is False (https://github.com/ansible-collections/community.general/pull/458). +- runas - Fix the ``runas`` ``become_pass`` variable fallback from ``ansible_runas_runas`` to ``ansible_runas_pass`` +- scaleway - Fix bug causing KeyError exception on JSON http requests. (https://github.com/ansible-collections/community.general/pull/444) +- scaleway: use jsonify unmarshaller only for application/json requests to avoid breaking the multiline configuration with requests in text/plain (https://github.com/ansible/ansible/issues/65036) +- scaleway_compute - fix transition handling that could cause errors when removing a node (https://github.com/ansible-collections/community.general/pull/444). +- scaleway_compute(check_image_id): use get image instead loop on first page of images results +- sesu - make use of the prompt specified in the code +- slack - Fix ``thread_id`` data type +- slackpkg - fix matching some special cases in package names (https://github.com/ansible-collections/community.general/pull/505). +- slackpkg - fix name matching in package installation (https://github.com/ansible-collections/community.general/issues/450). +- spacewalk inventory - improve file handling by using a context manager. +- syslog_json callback - fix plugin exception when running (https://github.com/ansible-collections/community.general/issues/407). +- syslogger callback plugin - remove check mode support since it did nothing anyway +- terraform - adding support for absolute paths additionally to the relative path within project_path (https://github.com/ansible/ansible/issues/58578) +- terraform - reset out and err before plan creation (https://github.com/ansible/ansible/issues/64369) +- terraform module - fixes usage for providers not supporting workspaces +- yarn - Return correct values when running yarn in check mode (https://github.com/ansible-collections/community.general/pull/153). +- yarn - handle no version when installing module by name (https://github.com/ansible/ansible/issues/55097) +- zabbix_action - arguments ``event_source`` and ``esc_period`` no longer required when ``state=absent`` +- zabbix_host - fixed inventory_mode key error, which occurs with Zabbix 4.4.1 or more (https://github.com/ansible/ansible/issues/65304). +- zabbix_host - was not possible to update a host where visible_name was not set in zabbix +- zabbix_mediatype - Fixed to support zabbix 4.4 or more and python3 (https://github.com/ansible/ansible/pull/67693) +- zabbix_template - fixed error when providing empty ``link_templates`` to the module (see https://github.com/ansible/ansible/issues/66417) +- zabbix_template - fixed invalid (non-importable) output provided by exporting XML (see https://github.com/ansible/ansible/issues/66466) +- zabbix_user - Fixed an issue where module failed with zabbix 4.4 or above (see https://github.com/ansible/ansible/pull/67475) +- zfs_delegate_admin - add missing choices diff/hold/release to the permissions parameter (https://github.com/ansible-collections/community.general/pull/278) + +New Plugins +----------- + +Callback +~~~~~~~~ + +- diy - Customize the output + +Lookup +~~~~~~ + +- etcd3 - Get key values from etcd3 server +- lmdb_kv - fetch data from LMDB + +New Modules +----------- + +Cloud +~~~~~ + +huawei +^^^^^^ + +- hwc_ecs_instance - Creates a resource of Ecs/Instance in Huawei Cloud +- hwc_evs_disk - Creates a resource of Evs/Disk in Huawei Cloud +- hwc_vpc_eip - Creates a resource of Vpc/EIP in Huawei Cloud +- hwc_vpc_peering_connect - Creates a resource of Vpc/PeeringConnect in Huawei Cloud +- hwc_vpc_port - Creates a resource of Vpc/Port in Huawei Cloud +- hwc_vpc_private_ip - Creates a resource of Vpc/PrivateIP in Huawei Cloud +- hwc_vpc_route - Creates a resource of Vpc/Route in Huawei Cloud +- hwc_vpc_security_group - Creates a resource of Vpc/SecurityGroup in Huawei Cloud +- hwc_vpc_security_group_rule - Creates a resource of Vpc/SecurityGroupRule in Huawei Cloud +- hwc_vpc_subnet - Creates a resource of Vpc/Subnet in Huawei Cloud + +ovh +^^^ + +- ovh_monthly_billing - Manage OVH monthly billing + +packet +^^^^^^ + +- packet_ip_subnet - Assign IP subnet to a bare metal server. +- packet_project - Create/delete a project in Packet host. +- packet_volume - Create/delete a volume in Packet host. +- packet_volume_attachment - Attach/detach a volume to a device in the Packet host. + +Database +~~~~~~~~ + +misc +^^^^ + +- redis_info - Gather information about Redis servers + +mysql +^^^^^ + +- mysql_query - Run MySQL queries + +postgresql +^^^^^^^^^^ + +- postgresql_subscription - Add, update, or remove PostgreSQL subscription +- postgresql_user_obj_stat_info - Gather statistics about PostgreSQL user objects + +Files +~~~~~ + +- iso_create - Generate ISO file with specified files or folders + +Net Tools +~~~~~~~~~ + +- hetzner_firewall - Manage Hetzner's dedicated server firewall +- hetzner_firewall_info - Manage Hetzner's dedicated server firewall +- ipwcli_dns - Manage DNS Records for Ericsson IPWorks via ipwcli + +ldap +^^^^ + +- ldap_attrs - Add or remove multiple LDAP attribute values +- ldap_search - Search for entries in a LDAP server + +Packaging +~~~~~~~~~ + +os +^^ + +- mas - Manage Mac App Store applications with mas-cli + +System +~~~~~~ + +- dpkg_divert - Override a debian package's version of a file +- lbu - Local Backup Utility for Alpine Linux diff --git a/README.md b/README.md index 0b9f8282e1..4b63d308f2 100644 --- a/README.md +++ b/README.md @@ -32,9 +32,18 @@ You can find more information in the [developer guide for collections](https://d See [here](https://docs.ansible.com/ansible/devel/dev_guide/developing_collections.html#testing-collections). +## Release notes + +See [here](https://github.com/ansible-collections/community.general/tree/master/CHANGELOG.rst). + ## Publishing New Version -TBD +Basic instructions without release branches: + +1. Create `changelogs/fragments/.yml` with `release_summary:` section (which must be a string, not a list). +2. Run `antsibull-changelog release --collection-flatmap yes` +3. Make sure `CHANGELOG.rst` and `changelogs/changelog.yaml` are added to git, and the deleted fragments have been removed. +4. Tag the commit with ``. Push changes and tag to the main repository. ## More Information diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml new file mode 100644 index 0000000000..468d715279 --- /dev/null +++ b/changelogs/changelog.yaml @@ -0,0 +1,907 @@ +ancestor: null +releases: + 0.2.0: + changes: + breaking_changes: + - The environment variable for the auth context for the oc.py connection plugin + has been corrected (K8S_CONTEXT). It was using an initial lowercase k by + mistake. (https://github.com/ansible-collections/community.general/pull/377). + - bigpanda - the parameter ``message`` was renamed to ``deployment_message`` + since ``message`` is used by Ansible Core engine internally. + - cisco_spark - the module option ``message`` was renamed to ``msg``, as ``message`` + is used internally in Ansible Core engine (https://github.com/ansible/ansible/issues/39295) + - datadog - the parameter ``message`` was renamed to ``notification_message`` + since ``message`` is used by Ansible Core engine internally. + - 'docker_container - no longer passes information on non-anonymous volumes + or binds as ``Volumes`` to the Docker daemon. This increases compatibility + with the ``docker`` CLI program. Note that if you specify ``volumes: strict`` + in ``comparisons``, this could cause existing containers created with docker_container + from Ansible 2.9 or earlier to restart.' + - 'docker_container - support for port ranges was adjusted to be more compatible + to the ``docker`` command line utility: a one-port container range combined + with a multiple-port host range will no longer result in only the first host + port be used, but the whole range being passed to Docker so that a free port + in that range will be used.' + - hashi_vault lookup - now returns the latest version when using the KV v2 secrets + engine. Previously, it returned all versions of the secret which required + additional steps to extract and filter the desired version. + bugfixes: + - Convert MD5SUM to lowercase before comparison in maven_artifact module (https://github.com/ansible-collections/community.general/issues/186). + - Fix GitLab modules authentication by handling `python-gitlab` library version + >= 1.13.0 (https://github.com/ansible/ansible/issues/64770) + - Fix SSL protocol references in the ``mqtt`` module to prevent failures on + Python 2.6. + - Fix the ``xml`` module to use ``list(elem)`` instead of ``elem.getchildren()`` + since it is being removed in Python 3.9 + - Fix to return XML as a string even for python3 (https://github.com/ansible/ansible/pull/64032). + - Fixes the url handling in lxd_container module that url cannot be specified + in lxd environment created by snap. + - Fixes the url handling in lxd_profile module that url cannot be specified + in lxd environment created by snap. + - Redact GitLab Project variables which might include sensetive information + such as password, api_keys and other project related details. + - Run command in absent state in atomic_image module. + - While deleting gitlab user, name, email and password is no longer required + ini gitlab_user module (https://github.com/ansible/ansible/issues/61921). + - airbrake_deployment - Allow deploy notifications for Airbrake compatible v2 + api (e.g. Errbit) + - apt_rpm - fix ``package`` type from ``str`` to ``list`` to fix invoking with + list of packages (https://github.com/ansible-collections/community.general/issues/143). + - archive - make module compatible with older Ansible versions (https://github.com/ansible-collections/community.general/pull/306). + - become - Fix various plugins that still used play_context to get the become + password instead of through the plugin - https://github.com/ansible/ansible/issues/62367 + - cloudflare_dns - fix KeyError 'success' (https://github.com/ansible-collections/community.general/issues/236). + - cronvar - only run ``get_bin_path()`` once + - cronvar - use correct binary name (https://github.com/ansible/ansible/issues/63274) + - cronvar - use get_bin_path utility to locate the default crontab executable + instead of the hardcoded /usr/bin/crontab. (https://github.com/ansible/ansible/pull/59765) + - cyberarkpassword - fix invalid attribute access (https://github.com/ansible/ansible/issues/66268) + - datadog_monitor - Corrects ``_update_monitor`` to use ``notification_message`` + insteade of deprecated ``message`` (https://github.com/ansible-collections/community.general/pull/389). + - datadog_monitor - added missing ``log alert`` type to ``type`` choices (https://github.com/ansible-collections/community.general/issues/251). + - dense callback - fix plugin access to its configuration variables and remove + a warning message (https://github.com/ansible/ansible/issues/64628). + - digital_ocean_droplet - Fix creation of DigitalOcean droplets using digital_ocean_droplet + module (https://github.com/ansible/ansible/pull/61655) + - docker connection plugin - do not prefix remote path if running on Windows + containers. + - docker_compose - fix issue where docker deprecation warning results in ansible + erroneously reporting a failure + - docker_container - fix idempotency for IP addresses for networks. The old + implementation checked the effective IP addresses assigned by the Docker daemon, + and not the specified ones. This causes idempotency issues for containers + which are not running, since they have no effective IP addresses assigned. + - docker_container - fix network idempotence comparison error. + - docker_container - improve error behavior when parsing port ranges fails. + - docker_container - make sure that when image is missing, check mode indicates + a change (image will be pulled). + - 'docker_container - passing ``test: [NONE]`` now actually disables the image''s + healthcheck, as documented.' + - docker_container - wait for removal of container if docker API returns early + (https://github.com/ansible/ansible/issues/65811). + - docker_image - fix validation of build options. + - docker_image - improve file handling when loading images from disk. + - docker_image - make sure that deprecated options also emit proper deprecation + warnings next to warnings which indicate how to replace them. + - docker_login - Use ``with`` statement when accessing files, to prevent that + invalid JSON output is produced. + - docker_login - correct broken fix for https://github.com/ansible/ansible/pull/60381 + which crashes for Python 3. + - docker_login - fix error handling when ``username`` or ``password`` is not + specified when ``state`` is ``present``. + - docker_login - make sure that ``~/.docker/config.json`` is created with permissions + ``0600``. + - docker_machine - fallback to ip subcommand output if IPAddress is missing + (https://github.com/ansible-collections/community.general/issues/412). + - docker_network - fix idempotence comparison error. + - docker_network - fix idempotency for multiple IPAM configs of the same IP + version (https://github.com/ansible/ansible/issues/65815). + - docker_network - validate IPAM config subnet CIDR notation on module setup + and not during idempotence checking. + - docker_node_info - improve error handling when service inspection fails, for + example because node name being ambiguous (https://github.com/ansible/ansible/issues/63353, + PR https://github.com/ansible/ansible/pull/63418). + - docker_swarm_service - ``source`` must no longer be specified for ``tmpfs`` + mounts. + - docker_swarm_service - fix task always reporting as changed when using ``healthcheck.start_period``. + - 'docker_swarm_service - passing ``test: [NONE]`` now actually disables the + image''s healthcheck, as documented.' + - firewalld - enable the firewalld module to function offline with firewalld + version 0.7.0 and newer (https://github.com/ansible/ansible/issues/63254) + - flatpak and flatpak_remote - fix command line construction to build commands + as lists instead of strings. + - gcp_storage_file lookup - die gracefully when the ``google.cloud`` collection + is not installed, or changed in an incompatible way. + - github_deploy_key - added support for pagination + - gitlab_user - Fix adding ssh key to new/changed user and adding group membership + for new/changed user + - hashi_vault - Fix KV v2 lookup to always return latest version + - hashi_vault - Handle equal sign in key=value (https://github.com/ansible/ansible/issues/55658). + - hashi_vault - error messages are now user friendly and don't contain the secret + name ( https://github.com/ansible-collections/community.general/issues/54 + ) + - hashi_vault - if used via ``with_hashi_vault`` and a list of n secrets to + retrieve, only the first one would be retrieved and returned n times. + - hashi_vault - when a non-token authentication method like ldap or userpass + failed, but a valid token was loaded anyway (via env or token file), the token + was used to attempt authentication, hiding the failure of the requested auth + method. + - homebrew - fix Homebrew module's some functions ignored check_mode option + (https://github.com/ansible/ansible/pull/65387). + - influxdb_user - Don't grant admin privilege in check mode + - ipa modules - fix error when IPA_HOST is empty and fallback on DNS (https://github.com/ansible-collections/community.general/pull/241) + - java_keystore - make module compatible with older Ansible versions (https://github.com/ansible-collections/community.general/pull/306). + - jira - printing full error message from jira server (https://github.com/ansible-collections/community.general/pull/22). + - jira - transition issue not working (https://github.com/ansible-collections/community.general/issues/109). + - linode inventory plugin - fix parsing of access_token (https://github.com/ansible/ansible/issues/66874) + - manageiq_provider - fix serialization error when running on python3 environment. + - maven_artifact - make module compatible with older Ansible versions (https://github.com/ansible-collections/community.general/pull/306). + - mysql - dont mask ``mysql_connect`` function errors from modules (https://github.com/ansible/ansible/issues/64560). + - mysql_db - fix Broken pipe error appearance when state is import and the target + file is compressed (https://github.com/ansible/ansible/issues/20196). + - mysql_db - fix bug in the ``db_import`` function introduced by https://github.com/ansible/ansible/pull/56721 + (https://github.com/ansible/ansible/issues/65351). + - mysql_info - add parameter for __collect to get only what are wanted (https://github.com/ansible-collections/community.general/pull/136). + - mysql_replication - allow to pass empty values to parameters (https://github.com/ansible/ansible/issues/23976). + - mysql_user - Fix idempotence when long grant lists are used (https://github.com/ansible/ansible/issues/68044) + - mysql_user - Remove false positive ``no_log`` warning for ``update_password`` + option + - mysql_user - add ``INVOKE LAMBDA`` privilege support (https://github.com/ansible-collections/community.general/issues/283). + - mysql_user - fix ``host_all`` arguments conversion string formatting error + (https://github.com/ansible/ansible/issues/29644). + - mysql_user - fix support privileges with underscore (https://github.com/ansible/ansible/issues/66974). + - mysql_user - fix the error No database selected (https://github.com/ansible/ansible/issues/68070). + - mysql_user - make sure current_pass_hash is a string before using it in comparison + (https://github.com/ansible/ansible/issues/60567). + - mysql_variable - fix the module doesn't support variables name with dot (https://github.com/ansible/ansible/issues/54239). + - nmcli - typecast parameters to string as required (https://github.com/ansible/ansible/issues/59095). + - nsupdate - Do not try fixing non-existing TXT values (https://github.com/ansible/ansible/issues/63364) + - nsupdate - Fix zone name lookup of internal/private zones (https://github.com/ansible/ansible/issues/62052) + - one_vm - improve file handling by using a context manager. + - ovirt - don't ignore ``instance_cpus`` parameter + - pacman - Fix pacman output parsing on localized environment. (https://github.com/ansible/ansible/issues/65237) + - 'pacman - fix module crash with ``IndexError: list index out of range`` (https://github.com/ansible/ansible/issues/63077)' + - pamd - Bugfix for attribute error when removing the first or last line + - parted - added 'undefined' align option to support parted versions < 2.1 (https://github.com/ansible-collections/community.general/pull/405). + - parted - consider current partition state even in check mode (https://github.com/ansible-collections/community.general/issues/183). + - passwordstore lookup - Honor equal sign in userpass + - pmrun plugin - The success_command string was no longer quoted. This caused + unusual use-cases like ``become_flags=su - root -c`` to fail. + - postgres - use query params with cursor.execute in module_utils.postgres.PgMembership + class (https://github.com/ansible/ansible/pull/65164). + - postgres.py - add a new keyword argument ``query_params`` (https://github.com/ansible/ansible/pull/64661). + - postgres_user - Remove false positive ``no_log`` warning for ``no_password_changes`` + option + - postgresql_db - Removed exception for 'LibraryError' (https://github.com/ansible/ansible/issues/65223). + - postgresql_db - allow to pass users names which contain dots (https://github.com/ansible/ansible/issues/63204). + - postgresql_idx.py - use the ``query_params`` arg of exec_sql function (https://github.com/ansible/ansible/pull/64661). + - postgresql_lang - use query params with cursor.execute (https://github.com/ansible/ansible/pull/65093). + - postgresql_membership - make the ``groups`` and ``target_roles`` parameters + required (https://github.com/ansible/ansible/pull/67046). + - postgresql_membership - remove unused import of exec_sql function (https://github.com/ansible-collections/community.general/pull/178). + - postgresql_owner - use query_params with cursor object (https://github.com/ansible/ansible/pull/65310). + - postgresql_privs - fix sorting lists with None elements for python3 (https://github.com/ansible/ansible/issues/65761). + - postgresql_privs - sort results before comparing so that the values are compared + and not the result of ``.sort()`` (https://github.com/ansible/ansible/pull/65125) + - postgresql_privs.py - fix reports as changed behavior of module when using + ``type=default_privs`` (https://github.com/ansible/ansible/issues/64371). + - postgresql_publication - fix typo in module.warn method name (https://github.com/ansible/ansible/issues/64582). + - postgresql_publication - use query params arg with cursor object (https://github.com/ansible/ansible/issues/65404). + - postgresql_query - improve file handling by using a context manager. + - postgresql_query - the module doesn't support non-ASCII characters in SQL + files with Python3 (https://github.com/ansible/ansible/issues/65367). + - postgresql_schema - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65679). + - postgresql_sequence - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65787). + - postgresql_set - fix converting value to uppercase (https://github.com/ansible/ansible/issues/67377). + - postgresql_set - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65791). + - postgresql_slot - make the ``name`` parameter required (https://github.com/ansible/ansible/pull/67046). + - postgresql_slot - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65791). + - postgresql_subscription - fix typo in module.warn method name (https://github.com/ansible/ansible/pull/64583). + - postgresql_subscription - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65791). + - postgresql_table - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65862). + - postgresql_tablespace - make the ``tablespace`` parameter required (https://github.com/ansible/ansible/pull/67046). + - postgresql_tablespace - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65862). + - postgresql_user - allow to pass user name which contains dots (https://github.com/ansible/ansible/issues/63204). + - postgresql_user - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65862). + - proxmox - fix version detection of proxmox 6 and up (Fixes https://github.com/ansible/ansible/issues/59164) + - proxysql - fixed mysql dictcursor + - pulp_repo - the ``client_cert`` and ``client_key`` options were used for both + requests to the Pulp instance and for the repo to sync with, resulting in + errors when they were used. Use the new options ``feed_client_cert`` and ``feed_client_key`` + for client certificates that should only be used for repo synchronisation, + and not for communication with the Pulp instance. (https://github.com/ansible/ansible/issues/59513) + - puppet - fix command line construction for check mode and ``manifest:`` + - pure - fix incorrect user_string setting in module_utils file (https://github.com/ansible/ansible/pull/66914) + - redfish_command - fix EnableAccount if Enabled property is not present in + Account resource (https://github.com/ansible/ansible/issues/59822) + - redfish_command - fix error when deleting a disabled Redfish account (https://github.com/ansible/ansible/issues/64684) + - redfish_command - fix power ResetType mapping logic (https://github.com/ansible/ansible/issues/59804) + - redfish_config - fix support for boolean bios attrs (https://github.com/ansible/ansible/pull/68251) + - redfish_facts - fix KeyError exceptions in GetLogs (https://github.com/ansible/ansible/issues/59797) + - redhat_subscription - do not set the default quantity to ``1`` when no quantity + is provided (https://github.com/ansible/ansible/issues/66478) + - replace use of deprecated functions from ``ansible.module_utils.basic``. + - rshm_repository - reduce execution time when changed is False (https://github.com/ansible-collections/community.general/pull/458). + - runas - Fix the ``runas`` ``become_pass`` variable fallback from ``ansible_runas_runas`` + to ``ansible_runas_pass`` + - scaleway - Fix bug causing KeyError exception on JSON http requests. (https://github.com/ansible-collections/community.general/pull/444) + - 'scaleway: use jsonify unmarshaller only for application/json requests to + avoid breaking the multiline configuration with requests in text/plain (https://github.com/ansible/ansible/issues/65036)' + - scaleway_compute - fix transition handling that could cause errors when removing + a node (https://github.com/ansible-collections/community.general/pull/444). + - 'scaleway_compute(check_image_id): use get image instead loop on first page + of images results' + - sesu - make use of the prompt specified in the code + - slack - Fix ``thread_id`` data type + - slackpkg - fix matching some special cases in package names (https://github.com/ansible-collections/community.general/pull/505). + - slackpkg - fix name matching in package installation (https://github.com/ansible-collections/community.general/issues/450). + - spacewalk inventory - improve file handling by using a context manager. + - syslog_json callback - fix plugin exception when running (https://github.com/ansible-collections/community.general/issues/407). + - syslogger callback plugin - remove check mode support since it did nothing + anyway + - terraform - adding support for absolute paths additionally to the relative + path within project_path (https://github.com/ansible/ansible/issues/58578) + - terraform - reset out and err before plan creation (https://github.com/ansible/ansible/issues/64369) + - terraform module - fixes usage for providers not supporting workspaces + - yarn - Return correct values when running yarn in check mode (https://github.com/ansible-collections/community.general/pull/153). + - yarn - handle no version when installing module by name (https://github.com/ansible/ansible/issues/55097) + - zabbix_action - arguments ``event_source`` and ``esc_period`` no longer required + when ``state=absent`` + - zabbix_host - fixed inventory_mode key error, which occurs with Zabbix 4.4.1 + or more (https://github.com/ansible/ansible/issues/65304). + - zabbix_host - was not possible to update a host where visible_name was not + set in zabbix + - zabbix_mediatype - Fixed to support zabbix 4.4 or more and python3 (https://github.com/ansible/ansible/pull/67693) + - zabbix_template - fixed error when providing empty ``link_templates`` to the + module (see https://github.com/ansible/ansible/issues/66417) + - zabbix_template - fixed invalid (non-importable) output provided by exporting + XML (see https://github.com/ansible/ansible/issues/66466) + - zabbix_user - Fixed an issue where module failed with zabbix 4.4 or above + (see https://github.com/ansible/ansible/pull/67475) + - zfs_delegate_admin - add missing choices diff/hold/release to the permissions + parameter (https://github.com/ansible-collections/community.general/pull/278) + deprecated_features: + - airbrake_deployment - Add deprecation notice for ``token`` parameter and v2 + api deploys. This feature will be removed in community.general 3.0.0. + - clc_aa_policy - The ``wait`` option had no effect and will be removed in community.general + 3.0.0. + - clc_aa_policy - the ``wait`` parameter will be removed. It has always been + ignored by the module. + - docker_container - the ``trust_image_content`` option is now deprecated and + will be removed in community.general 3.0.0. It has never been used by the + module. + - docker_container - the ``trust_image_content`` option will be removed. It + has always been ignored by the module. + - docker_container - the default of ``container_default_behavior`` will change + from ``compatibility`` to ``no_defaults`` in community.general 3.0.0. Set + the option to an explicit value to avoid a deprecation warning. + - docker_container - the default value for ``network_mode`` will change in community.general + 3.0.0, provided at least one network is specified and ``networks_cli_compatible`` + is ``true``. See porting guide, module documentation or deprecation warning + for more details. + - docker_stack - Return values ``out`` and ``err`` have been deprecated and + will be removed in community.general 3.0.0. Use ``stdout`` and ``stderr`` + instead. + - docker_stack - the return values ``err`` and ``out`` have been deprecated. + Use ``stdout`` and ``stderr`` from now on instead. + - helm - Put ``helm`` module to deprecated. New implementation is available + in community.kubernetes collection. + - redfish_config - Deprecate ``bios_attribute_name`` and ``bios_attribute_value`` + in favor of new `bios_attributes`` option. + - redfish_config - the ``bios_attribute_name`` and ``bios_attribute_value`` + options will be removed. To maintain the existing behavior use the ``bios_attributes`` + option instead. + - redfish_config and redfish_command - the behavior to select the first System, + Manager, or Chassis resource to modify when multiple are present will be removed. + Use the new ``resource_id`` option to specify target resource to modify. + - redfish_config, redfish_command - Behavior to modify the first System, Mananger, + or Chassis resource when multiple are present is deprecated. Use the new ``resource_id`` + option to specify target resource to modify. + - zabbix_proxy - deprecates ``interface`` sub-options ``type`` and ``main`` + when proxy type is set to passive via ``status=passive``. Make sure these + suboptions are removed from your playbook as they were never supported by + Zabbix in the first place. + major_changes: + - docker_container - the ``network_mode`` option will be set by default to the + name of the first network in ``networks`` if at least one network is given + and ``networks_cli_compatible`` is ``true`` (will be default from community.general + 2.0.0 on). Set to an explicit value to avoid deprecation warnings if you specify + networks and set ``networks_cli_compatible`` to ``true``. The current default + (not specifying it) is equivalent to the value ``default``. + - docker_container - the module has a new option, ``container_default_behavior``, + whose default value will change from ``compatibility`` to ``no_defaults``. + Set to an explicit value to avoid deprecation warnings. + - gitlab_user - no longer requires ``name``, ``email`` and ``password`` arguments + when ``state=absent``. + - zabbix_action - no longer requires ``esc_period`` and ``event_source`` arguments + when ``state=absent``. + minor_changes: + - A new filter ``to_time_unit`` with specializations ``to_milliseconds``, ``to_seconds``, + ``to_minutes``, ``to_hours``, ``to_days``, ``to_weeks``, ``to_months`` and + ``to_years`` has been added. For example ``'2d 4h' | community.general.to_hours`` + evaluates to 52. + - Add a make option to the make module to be able to choose a specific make + executable + - Add information about changed packages in homebrew returned facts (https://github.com/ansible/ansible/issues/59376). + - Follow up changes in homebrew_cask (https://github.com/ansible/ansible/issues/34696). + - Moved OpenStack dynamic inventory script to Openstack Collection. + - Remove redundant encoding in json.load call in ipa module_utils (https://github.com/ansible/ansible/issues/66592). + - Updated documentation about netstat command requirement for listen_ports_facts + module (https://github.com/ansible/ansible/issues/68077). + - airbrake_deployment - Allow passing ``project_id`` and ``project_key`` for + v4 api deploy compatibility + - ali_instance - Add params ``unique_suffix``, ``tags``, ``purge_tags``, ``ram_role_name``, + ``spot_price_limit``, ``spot_strategy``, ``period_unit``, ``dry_run``, ``include_data_disks`` + - ali_instance and ali_instance_info - the required package footmark needs a + version higher than 1.19.0 + - ali_instance_info - Add params ``name_prefix``, ``filters`` + - alicloud modules - Add authentication params to all modules + - alicloud modules - now only support Python 3.6, not support Python 2.x + - cisco_spark - the module has been renamed to ``cisco_webex`` (https://github.com/ansible-collections/community.general/pull/457). + - cloudflare_dns - Report unexpected failure with more detail (https://github.com/ansible-collections/community.general/pull/511). + - database - add support to unique indexes in postgresql_idx + - digital_ocean_droplet - add support for new vpc_uuid parameter + - docker connection plugin - run Powershell modules on Windows containers. + - docker_container - add ``cpus`` option (https://github.com/ansible/ansible/issues/34320). + - docker_container - add new ``container_default_behavior`` option (PR https://github.com/ansible/ansible/pull/63419). + - docker_container - allow to configure timeout when the module waits for a + container's removal. + - 'docker_container - only passes anonymous volumes to docker daemon as ``Volumes``. + This increases compatibility with the ``docker`` CLI program. Note that if + you specify ``volumes: strict`` in ``comparisons``, this could cause existing + containers created with docker_container from Ansible 2.9 or earlier to restart.' + - 'docker_container - support for port ranges was adjusted to be more compatible + to the ``docker`` command line utility: a one-port container range combined + with a multiple-port host range will no longer result in only the first host + port be used, but the whole range being passed to Docker so that a free port + in that range will be used.' + - docker_container.py - update a containers restart_policy without restarting + the container (https://github.com/ansible/ansible/issues/65993) + - docker_stack - Added ``stdout``, ``stderr``, and ``rc`` to return values. + - docker_swarm_service - Added support for ``init`` option. + - docker_swarm_service - Sort lists when checking for changes. + - firewalld - new feature, can now set ``target`` for a ``zone`` (https://github.com/ansible-collections/community.general/pull/526). + - flatpak and flatpak_remote - use ``module.run_command()`` instead of ``subprocess.Popen()``. + - gitlab_project_variable - implement masked and protected attributes + - gitlab_project_variable - implemented variable_type attribute. + - hashi_vault - AWS IAM auth method added. Accepts standard ansible AWS params + and only loads AWS libraries when needed. + - hashi_vault - INI and additional ENV sources made available for some new and + old options. + - hashi_vault - ``secret`` can now be an unnamed argument if it's specified + first in the term string (see examples). + - hashi_vault - ``token`` is now an explicit option (and the default) in the + choices for ``auth_method``. This matches previous behavior (``auth_method`` + omitted resulted in token auth) but makes the value clearer and allows it + to be explicitly specified. + - hashi_vault - new option ``return_format`` added to control how secrets are + returned, including options for multiple secrets and returning raw values + with metadata. + - hashi_vault - previous (undocumented) behavior was to attempt to read token + from ``~/.vault-token`` if not specified. This is now controlled through ``token_path`` + and ``token_file`` options (defaults will mimic previous behavior). + - hashi_vault - previously all options had to be supplied via key=value pairs + in the term string; now a mix of string and parameters can be specified (see + examples). + - hashi_vault - uses newer authentication calls in the HVAC library and falls + back to older ones with deprecation warnings. + - homebrew - Added environment variable to honor update_homebrew setting (https://github.com/ansible/ansible/issues/56650). + - homebrew - New option ``upgrade_options`` allows to pass flags to upgrade + - homebrew - ``install_options`` is now validated to be a list of strings. + - homebrew_tap - ``name`` is now validated to be a list of strings. + - idrac_redfish_config - Support for multiple manager attributes configuration + - java_keystore - add the private_key_passphrase parameter (https://github.com/ansible-collections/community.general/pull/276). + - jira - added search function with support for Jira JQL (https://github.com/ansible-collections/community.general/pull/22). + - jira - added update function which can update Jira Selects etc (https://github.com/ansible-collections/community.general/pull/22). + - lvg - add ``pvresize`` new parameter (https://github.com/ansible/ansible/issues/29139). + - mysql_db - add ``master_data`` parameter (https://github.com/ansible/ansible/pull/66048). + - mysql_db - add ``skip_lock_tables`` option (https://github.com/ansible/ansible/pull/66688). + - mysql_db - add the ``check_implicit_admin`` parameter (https://github.com/ansible/ansible/issues/24418). + - mysql_db - add the ``config_overrides_defaults`` parameter (https://github.com/ansible/ansible/issues/26919). + - mysql_db - add the ``dump_extra_args`` parameter (https://github.com/ansible/ansible/pull/67747). + - mysql_db - add the ``executed_commands`` returned value (https://github.com/ansible/ansible/pull/65498). + - mysql_db - add the ``force`` parameter (https://github.com/ansible/ansible/pull/65547). + - mysql_db - add the ``restrict_config_file`` parameter (https://github.com/ansible/ansible/issues/34488). + - mysql_db - add the ``unsafe_login_password`` parameter (https://github.com/ansible/ansible/issues/63955). + - mysql_db - add the ``use_shell`` parameter (https://github.com/ansible/ansible/issues/20196). + - mysql_info - add ``exclude_fields`` parameter (https://github.com/ansible/ansible/issues/63319). + - mysql_info - add ``global_status`` filter parameter option and return (https://github.com/ansible/ansible/pull/63189). + - mysql_info - add ``return_empty_dbs`` parameter to list empty databases (https://github.com/ansible/ansible/issues/65727). + - mysql_replication - add ``channel`` parameter (https://github.com/ansible/ansible/issues/29311). + - mysql_replication - add ``connection_name`` parameter (https://github.com/ansible/ansible/issues/46243). + - mysql_replication - add ``fail_on_error`` parameter (https://github.com/ansible/ansible/pull/66252). + - mysql_replication - add ``master_delay`` parameter (https://github.com/ansible/ansible/issues/51326). + - mysql_replication - add ``master_use_gtid`` parameter (https://github.com/ansible/ansible/pull/62648). + - mysql_replication - add ``queries`` return value (https://github.com/ansible/ansible/pull/63036). + - mysql_replication - add support of ``resetmaster`` choice to ``mode`` parameter + (https://github.com/ansible/ansible/issues/42870). + - mysql_user - ``priv`` parameter can be string or dictionary (https://github.com/ansible/ansible/issues/57533). + - mysql_user - add ``plugin_auth_string`` parameter (https://github.com/ansible/ansible/pull/44267). + - mysql_user - add ``plugin_hash_string`` parameter (https://github.com/ansible/ansible/pull/44267). + - mysql_user - add ``plugin`` parameter (https://github.com/ansible/ansible/pull/44267). + - mysql_user - add the resource_limits parameter (https://github.com/ansible-collections/community.general/issues/133). + - mysql_variables - add ``mode`` parameter (https://github.com/ansible/ansible/issues/60119). + - nagios module - a start parameter has been added, allowing the time a Nagios + outage starts to be set. It defaults to the current time if not provided, + preserving the previous behavior and ensuring compatibility with existing + playbooks. + - nsupdate - Use provided TSIG key to not only sign update queries but also + lookup queries + - open_iscsi - allow ``portal`` parameter to be a domain name by resolving the + portal ip address beforehand (https://github.com/ansible-collections/community.general/pull/461). + - packet_device - add ``tags`` parameter on device creation (https://github.com/ansible-collections/community.general/pull/418) + - 'pacman - Improve package state detection speed: Don''t query for full details + of a package.' + - parted - add the ``fs_type`` parameter (https://github.com/ansible-collections/community.general/issues/135). + - pear - added ``prompts`` parameter to allow users to specify expected prompt + that could hang Ansible execution (https://github.com/ansible-collections/community.general/pull/530). + - postgresql_copy - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/313). + - postgresql_db - add ``dump_extra_args`` parameter (https://github.com/ansible/ansible/pull/66717). + - postgresql_db - add support for .pgc file format for dump and restores. + - postgresql_db - add the ``executed_commands`` returned value (https://github.com/ansible/ansible/pull/65542). + - postgresql_db - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/issues/106). + - postgresql_ext - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/282). + - postgresql_ext - refactor to simplify and remove dead code (https://github.com/ansible-collections/community.general/pull/291) + - postgresql_ext - use query parameters with cursor object (https://github.com/ansible/ansible/pull/64994). + - postgresql_idx - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/264). + - postgresql_idx - refactor to simplify code (https://github.com/ansible-collections/community.general/pull/291) + - postgresql_info - add collecting info about logical replication publications + in databases (https://github.com/ansible/ansible/pull/67614). + - postgresql_info - add collection info about replication subscriptions (https://github.com/ansible/ansible/pull/67464). + - postgresql_info - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/308). + - postgresql_lang - add ``owner`` parameter (https://github.com/ansible/ansible/pull/62999). + - postgresql_lang - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/272). + - postgresql_membership - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/158). + - postgresql_owner - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/198). + - postgresql_ping - add the ``session_role`` parameter (https://github.com/ansible-collections/community.general/pull/312). + - postgresql_ping - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/312). + - postgresql_privs - add support for TYPE as object types in postgresql_privs + module (https://github.com/ansible/ansible/issues/62432). + - postgresql_privs - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/177). + - postgresql_publication - add the ``session_role`` parameter (https://github.com/ansible-collections/community.general/pull/279). + - postgresql_publication - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/279). + - postgresql_query - add the ``encoding`` parameter (https://github.com/ansible/ansible/issues/65367). + - postgresql_query - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/294). + - postgresql_schema - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/259). + - postgresql_sequence - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/295). + - postgresql_set - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/302). + - postgresql_slot - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/298). + - postgresql_subscription - add the ``session_role`` parameter (https://github.com/ansible-collections/community.general/pull/280). + - postgresql_subscription - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/280). + - postgresql_table - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/307). + - postgresql_tablespace - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/240). + - postgresql_user - add scram-sha-256 support (https://github.com/ansible/ansible/issues/49878). + - postgresql_user - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/116). + - postgresql_user - add the comment parameter (https://github.com/ansible/ansible/pull/66711). + - postgresql_user_obj_stat_info - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/310). + - postgresql_user_obj_stat_info - refactor to simplify code (https://github.com/ansible-collections/community.general/pull/291) + - proxmox - add the ``description`` and ``hookscript`` parameter (https://github.com/ansible-collections/community.general/pull/245). + - redfish_command - Support for virtual media insert and eject commands (https://github.com/ansible-collections/community.general/issues/493) + - redfish_config - New ``bios_attributes`` option to allow setting multiple + BIOS attributes in one command. + - redfish_config, redfish_command - Add ``resource_id`` option to specify which + System, Manager, or Chassis resource to modify. + - redis - add TLS support to redis cache plugin (https://github.com/ansible-collections/community.general/pull/410). + - rhn_channel - Added ``validate_certs`` option (https://github.com/ansible/ansible/issues/68374). + - rundeck modules - added new options ``client_cert``, ``client_key``, ``force``, + ``force_basic_auth``, ``http_agent``, ``url_password``, ``url_username``, + ``use_proxy``, ``validate_certs`` to allow changing fetch_url parameters. + - slack - Add support for user/bot/application tokens (using Slack WebAPI) + - slack - Return ``thread_id`` with thread timestamp when user/bot/application + tokens are used + - syslogger - added new parameter ident to specify the name of application which + is sending the message to syslog (https://github.com/ansible-collections/community.general/issues/319). + - terraform - Adds option ``backend_config_files``. This can accept a list of + paths to multiple configuration files (https://github.com/ansible-collections/community.general/pull/394). + - terraform - Adds option ``variables_files`` for multiple var-files (https://github.com/ansible-collections/community.general/issues/224). + - ufw - accept ``interface_in`` and ``interface_out`` as parameters. + - zabbix_action - allow str values for ``esc_period`` options (https://github.com/ansible/ansible/pull/66841). + - zabbix_host - now supports configuring user macros and host tags on the managed + host (see https://github.com/ansible/ansible/pull/66777) + - zabbix_host_info - ``host_name`` based search results now include host groups. + - zabbix_hostmacro - ``macro_name`` now accepts macros in zabbix native format + as well (e.g. ``{$MACRO}``) + - zabbix_hostmacro - ``macro_value`` is no longer required when ``state=absent`` + - zabbix_proxy - ``interface`` sub-options ``type`` and ``main`` are now deprecated + and will be removed in community.general 3.0.0. Also, the values passed to + ``interface`` are now checked for correct types and unexpected keys. + - zabbix_proxy - added option proxy_address for comma-delimited list of IP/CIDR + addresses or DNS names to accept active proxy requests from + - zabbix_template - add new option omit_date to remove date from exported/dumped + template (https://github.com/ansible/ansible/pull/67302) + - zabbix_template - adding new update rule templateLinkage.deleteMissing for + newer zabbix versions (https://github.com/ansible/ansible/pull/66747). + - zabbix_template_info - add new option omit_date to remove date from exported/dumped + template (https://github.com/ansible/ansible/pull/67302) + - zypper - Added ``allow_vendor_change`` and ``replacefiles`` zypper options + (https://github.com/ansible-collections/community.general/issues/381) + release_summary: 'This is the first proper release of the ``community.general`` + collection on 2020-06-20. + + The changelog describes all changes made to the modules and plugins included + in this + + collection since Ansible 2.9.0. + + ' + removed_features: + - core - remove support for ``check_invalid_arguments`` in ``UTMModule``. + - pacman - Removed deprecated ``recurse`` option, use ``extra_args=--recursive`` + instead + security_fixes: + - '**SECURITY** - CVE-2019-14904 - solaris_zone module accepts zone name and + performs actions related to that. However, there is no user input validation + done while performing actions. A malicious user could provide a crafted zone + name which allows executing commands into the server manipulating the module + behaviour. Adding user input validation as per Solaris Zone documentation + fixes this issue.' + - '**security issue** - Ansible: Splunk and Sumologic callback plugins leak + sensitive data in logs (CVE-2019-14864)' + - 'ldap_attr, ldap_entry - The ``params`` option has been removed in Ansible-2.10 + as it circumvents Ansible''s option handling. Setting ``bind_pw`` with the + ``params`` option was disallowed in Ansible-2.7, 2.8, and 2.9 as it was insecure. For + information about this policy, see the discussion at: https://meetbot.fedoraproject.org/ansible-meeting/2017-09-28/ansible_dev_meeting.2017-09-28-15.00.log.html + This fixes CVE-2020-1746' + fragments: + - 0.2.0.yml + - 100-postgresql_user_scram_sha_256_support.yml + - 114-puppet-commandline-construction.yml + - 115-deprecated-helm-module.yaml + - 116-postgresql_user_add_trust_input_parameter.yml + - 123-slack-add_bot_token_support_thread_id.yml + - 124-airbrake_deployments-api_v4_for_deploy_notices.yml + - 142-mysql_user_add_resource_limit_parameter.yml + - 151-mysql_db_add_use_shell_parameter.yml + - 153-yarn_fix_checkmode-ec61975fc65df7f0.yaml + - 158-postgresql_membership_add_trust_input_parameter.yml + - 17-postgres_user-no_password_changes-no_log.yml + - 177-postgresql_privs_add_trust_input_parameter.yml + - 178-postgresql_membership_remove_unused_import.yml + - 18-mysql_user-update_password-no_log.yml + - 183-parted_check_mode.yml + - 184-postgresql_db_add_trust_input_parameter.yml + - 186-maven_artifact.yml + - 19-passwordstore-equal-sign.yml + - 198-postgresql_owner_add_trust_input_parameter.yml + - 212-make-path-option.yml + - 22-jira.yaml + - 221-parted-fs_type-parameter.yml + - 223-manageiq_provider-fix-serialization.yml + - 225-mysql_user_fix_no_database_selected.yml + - 227-sesu-use-defined-prompt.yaml + - 23-hashi-vault-lookup-refresh.yaml + - 24-homebrew-upgrade_options.yml + - 240-postgresql_tablespace_add_trust_input_parameter.yml + - 241-fix-ipa-modules-when-ipa_host-empty.yml + - 243-cloudflare_dns_fix_keyerror.yml + - 245-proxmox.yml + - 259-postgresql_schema_add_trust_input_parameter.yml + - 26-influxdb_user-admin-check-mode.yml + - 264-postgresql_idx_add_trust_input_parameter.yml + - 269-flatpak-command-list.yaml + - 272-postgresql_lang_add_trust_input_parameter.yml + - 274-flatpak-run-command.yaml + - 276-java_keystore-private_key_passphrase.yaml + - 277-datadog_monitor-adds-missing-log-alert-type.yml + - 278-zfs_delegate_admin_add_diff_hold_release.yml + - 279-postgresql_publication_add_trust_input_session_role.yml + - 280-postgresql_subscription_add_trust_input_session_role.yml + - 282-postgresql_ext_add_trust_input.yml + - 285-mysql_user_invoke_lambda_support.yml + - 291-postgresql_refactor_modules.yml + - 29253-pear_add_prompts_parameter.yml + - 294-postgresql_query_add_trust_input_parameter.yml + - 295-postgresql_sequence_add_trust_input.yml + - 298-postgresql_slot_add_trust_input.yml + - 302-postgresql_set_add_trust_input_parameter.yml + - 306-ansible-2.9-compatibility.yml + - 307-postgresql_table_add_trust_input_parameter.yml + - 308-postgresql_info_add_trust_input_parameter.yml + - 310-postgresql_user_obj_stat_info_add_trust_input.yml + - 312-postgresql_ping_add_trust_input_session_role.yml + - 313-postgresql_copy_add_trust_input_session_role.yml + - 318-linode-inventory-access_token-fix.yaml + - 319-syslogger.yml + - 326-pacman_improve_package_state_detection_speed.yml + - 34696-homebrew_cask.yml + - 36-homebrew-elements.yml + - 36876-github-deploy-key-fix-pagination.yaml + - 37-homebrew_tap-elements.yml + - 372-gcp_storage_file-gracefully.yml + - 382-install_upgrade_specific_args.yaml + - 389-datadog_monitor-corrects-deprecated-message-param.yml + - 394-terraform-add-config_file.yml + - 405-parted_align_undefined.yml + - 407-syslogjson-callback-exception.yml + - 410-redis_cache-add_tls_support.yaml + - 412-docker-machine-add-ip-fallback.yaml + - 418-add-tags-parameter-to-packet-device.yaml + - 428-mysql_db_add_unsafe_login_password_param.yml + - 442-add-new-parameter-pvresize.yaml + - 444-scaleway-improve_removal_handling.yml + - 444-scaleway_fix_http_header_casing.yml + - 450-slackpkg-package-matching.yml + - 457-cisco_webex_spark-rename.yml + - 458-rshm_repository-reduce_execution_time_when_changed_is_false.yml + - 461-resolve-domain-for-iscsi-portal.yml + - 468-mysql_db_add_restrict_config_file_param.yml + - 475-digital_ocean_droplet-add-vpcuuid.yaml + - 476-docker_swarm_service_add_init_option.yml + - 486-mysql_db_add_check_implicit_admin_parameter.yml + - 490-mysql_user_fix_cursor_errors.yml + - 494-add-redfish-virtual-media-commands.yml + - 505-slackpkg_fix_matching_some_special_cases_in_package_names.yml + - 511-cloudflare_dns-verbose-failure.yml + - 513-mysql_db_config_overrides_defaults.yml + - 55658_hashi_vault.yml + - 56650-homebrew-update_brew.yml + - 58115_nmcli.yml + - 58812-support_absolute_paths_additionally.yml + - 59376-homebrew_fix.yml + - 59522-renamed-module-tls-client-auth-params-to-avoid-overlaping-with-fetch_url.yaml + - 59765-cron-cronvar-use-get-bin-path.yaml + - 59877-fix-keyerror-in-redfish-getlogs.yaml + - 59927-fix-redfish-power-reset-type-mapping.yaml + - 60201-idrac-redfish-config-attributes-support.yml + - 60961-docker_compose-fix-deprecation-warning.yml + - 61562-nagios-start.yaml + - 61655-fix-digital-ocean-droplet-create.yaml + - 61740-docker_container-port-range-parsing.yml + - 61921-gitlab_user.yml + - 61961-pacman_remove_recurse_option.yaml + - 62329-nsupdate-lookup-internal-zones.yaml + - 62348-yarn-no_version_install_fix.yml + - 62617-fix-redfish-enable-account-if-enabled-prop-missing.yaml + - 62621-docker_login-fix-60381.yaml + - 62648-mysql_replication_add_master_use_gtid_param.yml + - 62928-docker_container-ip-address-idempotency.yml + - 62971-docker_container-image-finding.yml + - 62999-postgresql_lang_add_owner_parameter.yml + - 63036-mysql_replication_add_return_value.yml + - 63130-mysql_replication_add_master_delay_parameter.yml + - 63174-nsupdate-tsig-all-the-queries.yaml + - 63189-mysql_info-global-status.yml + - 63229-mysql_replication_add_connection_name_parameter.yml + - 63271-mysql_replication_add_channel_parameter.yml + - 63321-mysql_replication_add_resetmaster_to_mode.yml + - 63345-docker_image-deprecation-warnings.yml + - 63371-mysql_info_add_exclude_fields_parameter.yml + - 63408-nsupdate-dont-fix-none-txt-value.yaml + - 63418-docker_node_info-errors.yml + - 63419-docker_container-defaults.yml + - 63420-docker_container-trust_image_content.yml + - 63467-docker-stack-return-fix.yml + - 63522-remove-args-from-sumologic-and-splunk-callbacks.yml + - 63546-mysql_replication_allow_to_pass_empty_values.yml + - 63547-mysql_variables_add_mode_param.yml + - 63555-postgresql_privs_typy_obj_types.yaml + - 63565-postgresql_user_allow_user_name_with_dots.yml + - 63621-gitlab_user-fix-sshkey-and-user.yml + - 63629-postgresql_db_pgc_support.yaml + - 63887-docker_swarm_service-sort-lists-when-checking-changes.yml + - 63903-ufw.yaml + - 63969-zabbix_action_argsfix.yml + - 63990-replace-deprecated-basic-functions.yml + - 64007-postgresql_db_allow_user_name_with_dots.yml + - 64032-zabbix_template_fix_return_XML_as_a_string_even_python3.yml + - 64059-mysql_user_fix_password_comparison.yaml + - 64288-fix-hashi-vault-kv-v2.yaml + - 64371-postgresql_privs-always-reports-as-changed-when-using-default_privs.yml + - 64382-docker_login-fix-invalid-json.yml + - 64582-postgresql_publication_fix_typo_in_module_warn.yml + - 64583-postgresql_subscription_fix_typo_in_module_warn.yml + - 64585-mysql_dont_mask_mysql_connect_errors_from_modules.yml + - 64635-docker_container-network_mode.yml + - 64637-docker_swarm_service-tmpfs-source.yml + - 64661-postgres_py_add_query_params_arg.yml + - 64683-docker_container-cpus.yml + - 64797-fix-error-deleting-redfish-acct.yaml + - 64989-gitlab-handle-lib-new-version.yml + - 64994-postgresql_ext_use_query_params.yml + - 65018-docker-none-errors.yml + - 65044-fix-terraform-no-workspace.yaml + - 65093-postgresql_lang_use_query_params_with_cursor.yml + - 65164-postgres_use_query_params_with_cursor.yml + - 65223-postgresql_db-exception-added.yml + - 65238-fix_pacman_stdout_parsing.yml + - 65304-fix_zabbix_host_inventory_mode_key_error.yml + - 65310-postgresql_owner_use_query_params.yml + - 65372-misc-context-manager.yml + - 65387-homebrew_check_mode_option.yml + - 65404-postgresql_publication_user_query_params_with_cursor.yml + - 65498-mysql_db_add_executed_commands_return_val.yml + - 65542-postgresql_db_add_executed_commands_return_val.yml + - 65547-mysql_db_add_force_param.yml + - 65609-docker-context-manager.yml + - 65632-docker-argspec-fixup.yml + - 65679-postgresql_schema_use_query_params_with_cursor.yml + - 65750-pacman.yml + - 65755-mysql_info_doesnt_list_empty_dbs.yml + - 65787-postgresql_sequence_use_query_params_with_cursor.yml + - 65789-mysql_user_add_plugin_authentication_parameters.yml + - 65791-postgresql_modules_use_query_params_with_cursor.yml + - 65839-docker_network-idempotence.yml + - 65854-docker_container-wait-for-removal.yml + - 65862-postgresql_modules_use_query_params_with_cursor.yml + - 65894-redfish-bios-attributes.yaml + - 65903-postgresql_privs_sort_lists_with_none_elements.yml + - 65993-restart-docker_container-on-restart-policy-updates.yaml + - 66026-zabbix_host_info.yml + - 66048-mysql_add_master_data_parameter.yml + - 66060-redfish-new-resource-id-option.yaml + - 66144-docker_container-removal-timeout.yml + - 66151-docker_swarm_service-healthcheck-start-period.yml + - 66157-postgresql-create-unique-indexes.yml + - 66247-zabbix_proxy-address-field.yaml + - 66252-mysql_replication_fail_on_error.yml + - 66268-cyberarkpassword-fix-invalid-attr.yaml + - 66322-moved_line_causing_terraform_output_suppression.yml + - 66331-postgresql_query_fix_unable_to_handle_non_ascii_chars_when_python3.yml + - 66357-support-changing-fetch_url-settings-for-rundeck-modules.yaml + - 66382-docker_container-port-range.yml + - 66398-pamd_fix-attributeerror-when-removing-first-line.yml + - 66463-zabbix_template-fix-error-linktemplate-and-importdump.yml + - 66592_ipa_encoding_fix.yml + - 66599-docker-healthcheck.yml + - 66600-docker_container-volumes.yml + - 66688-mysql_db_add_skip_lock_tables_option.yml + - 66711-postgresql_user_add_comment_parameter.yml + - 66717-postgresql_db_add_dump_extra_args_param.yml + - 66747-zabbix_template-newupdaterule-deletemissinglinkedtemplate.yml + - 66777-zabbix_host_tags_macros_support.yml + - 66801-mysql_user_priv_can_be_dict.yml + - 66806-mysql_variables_not_support_variables_with_dot.yml + - 66807-redhat_subscription-no-default-quantity.yaml + - 66837-zabbix-proxy-interface.yml + - 66841-zabbix_action-allowstrfor-esc_period.yml + - 66914-purefa_user_string.yaml + - 66929-pmrun-quote-entire-success-command-string.yml + - 66957-scaleway-jsonify-only-for-json-requests.yml + - 66974-mysql_user_doesnt_support_privs_with_underscore.yml + - 67046-postgresql_modules_make_params_required.yml + - 67302-zabbix_template_info-add-omit_date-field.yml + - 67337-fix-proxysql-mysql-cursor.yaml + - 67353-docker_login-permissions.yml + - 67418-postgresql_set_converts_value_to_uppercase.yml + - 67461-gitlab-project-variable-masked-protected.yml + - 67464-postgresql_info_add_collecting_subscription_info.yml + - 67614-postgresql_info_add_collecting_publication_info.yml + - 67655-scaleway_compute-get-image-instead-loop-on-list.yml + - 67693-zabbix_mediatype.yml + - 67747-mysql_db_add_dump_extra_args_param.yml + - 67767-mysql_db_fix_bug_introduced_by_56721.yml + - 67832-run_powershell_modules_on_windows_containers.yml + - 68251-redfish_config-fix-boolean-bios-attr-support.yaml + - 68374_rhn_channel.yml + - 80-update_docker_connection_plugin.yml + - 83-dense-callback-warning.yml + - alicloud_params_add.yml + - apt_rpm_typefix.yml + - atomic_image_absent.yml + - become-pass-precedence.yaml + - clc_aa_policy-remove-unused-wait-parameter.yaml + - cron-only-get-bin-path-once.yaml + - cronvar-correct-binary-name.yaml + - filter-time.yml + - firewalld-version-0_7_0.yml + - firewalld_zone_target.yml + - fix-oc-conn-plugin-envvar.yml + - fix_zabbix_host_visible_name.yml + - gitlab-project-variable-variable-type.yml + - gitlab_project_variable.yml + - ldap-params-removal.yml + - listen_ports_facts_doc.yml + - lxd_container_url.yaml + - lxd_profile_url.yaml + - mqtt-ssl-protocols.yml + - mysql_info_add_parameter.yml + - mysql_user_idempotency.yml + - openstack_inventory_move.yml + - ovirt-dont-ignore-instance_cpus-parameter.yaml + - porting-guide.yml + - postgresol_privs-fix-status-sorting.yaml + - proxmox-6-version-detection.yaml + - remove-2.9-deprecations.yml + - solaris_zone_name_fix.yml + - syslogger-disable-check-mode.yaml + - xml-deprecated-functions.yml + - zabbix-hostmacro.yml + - zabbix_user-mediatype-error.yml + modules: + - description: Override a debian package's version of a file + name: dpkg_divert + namespace: system + - description: Manage Hetzner's dedicated server firewall + name: hetzner_firewall + namespace: net_tools + - description: Manage Hetzner's dedicated server firewall + name: hetzner_firewall_info + namespace: net_tools + - description: Creates a resource of Ecs/Instance in Huawei Cloud + name: hwc_ecs_instance + namespace: cloud.huawei + - description: Creates a resource of Evs/Disk in Huawei Cloud + name: hwc_evs_disk + namespace: cloud.huawei + - description: Creates a resource of Vpc/EIP in Huawei Cloud + name: hwc_vpc_eip + namespace: cloud.huawei + - description: Creates a resource of Vpc/PeeringConnect in Huawei Cloud + name: hwc_vpc_peering_connect + namespace: cloud.huawei + - description: Creates a resource of Vpc/Port in Huawei Cloud + name: hwc_vpc_port + namespace: cloud.huawei + - description: Creates a resource of Vpc/PrivateIP in Huawei Cloud + name: hwc_vpc_private_ip + namespace: cloud.huawei + - description: Creates a resource of Vpc/Route in Huawei Cloud + name: hwc_vpc_route + namespace: cloud.huawei + - description: Creates a resource of Vpc/SecurityGroup in Huawei Cloud + name: hwc_vpc_security_group + namespace: cloud.huawei + - description: Creates a resource of Vpc/SecurityGroupRule in Huawei Cloud + name: hwc_vpc_security_group_rule + namespace: cloud.huawei + - description: Creates a resource of Vpc/Subnet in Huawei Cloud + name: hwc_vpc_subnet + namespace: cloud.huawei + - description: Manage DNS Records for Ericsson IPWorks via ipwcli + name: ipwcli_dns + namespace: net_tools + - description: Generate ISO file with specified files or folders + name: iso_create + namespace: files + - description: Local Backup Utility for Alpine Linux + name: lbu + namespace: system + - description: Add or remove multiple LDAP attribute values + name: ldap_attrs + namespace: net_tools.ldap + - description: Search for entries in a LDAP server + name: ldap_search + namespace: net_tools.ldap + - description: Manage Mac App Store applications with mas-cli + name: mas + namespace: packaging.os + - description: Run MySQL queries + name: mysql_query + namespace: database.mysql + - description: Manage OVH monthly billing + name: ovh_monthly_billing + namespace: cloud.ovh + - description: Assign IP subnet to a bare metal server. + name: packet_ip_subnet + namespace: cloud.packet + - description: Create/delete a project in Packet host. + name: packet_project + namespace: cloud.packet + - description: Create/delete a volume in Packet host. + name: packet_volume + namespace: cloud.packet + - description: Attach/detach a volume to a device in the Packet host. + name: packet_volume_attachment + namespace: cloud.packet + - description: Add, update, or remove PostgreSQL subscription + name: postgresql_subscription + namespace: database.postgresql + - description: Gather statistics about PostgreSQL user objects + name: postgresql_user_obj_stat_info + namespace: database.postgresql + - description: Gather information about Redis servers + name: redis_info + namespace: database.misc + plugins: + callback: + - description: Customize the output + name: diy + namespace: null + lookup: + - description: Get key values from etcd3 server + name: etcd3 + namespace: null + - description: fetch data from LMDB + name: lmdb_kv + namespace: null + release_date: '2020-06-20' diff --git a/changelogs/config.yaml b/changelogs/config.yaml index f9083f40bc..237737b9a1 100644 --- a/changelogs/config.yaml +++ b/changelogs/config.yaml @@ -1,4 +1,4 @@ -changelog_filename_template: CHANGELOG.rst +changelog_filename_template: ../CHANGELOG.rst changelog_filename_version_depth: 0 changes_file: changelog.yaml changes_format: combined diff --git a/changelogs/fragments/100-postgresql_user_scram_sha_256_support.yml b/changelogs/fragments/100-postgresql_user_scram_sha_256_support.yml deleted file mode 100644 index 657e90b148..0000000000 --- a/changelogs/fragments/100-postgresql_user_scram_sha_256_support.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_user - add scram-sha-256 support (https://github.com/ansible/ansible/issues/49878). diff --git a/changelogs/fragments/114-puppet-commandline-construction.yml b/changelogs/fragments/114-puppet-commandline-construction.yml deleted file mode 100644 index 2c48170a59..0000000000 --- a/changelogs/fragments/114-puppet-commandline-construction.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "puppet - fix command line construction for check mode and ``manifest:``" diff --git a/changelogs/fragments/115-deprecated-helm-module.yaml b/changelogs/fragments/115-deprecated-helm-module.yaml deleted file mode 100644 index 3de185ca78..0000000000 --- a/changelogs/fragments/115-deprecated-helm-module.yaml +++ /dev/null @@ -1,2 +0,0 @@ -deprecated_features: - - "helm - Put ``helm`` module to deprecated. New implementation is available in community.kubernetes collection." diff --git a/changelogs/fragments/116-postgresql_user_add_trust_input_parameter.yml b/changelogs/fragments/116-postgresql_user_add_trust_input_parameter.yml deleted file mode 100644 index e4166232f7..0000000000 --- a/changelogs/fragments/116-postgresql_user_add_trust_input_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_user - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/116). diff --git a/changelogs/fragments/123-slack-add_bot_token_support_thread_id.yml b/changelogs/fragments/123-slack-add_bot_token_support_thread_id.yml deleted file mode 100644 index 0eb694cd5e..0000000000 --- a/changelogs/fragments/123-slack-add_bot_token_support_thread_id.yml +++ /dev/null @@ -1,6 +0,0 @@ -bugfixes: -- "slack - Fix ``thread_id`` data type" - -minor_changes: -- "slack - Add support for user/bot/application tokens (using Slack WebAPI)" -- "slack - Return ``thread_id`` with thread timestamp when user/bot/application tokens are used" diff --git a/changelogs/fragments/124-airbrake_deployments-api_v4_for_deploy_notices.yml b/changelogs/fragments/124-airbrake_deployments-api_v4_for_deploy_notices.yml deleted file mode 100644 index 24965b9b1c..0000000000 --- a/changelogs/fragments/124-airbrake_deployments-api_v4_for_deploy_notices.yml +++ /dev/null @@ -1,8 +0,0 @@ -bugfixes: -- "airbrake_deployment - Allow deploy notifications for Airbrake compatible v2 api (e.g. Errbit)" - -minor_changes: -- "airbrake_deployment - Allow passing ``project_id`` and ``project_key`` for v4 api deploy compatibility" - -deprecated_features: -- "airbrake_deployment - Add deprecation notice for ``token`` parameter and v2 api deploys. This feature will be removed in community.general 3.0.0." # was Ansible 2.14 diff --git a/changelogs/fragments/142-mysql_user_add_resource_limit_parameter.yml b/changelogs/fragments/142-mysql_user_add_resource_limit_parameter.yml deleted file mode 100644 index bc742ab08c..0000000000 --- a/changelogs/fragments/142-mysql_user_add_resource_limit_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_user - add the resource_limits parameter (https://github.com/ansible-collections/community.general/issues/133). diff --git a/changelogs/fragments/151-mysql_db_add_use_shell_parameter.yml b/changelogs/fragments/151-mysql_db_add_use_shell_parameter.yml deleted file mode 100644 index 8846b0ef9e..0000000000 --- a/changelogs/fragments/151-mysql_db_add_use_shell_parameter.yml +++ /dev/null @@ -1,5 +0,0 @@ -minor_changes: -- mysql_db - add the ``use_shell`` parameter (https://github.com/ansible/ansible/issues/20196). - -bugfixes: -- mysql_db - fix Broken pipe error appearance when state is import and the target file is compressed (https://github.com/ansible/ansible/issues/20196). diff --git a/changelogs/fragments/153-yarn_fix_checkmode-ec61975fc65df7f0.yaml b/changelogs/fragments/153-yarn_fix_checkmode-ec61975fc65df7f0.yaml deleted file mode 100644 index 6544cf5763..0000000000 --- a/changelogs/fragments/153-yarn_fix_checkmode-ec61975fc65df7f0.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: -- yarn - Return correct values when running yarn in check mode (https://github.com/ansible-collections/community.general/pull/153). diff --git a/changelogs/fragments/158-postgresql_membership_add_trust_input_parameter.yml b/changelogs/fragments/158-postgresql_membership_add_trust_input_parameter.yml deleted file mode 100644 index 8104d2ce6f..0000000000 --- a/changelogs/fragments/158-postgresql_membership_add_trust_input_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_membership - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/158). diff --git a/changelogs/fragments/17-postgres_user-no_password_changes-no_log.yml b/changelogs/fragments/17-postgres_user-no_password_changes-no_log.yml deleted file mode 100644 index dffbedfc67..0000000000 --- a/changelogs/fragments/17-postgres_user-no_password_changes-no_log.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "postgres_user - Remove false positive ``no_log`` warning for ``no_password_changes`` option" diff --git a/changelogs/fragments/177-postgresql_privs_add_trust_input_parameter.yml b/changelogs/fragments/177-postgresql_privs_add_trust_input_parameter.yml deleted file mode 100644 index be0e5e75f0..0000000000 --- a/changelogs/fragments/177-postgresql_privs_add_trust_input_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_privs - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/177). diff --git a/changelogs/fragments/178-postgresql_membership_remove_unused_import.yml b/changelogs/fragments/178-postgresql_membership_remove_unused_import.yml deleted file mode 100644 index 23c49313b2..0000000000 --- a/changelogs/fragments/178-postgresql_membership_remove_unused_import.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgresql_membership - remove unused import of exec_sql function (https://github.com/ansible-collections/community.general/pull/178). diff --git a/changelogs/fragments/18-mysql_user-update_password-no_log.yml b/changelogs/fragments/18-mysql_user-update_password-no_log.yml deleted file mode 100644 index 620542c0e3..0000000000 --- a/changelogs/fragments/18-mysql_user-update_password-no_log.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "mysql_user - Remove false positive ``no_log`` warning for ``update_password`` option" diff --git a/changelogs/fragments/183-parted_check_mode.yml b/changelogs/fragments/183-parted_check_mode.yml deleted file mode 100644 index e6f8b5c077..0000000000 --- a/changelogs/fragments/183-parted_check_mode.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - parted - consider current partition state even in check mode (https://github.com/ansible-collections/community.general/issues/183). diff --git a/changelogs/fragments/184-postgresql_db_add_trust_input_parameter.yml b/changelogs/fragments/184-postgresql_db_add_trust_input_parameter.yml deleted file mode 100644 index 69fa744a72..0000000000 --- a/changelogs/fragments/184-postgresql_db_add_trust_input_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_db - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/issues/106). diff --git a/changelogs/fragments/186-maven_artifact.yml b/changelogs/fragments/186-maven_artifact.yml deleted file mode 100644 index 17b84bc6c5..0000000000 --- a/changelogs/fragments/186-maven_artifact.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- Convert MD5SUM to lowercase before comparison in maven_artifact module (https://github.com/ansible-collections/community.general/issues/186). diff --git a/changelogs/fragments/19-passwordstore-equal-sign.yml b/changelogs/fragments/19-passwordstore-equal-sign.yml deleted file mode 100644 index 599bce2763..0000000000 --- a/changelogs/fragments/19-passwordstore-equal-sign.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "passwordstore lookup - Honor equal sign in userpass" diff --git a/changelogs/fragments/198-postgresql_owner_add_trust_input_parameter.yml b/changelogs/fragments/198-postgresql_owner_add_trust_input_parameter.yml deleted file mode 100644 index 8b7b385b30..0000000000 --- a/changelogs/fragments/198-postgresql_owner_add_trust_input_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_owner - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/198). diff --git a/changelogs/fragments/212-make-path-option.yml b/changelogs/fragments/212-make-path-option.yml deleted file mode 100644 index 42b89593d6..0000000000 --- a/changelogs/fragments/212-make-path-option.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "Add a make option to the make module to be able to choose a specific make executable" diff --git a/changelogs/fragments/22-jira.yaml b/changelogs/fragments/22-jira.yaml deleted file mode 100644 index 6ddba761c5..0000000000 --- a/changelogs/fragments/22-jira.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -minor_changes: -- jira - added search function with support for Jira JQL (https://github.com/ansible-collections/community.general/pull/22). -- jira - added update function which can update Jira Selects etc (https://github.com/ansible-collections/community.general/pull/22). - -bugfixes: -- jira - printing full error message from jira server (https://github.com/ansible-collections/community.general/pull/22). -- jira - transition issue not working (https://github.com/ansible-collections/community.general/issues/109). diff --git a/changelogs/fragments/221-parted-fs_type-parameter.yml b/changelogs/fragments/221-parted-fs_type-parameter.yml deleted file mode 100644 index df75b04b83..0000000000 --- a/changelogs/fragments/221-parted-fs_type-parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- parted - add the ``fs_type`` parameter (https://github.com/ansible-collections/community.general/issues/135). diff --git a/changelogs/fragments/223-manageiq_provider-fix-serialization.yml b/changelogs/fragments/223-manageiq_provider-fix-serialization.yml deleted file mode 100644 index ba77c78924..0000000000 --- a/changelogs/fragments/223-manageiq_provider-fix-serialization.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- manageiq_provider - fix serialization error when running on python3 environment. diff --git a/changelogs/fragments/225-mysql_user_fix_no_database_selected.yml b/changelogs/fragments/225-mysql_user_fix_no_database_selected.yml deleted file mode 100644 index 1deda3ed5d..0000000000 --- a/changelogs/fragments/225-mysql_user_fix_no_database_selected.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_user - fix the error No database selected (https://github.com/ansible/ansible/issues/68070). diff --git a/changelogs/fragments/227-sesu-use-defined-prompt.yaml b/changelogs/fragments/227-sesu-use-defined-prompt.yaml deleted file mode 100644 index 8901852380..0000000000 --- a/changelogs/fragments/227-sesu-use-defined-prompt.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - sesu - make use of the prompt specified in the code diff --git a/changelogs/fragments/23-hashi-vault-lookup-refresh.yaml b/changelogs/fragments/23-hashi-vault-lookup-refresh.yaml deleted file mode 100644 index 353d36bd19..0000000000 --- a/changelogs/fragments/23-hashi-vault-lookup-refresh.yaml +++ /dev/null @@ -1,13 +0,0 @@ -bugfixes: - - hashi_vault - when a non-token authentication method like ldap or userpass failed, but a valid token was loaded anyway (via env or token file), the token was used to attempt authentication, hiding the failure of the requested auth method. - - hashi_vault - if used via ``with_hashi_vault`` and a list of n secrets to retrieve, only the first one would be retrieved and returned n times. - - hashi_vault - error messages are now user friendly and don't contain the secret name ( https://github.com/ansible-collections/community.general/issues/54 ) -minor_changes: - - hashi_vault - ``secret`` can now be an unnamed argument if it's specified first in the term string (see examples). - - hashi_vault - previously all options had to be supplied via key=value pairs in the term string; now a mix of string and parameters can be specified (see examples). - - hashi_vault - new option ``return_format`` added to control how secrets are returned, including options for multiple secrets and returning raw values with metadata. - - hashi_vault - ``token`` is now an explicit option (and the default) in the choices for ``auth_method``. This matches previous behavior (``auth_method`` omitted resulted in token auth) but makes the value clearer and allows it to be explicitly specified. - - hashi_vault - previous (undocumented) behavior was to attempt to read token from ``~/.vault-token`` if not specified. This is now controlled through ``token_path`` and ``token_file`` options (defaults will mimic previous behavior). - - hashi_vault - INI and additional ENV sources made available for some new and old options. - - hashi_vault - uses newer authentication calls in the HVAC library and falls back to older ones with deprecation warnings. - - hashi_vault - AWS IAM auth method added. Accepts standard ansible AWS params and only loads AWS libraries when needed. diff --git a/changelogs/fragments/24-homebrew-upgrade_options.yml b/changelogs/fragments/24-homebrew-upgrade_options.yml deleted file mode 100644 index b9d9ccb193..0000000000 --- a/changelogs/fragments/24-homebrew-upgrade_options.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- "homebrew - New option ``upgrade_options`` allows to pass flags to upgrade" diff --git a/changelogs/fragments/240-postgresql_tablespace_add_trust_input_parameter.yml b/changelogs/fragments/240-postgresql_tablespace_add_trust_input_parameter.yml deleted file mode 100644 index 605430ea62..0000000000 --- a/changelogs/fragments/240-postgresql_tablespace_add_trust_input_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_tablespace - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/240). diff --git a/changelogs/fragments/241-fix-ipa-modules-when-ipa_host-empty.yml b/changelogs/fragments/241-fix-ipa-modules-when-ipa_host-empty.yml deleted file mode 100644 index 94e8f975fb..0000000000 --- a/changelogs/fragments/241-fix-ipa-modules-when-ipa_host-empty.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - ipa modules - fix error when IPA_HOST is empty and fallback on DNS (https://github.com/ansible-collections/community.general/pull/241) diff --git a/changelogs/fragments/243-cloudflare_dns_fix_keyerror.yml b/changelogs/fragments/243-cloudflare_dns_fix_keyerror.yml deleted file mode 100644 index ce0baf17ca..0000000000 --- a/changelogs/fragments/243-cloudflare_dns_fix_keyerror.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - cloudflare_dns - fix KeyError 'success' (https://github.com/ansible-collections/community.general/issues/236). diff --git a/changelogs/fragments/245-proxmox.yml b/changelogs/fragments/245-proxmox.yml deleted file mode 100644 index 3d14b28fb7..0000000000 --- a/changelogs/fragments/245-proxmox.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - proxmox - add the ``description`` and ``hookscript`` parameter (https://github.com/ansible-collections/community.general/pull/245). diff --git a/changelogs/fragments/259-postgresql_schema_add_trust_input_parameter.yml b/changelogs/fragments/259-postgresql_schema_add_trust_input_parameter.yml deleted file mode 100644 index 347bb72607..0000000000 --- a/changelogs/fragments/259-postgresql_schema_add_trust_input_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_schema - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/259). diff --git a/changelogs/fragments/26-influxdb_user-admin-check-mode.yml b/changelogs/fragments/26-influxdb_user-admin-check-mode.yml deleted file mode 100644 index cc1759618b..0000000000 --- a/changelogs/fragments/26-influxdb_user-admin-check-mode.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "influxdb_user - Don't grant admin privilege in check mode" diff --git a/changelogs/fragments/264-postgresql_idx_add_trust_input_parameter.yml b/changelogs/fragments/264-postgresql_idx_add_trust_input_parameter.yml deleted file mode 100644 index 0b056831b6..0000000000 --- a/changelogs/fragments/264-postgresql_idx_add_trust_input_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_idx - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/264). diff --git a/changelogs/fragments/269-flatpak-command-list.yaml b/changelogs/fragments/269-flatpak-command-list.yaml deleted file mode 100644 index 5ff5ae3567..0000000000 --- a/changelogs/fragments/269-flatpak-command-list.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- flatpak and flatpak_remote - fix command line construction to build commands as lists instead of strings. diff --git a/changelogs/fragments/272-postgresql_lang_add_trust_input_parameter.yml b/changelogs/fragments/272-postgresql_lang_add_trust_input_parameter.yml deleted file mode 100644 index 4f40ebf198..0000000000 --- a/changelogs/fragments/272-postgresql_lang_add_trust_input_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_lang - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/272). diff --git a/changelogs/fragments/274-flatpak-run-command.yaml b/changelogs/fragments/274-flatpak-run-command.yaml deleted file mode 100644 index 1ab4b9ae44..0000000000 --- a/changelogs/fragments/274-flatpak-run-command.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- flatpak and flatpak_remote - use ``module.run_command()`` instead of ``subprocess.Popen()``. diff --git a/changelogs/fragments/276-java_keystore-private_key_passphrase.yaml b/changelogs/fragments/276-java_keystore-private_key_passphrase.yaml deleted file mode 100644 index b15cf7a070..0000000000 --- a/changelogs/fragments/276-java_keystore-private_key_passphrase.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - java_keystore - add the private_key_passphrase parameter (https://github.com/ansible-collections/community.general/pull/276). diff --git a/changelogs/fragments/277-datadog_monitor-adds-missing-log-alert-type.yml b/changelogs/fragments/277-datadog_monitor-adds-missing-log-alert-type.yml deleted file mode 100644 index d385565d37..0000000000 --- a/changelogs/fragments/277-datadog_monitor-adds-missing-log-alert-type.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - datadog_monitor - added missing ``log alert`` type to ``type`` choices (https://github.com/ansible-collections/community.general/issues/251). diff --git a/changelogs/fragments/278-zfs_delegate_admin_add_diff_hold_release.yml b/changelogs/fragments/278-zfs_delegate_admin_add_diff_hold_release.yml deleted file mode 100644 index c17db470af..0000000000 --- a/changelogs/fragments/278-zfs_delegate_admin_add_diff_hold_release.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - zfs_delegate_admin - add missing choices diff/hold/release to the permissions parameter (https://github.com/ansible-collections/community.general/pull/278) diff --git a/changelogs/fragments/279-postgresql_publication_add_trust_input_session_role.yml b/changelogs/fragments/279-postgresql_publication_add_trust_input_session_role.yml deleted file mode 100644 index e9b5468794..0000000000 --- a/changelogs/fragments/279-postgresql_publication_add_trust_input_session_role.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: -- postgresql_publication - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/279). -- postgresql_publication - add the ``session_role`` parameter (https://github.com/ansible-collections/community.general/pull/279). diff --git a/changelogs/fragments/280-postgresql_subscription_add_trust_input_session_role.yml b/changelogs/fragments/280-postgresql_subscription_add_trust_input_session_role.yml deleted file mode 100644 index 6ac5161966..0000000000 --- a/changelogs/fragments/280-postgresql_subscription_add_trust_input_session_role.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: -- postgresql_subscription - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/280). -- postgresql_subscription - add the ``session_role`` parameter (https://github.com/ansible-collections/community.general/pull/280). diff --git a/changelogs/fragments/282-postgresql_ext_add_trust_input.yml b/changelogs/fragments/282-postgresql_ext_add_trust_input.yml deleted file mode 100644 index d4b383c1e1..0000000000 --- a/changelogs/fragments/282-postgresql_ext_add_trust_input.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: -- postgresql_ext - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/282). diff --git a/changelogs/fragments/285-mysql_user_invoke_lambda_support.yml b/changelogs/fragments/285-mysql_user_invoke_lambda_support.yml deleted file mode 100644 index 2daca4fbd4..0000000000 --- a/changelogs/fragments/285-mysql_user_invoke_lambda_support.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_user - add ``INVOKE LAMBDA`` privilege support (https://github.com/ansible-collections/community.general/issues/283). diff --git a/changelogs/fragments/291-postgresql_refactor_modules.yml b/changelogs/fragments/291-postgresql_refactor_modules.yml deleted file mode 100644 index 3b90139a68..0000000000 --- a/changelogs/fragments/291-postgresql_refactor_modules.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -minor_changes: - - postgresql_ext - refactor to simplify and remove dead code (https://github.com/ansible-collections/community.general/pull/291) - - postgresql_idx - refactor to simplify code (https://github.com/ansible-collections/community.general/pull/291) - - postgresql_user_obj_stat_info - refactor to simplify code (https://github.com/ansible-collections/community.general/pull/291) diff --git a/changelogs/fragments/29253-pear_add_prompts_parameter.yml b/changelogs/fragments/29253-pear_add_prompts_parameter.yml deleted file mode 100644 index 7a381ceb1c..0000000000 --- a/changelogs/fragments/29253-pear_add_prompts_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- pear - added ``prompts`` parameter to allow users to specify expected prompt that could hang Ansible execution (https://github.com/ansible-collections/community.general/pull/530). diff --git a/changelogs/fragments/294-postgresql_query_add_trust_input_parameter.yml b/changelogs/fragments/294-postgresql_query_add_trust_input_parameter.yml deleted file mode 100644 index 9beddbc960..0000000000 --- a/changelogs/fragments/294-postgresql_query_add_trust_input_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_query - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/294). diff --git a/changelogs/fragments/295-postgresql_sequence_add_trust_input.yml b/changelogs/fragments/295-postgresql_sequence_add_trust_input.yml deleted file mode 100644 index a18cf1240d..0000000000 --- a/changelogs/fragments/295-postgresql_sequence_add_trust_input.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - postgresql_sequence - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/295). diff --git a/changelogs/fragments/298-postgresql_slot_add_trust_input.yml b/changelogs/fragments/298-postgresql_slot_add_trust_input.yml deleted file mode 100644 index fb2cbece34..0000000000 --- a/changelogs/fragments/298-postgresql_slot_add_trust_input.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - postgresql_slot - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/298). diff --git a/changelogs/fragments/302-postgresql_set_add_trust_input_parameter.yml b/changelogs/fragments/302-postgresql_set_add_trust_input_parameter.yml deleted file mode 100644 index 4eb1ec9a94..0000000000 --- a/changelogs/fragments/302-postgresql_set_add_trust_input_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_set - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/302). diff --git a/changelogs/fragments/306-ansible-2.9-compatibility.yml b/changelogs/fragments/306-ansible-2.9-compatibility.yml deleted file mode 100644 index 47fac89465..0000000000 --- a/changelogs/fragments/306-ansible-2.9-compatibility.yml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: -- "archive - make module compatible with older Ansible versions (https://github.com/ansible-collections/community.general/pull/306)." -- "maven_artifact - make module compatible with older Ansible versions (https://github.com/ansible-collections/community.general/pull/306)." -- "java_keystore - make module compatible with older Ansible versions (https://github.com/ansible-collections/community.general/pull/306)." diff --git a/changelogs/fragments/307-postgresql_table_add_trust_input_parameter.yml b/changelogs/fragments/307-postgresql_table_add_trust_input_parameter.yml deleted file mode 100644 index 3f105d95ba..0000000000 --- a/changelogs/fragments/307-postgresql_table_add_trust_input_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_table - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/307). diff --git a/changelogs/fragments/308-postgresql_info_add_trust_input_parameter.yml b/changelogs/fragments/308-postgresql_info_add_trust_input_parameter.yml deleted file mode 100644 index 1326ba627e..0000000000 --- a/changelogs/fragments/308-postgresql_info_add_trust_input_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_info - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/308). diff --git a/changelogs/fragments/310-postgresql_user_obj_stat_info_add_trust_input.yml b/changelogs/fragments/310-postgresql_user_obj_stat_info_add_trust_input.yml deleted file mode 100644 index 606bcb28ad..0000000000 --- a/changelogs/fragments/310-postgresql_user_obj_stat_info_add_trust_input.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - postgresql_user_obj_stat_info - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/310). diff --git a/changelogs/fragments/312-postgresql_ping_add_trust_input_session_role.yml b/changelogs/fragments/312-postgresql_ping_add_trust_input_session_role.yml deleted file mode 100644 index f82c2e9a18..0000000000 --- a/changelogs/fragments/312-postgresql_ping_add_trust_input_session_role.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: -- postgresql_ping - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/312). -- postgresql_ping - add the ``session_role`` parameter (https://github.com/ansible-collections/community.general/pull/312). diff --git a/changelogs/fragments/313-postgresql_copy_add_trust_input_session_role.yml b/changelogs/fragments/313-postgresql_copy_add_trust_input_session_role.yml deleted file mode 100644 index 5637944bae..0000000000 --- a/changelogs/fragments/313-postgresql_copy_add_trust_input_session_role.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_copy - add the ``trust_input`` parameter (https://github.com/ansible-collections/community.general/pull/313). diff --git a/changelogs/fragments/318-linode-inventory-access_token-fix.yaml b/changelogs/fragments/318-linode-inventory-access_token-fix.yaml deleted file mode 100644 index 18af2433d5..0000000000 --- a/changelogs/fragments/318-linode-inventory-access_token-fix.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - linode inventory plugin - fix parsing of access_token (https://github.com/ansible/ansible/issues/66874) diff --git a/changelogs/fragments/319-syslogger.yml b/changelogs/fragments/319-syslogger.yml deleted file mode 100644 index c41c43ba8b..0000000000 --- a/changelogs/fragments/319-syslogger.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- syslogger - added new parameter ident to specify the name of application which is sending the message to syslog (https://github.com/ansible-collections/community.general/issues/319). diff --git a/changelogs/fragments/326-pacman_improve_package_state_detection_speed.yml b/changelogs/fragments/326-pacman_improve_package_state_detection_speed.yml deleted file mode 100644 index 43eb03f0dd..0000000000 --- a/changelogs/fragments/326-pacman_improve_package_state_detection_speed.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- "pacman - Improve package state detection speed: Don't query for full details of a package." diff --git a/changelogs/fragments/34696-homebrew_cask.yml b/changelogs/fragments/34696-homebrew_cask.yml deleted file mode 100644 index f15495ebed..0000000000 --- a/changelogs/fragments/34696-homebrew_cask.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- Follow up changes in homebrew_cask (https://github.com/ansible/ansible/issues/34696). diff --git a/changelogs/fragments/36-homebrew-elements.yml b/changelogs/fragments/36-homebrew-elements.yml deleted file mode 100644 index b2baeaac5c..0000000000 --- a/changelogs/fragments/36-homebrew-elements.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- "homebrew - ``install_options`` is now validated to be a list of strings." diff --git a/changelogs/fragments/36876-github-deploy-key-fix-pagination.yaml b/changelogs/fragments/36876-github-deploy-key-fix-pagination.yaml deleted file mode 100644 index 8879a5d86b..0000000000 --- a/changelogs/fragments/36876-github-deploy-key-fix-pagination.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - "github_deploy_key - added support for pagination" diff --git a/changelogs/fragments/37-homebrew_tap-elements.yml b/changelogs/fragments/37-homebrew_tap-elements.yml deleted file mode 100644 index 6eaa204638..0000000000 --- a/changelogs/fragments/37-homebrew_tap-elements.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- "homebrew_tap - ``name`` is now validated to be a list of strings." diff --git a/changelogs/fragments/372-gcp_storage_file-gracefully.yml b/changelogs/fragments/372-gcp_storage_file-gracefully.yml deleted file mode 100644 index 0ad49cd79f..0000000000 --- a/changelogs/fragments/372-gcp_storage_file-gracefully.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "gcp_storage_file lookup - die gracefully when the ``google.cloud`` collection is not installed, or changed in an incompatible way." diff --git a/changelogs/fragments/382-install_upgrade_specific_args.yaml b/changelogs/fragments/382-install_upgrade_specific_args.yaml deleted file mode 100644 index 19af198ada..0000000000 --- a/changelogs/fragments/382-install_upgrade_specific_args.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - zypper - Added ``allow_vendor_change`` and ``replacefiles`` zypper options (https://github.com/ansible-collections/community.general/issues/381) diff --git a/changelogs/fragments/389-datadog_monitor-corrects-deprecated-message-param.yml b/changelogs/fragments/389-datadog_monitor-corrects-deprecated-message-param.yml deleted file mode 100644 index db8c6e2448..0000000000 --- a/changelogs/fragments/389-datadog_monitor-corrects-deprecated-message-param.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - datadog_monitor - Corrects ``_update_monitor`` to use ``notification_message`` insteade of deprecated ``message`` (https://github.com/ansible-collections/community.general/pull/389). diff --git a/changelogs/fragments/394-terraform-add-config_file.yml b/changelogs/fragments/394-terraform-add-config_file.yml deleted file mode 100644 index 4ac16450e2..0000000000 --- a/changelogs/fragments/394-terraform-add-config_file.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: -- terraform - Adds option ``variables_files`` for multiple var-files (https://github.com/ansible-collections/community.general/issues/224). -- terraform - Adds option ``backend_config_files``. This can accept a list of paths to multiple configuration files (https://github.com/ansible-collections/community.general/pull/394). diff --git a/changelogs/fragments/405-parted_align_undefined.yml b/changelogs/fragments/405-parted_align_undefined.yml deleted file mode 100644 index 28398cc97f..0000000000 --- a/changelogs/fragments/405-parted_align_undefined.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "parted - added 'undefined' align option to support parted versions < 2.1 (https://github.com/ansible-collections/community.general/pull/405)." diff --git a/changelogs/fragments/407-syslogjson-callback-exception.yml b/changelogs/fragments/407-syslogjson-callback-exception.yml deleted file mode 100644 index 048da5f476..0000000000 --- a/changelogs/fragments/407-syslogjson-callback-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - syslog_json callback - fix plugin exception when running (https://github.com/ansible-collections/community.general/issues/407). diff --git a/changelogs/fragments/410-redis_cache-add_tls_support.yaml b/changelogs/fragments/410-redis_cache-add_tls_support.yaml deleted file mode 100644 index b00fc786de..0000000000 --- a/changelogs/fragments/410-redis_cache-add_tls_support.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - redis - add TLS support to redis cache plugin (https://github.com/ansible-collections/community.general/pull/410). diff --git a/changelogs/fragments/412-docker-machine-add-ip-fallback.yaml b/changelogs/fragments/412-docker-machine-add-ip-fallback.yaml deleted file mode 100644 index b8ea16d158..0000000000 --- a/changelogs/fragments/412-docker-machine-add-ip-fallback.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - docker_machine - fallback to ip subcommand output if IPAddress is missing (https://github.com/ansible-collections/community.general/issues/412). \ No newline at end of file diff --git a/changelogs/fragments/418-add-tags-parameter-to-packet-device.yaml b/changelogs/fragments/418-add-tags-parameter-to-packet-device.yaml deleted file mode 100644 index 58857c3ee7..0000000000 --- a/changelogs/fragments/418-add-tags-parameter-to-packet-device.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- packet_device - add ``tags`` parameter on device creation (https://github.com/ansible-collections/community.general/pull/418) \ No newline at end of file diff --git a/changelogs/fragments/428-mysql_db_add_unsafe_login_password_param.yml b/changelogs/fragments/428-mysql_db_add_unsafe_login_password_param.yml deleted file mode 100644 index 887e061d2f..0000000000 --- a/changelogs/fragments/428-mysql_db_add_unsafe_login_password_param.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_db - add the ``unsafe_login_password`` parameter (https://github.com/ansible/ansible/issues/63955). diff --git a/changelogs/fragments/442-add-new-parameter-pvresize.yaml b/changelogs/fragments/442-add-new-parameter-pvresize.yaml deleted file mode 100644 index b41ff48c48..0000000000 --- a/changelogs/fragments/442-add-new-parameter-pvresize.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - lvg - add ``pvresize`` new parameter (https://github.com/ansible/ansible/issues/29139). diff --git a/changelogs/fragments/444-scaleway-improve_removal_handling.yml b/changelogs/fragments/444-scaleway-improve_removal_handling.yml deleted file mode 100644 index 34ae3f6fd8..0000000000 --- a/changelogs/fragments/444-scaleway-improve_removal_handling.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - scaleway_compute - fix transition handling that could cause errors when removing a node (https://github.com/ansible-collections/community.general/pull/444). diff --git a/changelogs/fragments/444-scaleway_fix_http_header_casing.yml b/changelogs/fragments/444-scaleway_fix_http_header_casing.yml deleted file mode 100644 index a261afbfb8..0000000000 --- a/changelogs/fragments/444-scaleway_fix_http_header_casing.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - scaleway - Fix bug causing KeyError exception on JSON http requests. (https://github.com/ansible-collections/community.general/pull/444) diff --git a/changelogs/fragments/450-slackpkg-package-matching.yml b/changelogs/fragments/450-slackpkg-package-matching.yml deleted file mode 100644 index e81115d121..0000000000 --- a/changelogs/fragments/450-slackpkg-package-matching.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - slackpkg - fix name matching in package installation (https://github.com/ansible-collections/community.general/issues/450). diff --git a/changelogs/fragments/457-cisco_webex_spark-rename.yml b/changelogs/fragments/457-cisco_webex_spark-rename.yml deleted file mode 100644 index b656d0113b..0000000000 --- a/changelogs/fragments/457-cisco_webex_spark-rename.yml +++ /dev/null @@ -1,4 +0,0 @@ -minor_changes: - - "cisco_spark - the module has been renamed to ``cisco_webex`` (https://github.com/ansible-collections/community.general/pull/457)." -breaking_changes: - - "cisco_spark - the module option ``message`` was renamed to ``msg``, as ``message`` is used internally in Ansible Core engine (https://github.com/ansible/ansible/issues/39295)" diff --git a/changelogs/fragments/458-rshm_repository-reduce_execution_time_when_changed_is_false.yml b/changelogs/fragments/458-rshm_repository-reduce_execution_time_when_changed_is_false.yml deleted file mode 100644 index 3cfd53f503..0000000000 --- a/changelogs/fragments/458-rshm_repository-reduce_execution_time_when_changed_is_false.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: - - rshm_repository - reduce execution time when changed is False - (https://github.com/ansible-collections/community.general/pull/458). diff --git a/changelogs/fragments/461-resolve-domain-for-iscsi-portal.yml b/changelogs/fragments/461-resolve-domain-for-iscsi-portal.yml deleted file mode 100644 index 071501ce82..0000000000 --- a/changelogs/fragments/461-resolve-domain-for-iscsi-portal.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- open_iscsi - allow ``portal`` parameter to be a domain name by resolving the portal ip address beforehand (https://github.com/ansible-collections/community.general/pull/461). diff --git a/changelogs/fragments/468-mysql_db_add_restrict_config_file_param.yml b/changelogs/fragments/468-mysql_db_add_restrict_config_file_param.yml deleted file mode 100644 index 9e2c16c4d2..0000000000 --- a/changelogs/fragments/468-mysql_db_add_restrict_config_file_param.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_db - add the ``restrict_config_file`` parameter (https://github.com/ansible/ansible/issues/34488). diff --git a/changelogs/fragments/475-digital_ocean_droplet-add-vpcuuid.yaml b/changelogs/fragments/475-digital_ocean_droplet-add-vpcuuid.yaml deleted file mode 100644 index 397881bd7d..0000000000 --- a/changelogs/fragments/475-digital_ocean_droplet-add-vpcuuid.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - digital_ocean_droplet - add support for new vpc_uuid parameter diff --git a/changelogs/fragments/476-docker_swarm_service_add_init_option.yml b/changelogs/fragments/476-docker_swarm_service_add_init_option.yml deleted file mode 100644 index 44c7339bba..0000000000 --- a/changelogs/fragments/476-docker_swarm_service_add_init_option.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "docker_swarm_service - Added support for ``init`` option." diff --git a/changelogs/fragments/486-mysql_db_add_check_implicit_admin_parameter.yml b/changelogs/fragments/486-mysql_db_add_check_implicit_admin_parameter.yml deleted file mode 100644 index b7bcb7bf7c..0000000000 --- a/changelogs/fragments/486-mysql_db_add_check_implicit_admin_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_db - add the ``check_implicit_admin`` parameter (https://github.com/ansible/ansible/issues/24418). diff --git a/changelogs/fragments/490-mysql_user_fix_cursor_errors.yml b/changelogs/fragments/490-mysql_user_fix_cursor_errors.yml deleted file mode 100644 index 564b8d77b8..0000000000 --- a/changelogs/fragments/490-mysql_user_fix_cursor_errors.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_user - fix ``host_all`` arguments conversion string formatting error (https://github.com/ansible/ansible/issues/29644). diff --git a/changelogs/fragments/494-add-redfish-virtual-media-commands.yml b/changelogs/fragments/494-add-redfish-virtual-media-commands.yml deleted file mode 100644 index 68be43f327..0000000000 --- a/changelogs/fragments/494-add-redfish-virtual-media-commands.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - redfish_command - Support for virtual media insert and eject commands (https://github.com/ansible-collections/community.general/issues/493) diff --git a/changelogs/fragments/505-slackpkg_fix_matching_some_special_cases_in_package_names.yml b/changelogs/fragments/505-slackpkg_fix_matching_some_special_cases_in_package_names.yml deleted file mode 100644 index 778dcea0ef..0000000000 --- a/changelogs/fragments/505-slackpkg_fix_matching_some_special_cases_in_package_names.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - slackpkg - fix matching some special cases in package names (https://github.com/ansible-collections/community.general/pull/505). diff --git a/changelogs/fragments/511-cloudflare_dns-verbose-failure.yml b/changelogs/fragments/511-cloudflare_dns-verbose-failure.yml deleted file mode 100644 index 5c7908a78f..0000000000 --- a/changelogs/fragments/511-cloudflare_dns-verbose-failure.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - cloudflare_dns - Report unexpected failure with more detail (https://github.com/ansible-collections/community.general/pull/511). diff --git a/changelogs/fragments/513-mysql_db_config_overrides_defaults.yml b/changelogs/fragments/513-mysql_db_config_overrides_defaults.yml deleted file mode 100644 index 8a4ec7d5a1..0000000000 --- a/changelogs/fragments/513-mysql_db_config_overrides_defaults.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_db - add the ``config_overrides_defaults`` parameter (https://github.com/ansible/ansible/issues/26919). diff --git a/changelogs/fragments/55658_hashi_vault.yml b/changelogs/fragments/55658_hashi_vault.yml deleted file mode 100644 index 6b0aeb7f10..0000000000 --- a/changelogs/fragments/55658_hashi_vault.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: -- hashi_vault - Handle equal sign in key=value (https://github.com/ansible/ansible/issues/55658). diff --git a/changelogs/fragments/56650-homebrew-update_brew.yml b/changelogs/fragments/56650-homebrew-update_brew.yml deleted file mode 100644 index 01b73b937d..0000000000 --- a/changelogs/fragments/56650-homebrew-update_brew.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- homebrew - Added environment variable to honor update_homebrew setting (https://github.com/ansible/ansible/issues/56650). diff --git a/changelogs/fragments/58115_nmcli.yml b/changelogs/fragments/58115_nmcli.yml deleted file mode 100644 index 40aac2ebdd..0000000000 --- a/changelogs/fragments/58115_nmcli.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- nmcli - typecast parameters to string as required (https://github.com/ansible/ansible/issues/59095). diff --git a/changelogs/fragments/58812-support_absolute_paths_additionally.yml b/changelogs/fragments/58812-support_absolute_paths_additionally.yml deleted file mode 100644 index a26e1b571e..0000000000 --- a/changelogs/fragments/58812-support_absolute_paths_additionally.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - terraform - adding support for absolute paths additionally to the relative path within project_path (https://github.com/ansible/ansible/issues/58578) diff --git a/changelogs/fragments/59376-homebrew_fix.yml b/changelogs/fragments/59376-homebrew_fix.yml deleted file mode 100644 index 04b03e5a97..0000000000 --- a/changelogs/fragments/59376-homebrew_fix.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- Add information about changed packages in homebrew returned facts (https://github.com/ansible/ansible/issues/59376). diff --git a/changelogs/fragments/59522-renamed-module-tls-client-auth-params-to-avoid-overlaping-with-fetch_url.yaml b/changelogs/fragments/59522-renamed-module-tls-client-auth-params-to-avoid-overlaping-with-fetch_url.yaml deleted file mode 100644 index 70d759f27a..0000000000 --- a/changelogs/fragments/59522-renamed-module-tls-client-auth-params-to-avoid-overlaping-with-fetch_url.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - pulp_repo - the ``client_cert`` and ``client_key`` options were used for both requests to the Pulp instance and for the repo to sync with, resulting in errors when they were used. Use the new options ``feed_client_cert`` and ``feed_client_key`` for client certificates that should only be used for repo synchronisation, and not for communication with the Pulp instance. (https://github.com/ansible/ansible/issues/59513) diff --git a/changelogs/fragments/59765-cron-cronvar-use-get-bin-path.yaml b/changelogs/fragments/59765-cron-cronvar-use-get-bin-path.yaml deleted file mode 100644 index 7d05d21e25..0000000000 --- a/changelogs/fragments/59765-cron-cronvar-use-get-bin-path.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - cronvar - use get_bin_path utility to locate the default crontab executable instead of the hardcoded /usr/bin/crontab. (https://github.com/ansible/ansible/pull/59765) diff --git a/changelogs/fragments/59877-fix-keyerror-in-redfish-getlogs.yaml b/changelogs/fragments/59877-fix-keyerror-in-redfish-getlogs.yaml deleted file mode 100644 index 78b026d2b1..0000000000 --- a/changelogs/fragments/59877-fix-keyerror-in-redfish-getlogs.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: -- redfish_facts - fix KeyError exceptions in GetLogs (https://github.com/ansible/ansible/issues/59797) diff --git a/changelogs/fragments/59927-fix-redfish-power-reset-type-mapping.yaml b/changelogs/fragments/59927-fix-redfish-power-reset-type-mapping.yaml deleted file mode 100644 index dd43eb341c..0000000000 --- a/changelogs/fragments/59927-fix-redfish-power-reset-type-mapping.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: -- redfish_command - fix power ResetType mapping logic (https://github.com/ansible/ansible/issues/59804) diff --git a/changelogs/fragments/60201-idrac-redfish-config-attributes-support.yml b/changelogs/fragments/60201-idrac-redfish-config-attributes-support.yml deleted file mode 100644 index 5dfa2c6c39..0000000000 --- a/changelogs/fragments/60201-idrac-redfish-config-attributes-support.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - idrac_redfish_config - Support for multiple manager attributes configuration diff --git a/changelogs/fragments/60961-docker_compose-fix-deprecation-warning.yml b/changelogs/fragments/60961-docker_compose-fix-deprecation-warning.yml deleted file mode 100644 index 7168a8c28d..0000000000 --- a/changelogs/fragments/60961-docker_compose-fix-deprecation-warning.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_compose - fix issue where docker deprecation warning results in ansible erroneously reporting a failure" diff --git a/changelogs/fragments/61562-nagios-start.yaml b/changelogs/fragments/61562-nagios-start.yaml deleted file mode 100644 index c0eed9d2d3..0000000000 --- a/changelogs/fragments/61562-nagios-start.yaml +++ /dev/null @@ -1,5 +0,0 @@ -minor_changes: - - nagios module - a start parameter has been added, allowing the time a - Nagios outage starts to be set. It defaults to the current time if not - provided, preserving the previous behavior and ensuring compatibility with - existing playbooks. diff --git a/changelogs/fragments/61655-fix-digital-ocean-droplet-create.yaml b/changelogs/fragments/61655-fix-digital-ocean-droplet-create.yaml deleted file mode 100644 index d1043be8fe..0000000000 --- a/changelogs/fragments/61655-fix-digital-ocean-droplet-create.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - digital_ocean_droplet - Fix creation of DigitalOcean droplets using digital_ocean_droplet module (https://github.com/ansible/ansible/pull/61655) diff --git a/changelogs/fragments/61740-docker_container-port-range-parsing.yml b/changelogs/fragments/61740-docker_container-port-range-parsing.yml deleted file mode 100644 index 817beec8bf..0000000000 --- a/changelogs/fragments/61740-docker_container-port-range-parsing.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_container - improve error behavior when parsing port ranges fails." diff --git a/changelogs/fragments/61921-gitlab_user.yml b/changelogs/fragments/61921-gitlab_user.yml deleted file mode 100644 index 21b8096345..0000000000 --- a/changelogs/fragments/61921-gitlab_user.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- While deleting gitlab user, name, email and password is no longer required ini gitlab_user module (https://github.com/ansible/ansible/issues/61921). \ No newline at end of file diff --git a/changelogs/fragments/61961-pacman_remove_recurse_option.yaml b/changelogs/fragments/61961-pacman_remove_recurse_option.yaml deleted file mode 100644 index 0f64a8968c..0000000000 --- a/changelogs/fragments/61961-pacman_remove_recurse_option.yaml +++ /dev/null @@ -1,2 +0,0 @@ -removed_features: - - pacman - Removed deprecated ``recurse`` option, use ``extra_args=--recursive`` instead diff --git a/changelogs/fragments/62329-nsupdate-lookup-internal-zones.yaml b/changelogs/fragments/62329-nsupdate-lookup-internal-zones.yaml deleted file mode 100644 index d11aea777b..0000000000 --- a/changelogs/fragments/62329-nsupdate-lookup-internal-zones.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - nsupdate - Fix zone name lookup of internal/private zones (https://github.com/ansible/ansible/issues/62052) diff --git a/changelogs/fragments/62348-yarn-no_version_install_fix.yml b/changelogs/fragments/62348-yarn-no_version_install_fix.yml deleted file mode 100644 index a58bfe6843..0000000000 --- a/changelogs/fragments/62348-yarn-no_version_install_fix.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - yarn - handle no version when installing module by name (https://github.com/ansible/ansible/issues/55097) diff --git a/changelogs/fragments/62617-fix-redfish-enable-account-if-enabled-prop-missing.yaml b/changelogs/fragments/62617-fix-redfish-enable-account-if-enabled-prop-missing.yaml deleted file mode 100644 index d98558fde5..0000000000 --- a/changelogs/fragments/62617-fix-redfish-enable-account-if-enabled-prop-missing.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: -- redfish_command - fix EnableAccount if Enabled property is not present in Account resource (https://github.com/ansible/ansible/issues/59822) diff --git a/changelogs/fragments/62621-docker_login-fix-60381.yaml b/changelogs/fragments/62621-docker_login-fix-60381.yaml deleted file mode 100644 index 4df8d111fd..0000000000 --- a/changelogs/fragments/62621-docker_login-fix-60381.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_login - correct broken fix for https://github.com/ansible/ansible/pull/60381 which crashes for Python 3." diff --git a/changelogs/fragments/62648-mysql_replication_add_master_use_gtid_param.yml b/changelogs/fragments/62648-mysql_replication_add_master_use_gtid_param.yml deleted file mode 100644 index 106cc58258..0000000000 --- a/changelogs/fragments/62648-mysql_replication_add_master_use_gtid_param.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_replication - add ``master_use_gtid`` parameter (https://github.com/ansible/ansible/pull/62648). diff --git a/changelogs/fragments/62928-docker_container-ip-address-idempotency.yml b/changelogs/fragments/62928-docker_container-ip-address-idempotency.yml deleted file mode 100644 index 63fead2487..0000000000 --- a/changelogs/fragments/62928-docker_container-ip-address-idempotency.yml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: -- "docker_container - fix idempotency for IP addresses for networks. The old implementation checked the effective - IP addresses assigned by the Docker daemon, and not the specified ones. This causes idempotency issues for - containers which are not running, since they have no effective IP addresses assigned." diff --git a/changelogs/fragments/62971-docker_container-image-finding.yml b/changelogs/fragments/62971-docker_container-image-finding.yml deleted file mode 100644 index cc99858011..0000000000 --- a/changelogs/fragments/62971-docker_container-image-finding.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_container - make sure that when image is missing, check mode indicates a change (image will be pulled)." diff --git a/changelogs/fragments/62999-postgresql_lang_add_owner_parameter.yml b/changelogs/fragments/62999-postgresql_lang_add_owner_parameter.yml deleted file mode 100644 index 8c4b1be7dc..0000000000 --- a/changelogs/fragments/62999-postgresql_lang_add_owner_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_lang - add ``owner`` parameter (https://github.com/ansible/ansible/pull/62999). diff --git a/changelogs/fragments/63036-mysql_replication_add_return_value.yml b/changelogs/fragments/63036-mysql_replication_add_return_value.yml deleted file mode 100644 index 1f38a4bf53..0000000000 --- a/changelogs/fragments/63036-mysql_replication_add_return_value.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_replication - add ``queries`` return value (https://github.com/ansible/ansible/pull/63036). diff --git a/changelogs/fragments/63130-mysql_replication_add_master_delay_parameter.yml b/changelogs/fragments/63130-mysql_replication_add_master_delay_parameter.yml deleted file mode 100644 index 093d90ec47..0000000000 --- a/changelogs/fragments/63130-mysql_replication_add_master_delay_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_replication - add ``master_delay`` parameter (https://github.com/ansible/ansible/issues/51326). diff --git a/changelogs/fragments/63174-nsupdate-tsig-all-the-queries.yaml b/changelogs/fragments/63174-nsupdate-tsig-all-the-queries.yaml deleted file mode 100644 index 0935ce9c14..0000000000 --- a/changelogs/fragments/63174-nsupdate-tsig-all-the-queries.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - nsupdate - Use provided TSIG key to not only sign update queries but also lookup queries diff --git a/changelogs/fragments/63189-mysql_info-global-status.yml b/changelogs/fragments/63189-mysql_info-global-status.yml deleted file mode 100644 index d478cf4021..0000000000 --- a/changelogs/fragments/63189-mysql_info-global-status.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_info - add ``global_status`` filter parameter option and return (https://github.com/ansible/ansible/pull/63189). diff --git a/changelogs/fragments/63229-mysql_replication_add_connection_name_parameter.yml b/changelogs/fragments/63229-mysql_replication_add_connection_name_parameter.yml deleted file mode 100644 index e20f0b13bb..0000000000 --- a/changelogs/fragments/63229-mysql_replication_add_connection_name_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_replication - add ``connection_name`` parameter (https://github.com/ansible/ansible/issues/46243). diff --git a/changelogs/fragments/63271-mysql_replication_add_channel_parameter.yml b/changelogs/fragments/63271-mysql_replication_add_channel_parameter.yml deleted file mode 100644 index dcb54b2b9a..0000000000 --- a/changelogs/fragments/63271-mysql_replication_add_channel_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_replication - add ``channel`` parameter (https://github.com/ansible/ansible/issues/29311). diff --git a/changelogs/fragments/63321-mysql_replication_add_resetmaster_to_mode.yml b/changelogs/fragments/63321-mysql_replication_add_resetmaster_to_mode.yml deleted file mode 100644 index c4c112a144..0000000000 --- a/changelogs/fragments/63321-mysql_replication_add_resetmaster_to_mode.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_replication - add support of ``resetmaster`` choice to ``mode`` parameter (https://github.com/ansible/ansible/issues/42870). diff --git a/changelogs/fragments/63345-docker_image-deprecation-warnings.yml b/changelogs/fragments/63345-docker_image-deprecation-warnings.yml deleted file mode 100644 index 23fd9279c1..0000000000 --- a/changelogs/fragments/63345-docker_image-deprecation-warnings.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_image - make sure that deprecated options also emit proper deprecation warnings next to warnings which indicate how to replace them." diff --git a/changelogs/fragments/63371-mysql_info_add_exclude_fields_parameter.yml b/changelogs/fragments/63371-mysql_info_add_exclude_fields_parameter.yml deleted file mode 100644 index 83480c1d60..0000000000 --- a/changelogs/fragments/63371-mysql_info_add_exclude_fields_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_info - add ``exclude_fields`` parameter (https://github.com/ansible/ansible/issues/63319). diff --git a/changelogs/fragments/63408-nsupdate-dont-fix-none-txt-value.yaml b/changelogs/fragments/63408-nsupdate-dont-fix-none-txt-value.yaml deleted file mode 100644 index 860447580f..0000000000 --- a/changelogs/fragments/63408-nsupdate-dont-fix-none-txt-value.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - nsupdate - Do not try fixing non-existing TXT values (https://github.com/ansible/ansible/issues/63364) diff --git a/changelogs/fragments/63418-docker_node_info-errors.yml b/changelogs/fragments/63418-docker_node_info-errors.yml deleted file mode 100644 index 3f53581203..0000000000 --- a/changelogs/fragments/63418-docker_node_info-errors.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: -- "docker_node_info - improve error handling when service inspection fails, for example because node name being ambiguous - (https://github.com/ansible/ansible/issues/63353, PR https://github.com/ansible/ansible/pull/63418)." diff --git a/changelogs/fragments/63419-docker_container-defaults.yml b/changelogs/fragments/63419-docker_container-defaults.yml deleted file mode 100644 index 2bda81842f..0000000000 --- a/changelogs/fragments/63419-docker_container-defaults.yml +++ /dev/null @@ -1,4 +0,0 @@ -minor_changes: -- "docker_container - add new ``container_default_behavior`` option (PR https://github.com/ansible/ansible/pull/63419)." -deprecated_features: -- "docker_container - the default of ``container_default_behavior`` will change from ``compatibility`` to ``no_defaults`` in community.general 3.0.0. Set the option to an explicit value to avoid a deprecation warning." # was Ansible 2.14 diff --git a/changelogs/fragments/63420-docker_container-trust_image_content.yml b/changelogs/fragments/63420-docker_container-trust_image_content.yml deleted file mode 100644 index 1c1b093a3e..0000000000 --- a/changelogs/fragments/63420-docker_container-trust_image_content.yml +++ /dev/null @@ -1,2 +0,0 @@ -deprecated_features: -- "docker_container - the ``trust_image_content`` option is now deprecated and will be removed in community.general 3.0.0. It has never been used by the module." # was Ansible 2.14 diff --git a/changelogs/fragments/63467-docker-stack-return-fix.yml b/changelogs/fragments/63467-docker-stack-return-fix.yml deleted file mode 100644 index e69265218d..0000000000 --- a/changelogs/fragments/63467-docker-stack-return-fix.yml +++ /dev/null @@ -1,5 +0,0 @@ -minor_changes: - - docker_stack - Added ``stdout``, ``stderr``, and ``rc`` to return values. - -deprecated_features: - - "docker_stack - Return values ``out`` and ``err`` have been deprecated and will be removed in community.general 3.0.0. Use ``stdout`` and ``stderr`` instead." # was Ansible 2.14 diff --git a/changelogs/fragments/63522-remove-args-from-sumologic-and-splunk-callbacks.yml b/changelogs/fragments/63522-remove-args-from-sumologic-and-splunk-callbacks.yml deleted file mode 100644 index 7af27d9082..0000000000 --- a/changelogs/fragments/63522-remove-args-from-sumologic-and-splunk-callbacks.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - '**security issue** - Ansible: Splunk and Sumologic callback plugins leak sensitive data in logs (CVE-2019-14864)' diff --git a/changelogs/fragments/63546-mysql_replication_allow_to_pass_empty_values.yml b/changelogs/fragments/63546-mysql_replication_allow_to_pass_empty_values.yml deleted file mode 100644 index 801bda2f9e..0000000000 --- a/changelogs/fragments/63546-mysql_replication_allow_to_pass_empty_values.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_replication - allow to pass empty values to parameters (https://github.com/ansible/ansible/issues/23976). diff --git a/changelogs/fragments/63547-mysql_variables_add_mode_param.yml b/changelogs/fragments/63547-mysql_variables_add_mode_param.yml deleted file mode 100644 index 3eeb05bda2..0000000000 --- a/changelogs/fragments/63547-mysql_variables_add_mode_param.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_variables - add ``mode`` parameter (https://github.com/ansible/ansible/issues/60119). diff --git a/changelogs/fragments/63555-postgresql_privs_typy_obj_types.yaml b/changelogs/fragments/63555-postgresql_privs_typy_obj_types.yaml deleted file mode 100644 index 20e08a0baa..0000000000 --- a/changelogs/fragments/63555-postgresql_privs_typy_obj_types.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_privs - add support for TYPE as object types in postgresql_privs module (https://github.com/ansible/ansible/issues/62432). diff --git a/changelogs/fragments/63565-postgresql_user_allow_user_name_with_dots.yml b/changelogs/fragments/63565-postgresql_user_allow_user_name_with_dots.yml deleted file mode 100644 index 435a737f58..0000000000 --- a/changelogs/fragments/63565-postgresql_user_allow_user_name_with_dots.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgresql_user - allow to pass user name which contains dots (https://github.com/ansible/ansible/issues/63204). diff --git a/changelogs/fragments/63621-gitlab_user-fix-sshkey-and-user.yml b/changelogs/fragments/63621-gitlab_user-fix-sshkey-and-user.yml deleted file mode 100644 index 78e49c5e28..0000000000 --- a/changelogs/fragments/63621-gitlab_user-fix-sshkey-and-user.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "gitlab_user - Fix adding ssh key to new/changed user and adding group membership for new/changed user" diff --git a/changelogs/fragments/63629-postgresql_db_pgc_support.yaml b/changelogs/fragments/63629-postgresql_db_pgc_support.yaml deleted file mode 100644 index 12089b251b..0000000000 --- a/changelogs/fragments/63629-postgresql_db_pgc_support.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_db - add support for .pgc file format for dump and restores. diff --git a/changelogs/fragments/63887-docker_swarm_service-sort-lists-when-checking-changes.yml b/changelogs/fragments/63887-docker_swarm_service-sort-lists-when-checking-changes.yml deleted file mode 100644 index ebdf315b09..0000000000 --- a/changelogs/fragments/63887-docker_swarm_service-sort-lists-when-checking-changes.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "docker_swarm_service - Sort lists when checking for changes." diff --git a/changelogs/fragments/63903-ufw.yaml b/changelogs/fragments/63903-ufw.yaml deleted file mode 100644 index 975ecc129d..0000000000 --- a/changelogs/fragments/63903-ufw.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - ufw - accept ``interface_in`` and ``interface_out`` as parameters. diff --git a/changelogs/fragments/63969-zabbix_action_argsfix.yml b/changelogs/fragments/63969-zabbix_action_argsfix.yml deleted file mode 100644 index d2a1f44572..0000000000 --- a/changelogs/fragments/63969-zabbix_action_argsfix.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- zabbix_action - arguments ``event_source`` and ``esc_period`` no longer required when ``state=absent`` diff --git a/changelogs/fragments/63990-replace-deprecated-basic-functions.yml b/changelogs/fragments/63990-replace-deprecated-basic-functions.yml deleted file mode 100644 index 0800d5412f..0000000000 --- a/changelogs/fragments/63990-replace-deprecated-basic-functions.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - replace use of deprecated functions from ``ansible.module_utils.basic``. diff --git a/changelogs/fragments/64007-postgresql_db_allow_user_name_with_dots.yml b/changelogs/fragments/64007-postgresql_db_allow_user_name_with_dots.yml deleted file mode 100644 index 69afbb374b..0000000000 --- a/changelogs/fragments/64007-postgresql_db_allow_user_name_with_dots.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgresql_db - allow to pass users names which contain dots (https://github.com/ansible/ansible/issues/63204). diff --git a/changelogs/fragments/64032-zabbix_template_fix_return_XML_as_a_string_even_python3.yml b/changelogs/fragments/64032-zabbix_template_fix_return_XML_as_a_string_even_python3.yml deleted file mode 100644 index b11b6306d1..0000000000 --- a/changelogs/fragments/64032-zabbix_template_fix_return_XML_as_a_string_even_python3.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - Fix to return XML as a string even for python3 (https://github.com/ansible/ansible/pull/64032). diff --git a/changelogs/fragments/64059-mysql_user_fix_password_comparison.yaml b/changelogs/fragments/64059-mysql_user_fix_password_comparison.yaml deleted file mode 100644 index 50fd48ff98..0000000000 --- a/changelogs/fragments/64059-mysql_user_fix_password_comparison.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_user - make sure current_pass_hash is a string before using it in comparison (https://github.com/ansible/ansible/issues/60567). diff --git a/changelogs/fragments/64288-fix-hashi-vault-kv-v2.yaml b/changelogs/fragments/64288-fix-hashi-vault-kv-v2.yaml deleted file mode 100644 index 5529f265ce..0000000000 --- a/changelogs/fragments/64288-fix-hashi-vault-kv-v2.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "hashi_vault - Fix KV v2 lookup to always return latest version" diff --git a/changelogs/fragments/64371-postgresql_privs-always-reports-as-changed-when-using-default_privs.yml b/changelogs/fragments/64371-postgresql_privs-always-reports-as-changed-when-using-default_privs.yml deleted file mode 100644 index f1a26fc7aa..0000000000 --- a/changelogs/fragments/64371-postgresql_privs-always-reports-as-changed-when-using-default_privs.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgresql_privs.py - fix reports as changed behavior of module when using ``type=default_privs`` (https://github.com/ansible/ansible/issues/64371). diff --git a/changelogs/fragments/64382-docker_login-fix-invalid-json.yml b/changelogs/fragments/64382-docker_login-fix-invalid-json.yml deleted file mode 100644 index 85b458102b..0000000000 --- a/changelogs/fragments/64382-docker_login-fix-invalid-json.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_login - Use ``with`` statement when accessing files, to prevent that invalid JSON output is produced." diff --git a/changelogs/fragments/64582-postgresql_publication_fix_typo_in_module_warn.yml b/changelogs/fragments/64582-postgresql_publication_fix_typo_in_module_warn.yml deleted file mode 100644 index ac9b3f94aa..0000000000 --- a/changelogs/fragments/64582-postgresql_publication_fix_typo_in_module_warn.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgresql_publication - fix typo in module.warn method name (https://github.com/ansible/ansible/issues/64582). diff --git a/changelogs/fragments/64583-postgresql_subscription_fix_typo_in_module_warn.yml b/changelogs/fragments/64583-postgresql_subscription_fix_typo_in_module_warn.yml deleted file mode 100644 index 9888c96a83..0000000000 --- a/changelogs/fragments/64583-postgresql_subscription_fix_typo_in_module_warn.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgresql_subscription - fix typo in module.warn method name (https://github.com/ansible/ansible/pull/64583). diff --git a/changelogs/fragments/64585-mysql_dont_mask_mysql_connect_errors_from_modules.yml b/changelogs/fragments/64585-mysql_dont_mask_mysql_connect_errors_from_modules.yml deleted file mode 100644 index 9d4245ab65..0000000000 --- a/changelogs/fragments/64585-mysql_dont_mask_mysql_connect_errors_from_modules.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql - dont mask ``mysql_connect`` function errors from modules (https://github.com/ansible/ansible/issues/64560). diff --git a/changelogs/fragments/64635-docker_container-network_mode.yml b/changelogs/fragments/64635-docker_container-network_mode.yml deleted file mode 100644 index 3efa12571b..0000000000 --- a/changelogs/fragments/64635-docker_container-network_mode.yml +++ /dev/null @@ -1,2 +0,0 @@ -deprecated_features: -- "docker_container - the default value for ``network_mode`` will change in community.general 3.0.0, provided at least one network is specified and ``networks_cli_compatible`` is ``true``. See porting guide, module documentation or deprecation warning for more details." # was Ansible 2.14 diff --git a/changelogs/fragments/64637-docker_swarm_service-tmpfs-source.yml b/changelogs/fragments/64637-docker_swarm_service-tmpfs-source.yml deleted file mode 100644 index 6703383a2f..0000000000 --- a/changelogs/fragments/64637-docker_swarm_service-tmpfs-source.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_swarm_service - ``source`` must no longer be specified for ``tmpfs`` mounts." diff --git a/changelogs/fragments/64661-postgres_py_add_query_params_arg.yml b/changelogs/fragments/64661-postgres_py_add_query_params_arg.yml deleted file mode 100644 index 28e43bd87b..0000000000 --- a/changelogs/fragments/64661-postgres_py_add_query_params_arg.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: -- postgres.py - add a new keyword argument ``query_params`` (https://github.com/ansible/ansible/pull/64661). -- postgresql_idx.py - use the ``query_params`` arg of exec_sql function (https://github.com/ansible/ansible/pull/64661). diff --git a/changelogs/fragments/64683-docker_container-cpus.yml b/changelogs/fragments/64683-docker_container-cpus.yml deleted file mode 100644 index cb82b29b15..0000000000 --- a/changelogs/fragments/64683-docker_container-cpus.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- "docker_container - add ``cpus`` option (https://github.com/ansible/ansible/issues/34320)." diff --git a/changelogs/fragments/64797-fix-error-deleting-redfish-acct.yaml b/changelogs/fragments/64797-fix-error-deleting-redfish-acct.yaml deleted file mode 100644 index ed306a8c20..0000000000 --- a/changelogs/fragments/64797-fix-error-deleting-redfish-acct.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - redfish_command - fix error when deleting a disabled Redfish account (https://github.com/ansible/ansible/issues/64684) diff --git a/changelogs/fragments/64989-gitlab-handle-lib-new-version.yml b/changelogs/fragments/64989-gitlab-handle-lib-new-version.yml deleted file mode 100644 index 6b888c35a5..0000000000 --- a/changelogs/fragments/64989-gitlab-handle-lib-new-version.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - Fix GitLab modules authentication by handling `python-gitlab` library version >= 1.13.0 (https://github.com/ansible/ansible/issues/64770) \ No newline at end of file diff --git a/changelogs/fragments/64994-postgresql_ext_use_query_params.yml b/changelogs/fragments/64994-postgresql_ext_use_query_params.yml deleted file mode 100644 index 4fb781e8a1..0000000000 --- a/changelogs/fragments/64994-postgresql_ext_use_query_params.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_ext - use query parameters with cursor object (https://github.com/ansible/ansible/pull/64994). diff --git a/changelogs/fragments/65018-docker-none-errors.yml b/changelogs/fragments/65018-docker-none-errors.yml deleted file mode 100644 index 821aaacbcf..0000000000 --- a/changelogs/fragments/65018-docker-none-errors.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: -- "docker_container - fix network idempotence comparison error." -- "docker_network - fix idempotence comparison error." diff --git a/changelogs/fragments/65044-fix-terraform-no-workspace.yaml b/changelogs/fragments/65044-fix-terraform-no-workspace.yaml deleted file mode 100644 index 3fc9f5918d..0000000000 --- a/changelogs/fragments/65044-fix-terraform-no-workspace.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- terraform module - fixes usage for providers not supporting workspaces diff --git a/changelogs/fragments/65093-postgresql_lang_use_query_params_with_cursor.yml b/changelogs/fragments/65093-postgresql_lang_use_query_params_with_cursor.yml deleted file mode 100644 index cb43a6b00b..0000000000 --- a/changelogs/fragments/65093-postgresql_lang_use_query_params_with_cursor.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgresql_lang - use query params with cursor.execute (https://github.com/ansible/ansible/pull/65093). diff --git a/changelogs/fragments/65164-postgres_use_query_params_with_cursor.yml b/changelogs/fragments/65164-postgres_use_query_params_with_cursor.yml deleted file mode 100644 index 5ec1150daa..0000000000 --- a/changelogs/fragments/65164-postgres_use_query_params_with_cursor.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgres - use query params with cursor.execute in module_utils.postgres.PgMembership class (https://github.com/ansible/ansible/pull/65164). diff --git a/changelogs/fragments/65223-postgresql_db-exception-added.yml b/changelogs/fragments/65223-postgresql_db-exception-added.yml deleted file mode 100644 index 51656b1280..0000000000 --- a/changelogs/fragments/65223-postgresql_db-exception-added.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - postgresql_db - Removed exception for 'LibraryError' (https://github.com/ansible/ansible/issues/65223). diff --git a/changelogs/fragments/65238-fix_pacman_stdout_parsing.yml b/changelogs/fragments/65238-fix_pacman_stdout_parsing.yml deleted file mode 100644 index 8c4efa0828..0000000000 --- a/changelogs/fragments/65238-fix_pacman_stdout_parsing.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - pacman - Fix pacman output parsing on localized environment. (https://github.com/ansible/ansible/issues/65237) diff --git a/changelogs/fragments/65304-fix_zabbix_host_inventory_mode_key_error.yml b/changelogs/fragments/65304-fix_zabbix_host_inventory_mode_key_error.yml deleted file mode 100644 index afe6744c76..0000000000 --- a/changelogs/fragments/65304-fix_zabbix_host_inventory_mode_key_error.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - zabbix_host - fixed inventory_mode key error, which occurs with Zabbix 4.4.1 or more (https://github.com/ansible/ansible/issues/65304). diff --git a/changelogs/fragments/65310-postgresql_owner_use_query_params.yml b/changelogs/fragments/65310-postgresql_owner_use_query_params.yml deleted file mode 100644 index 1ff1f827de..0000000000 --- a/changelogs/fragments/65310-postgresql_owner_use_query_params.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgresql_owner - use query_params with cursor object (https://github.com/ansible/ansible/pull/65310). diff --git a/changelogs/fragments/65372-misc-context-manager.yml b/changelogs/fragments/65372-misc-context-manager.yml deleted file mode 100644 index a44aba8ee6..0000000000 --- a/changelogs/fragments/65372-misc-context-manager.yml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: - - spacewalk inventory - improve file handling by using a context manager. - - one_vm - improve file handling by using a context manager. - - postgresql_query - improve file handling by using a context manager. diff --git a/changelogs/fragments/65387-homebrew_check_mode_option.yml b/changelogs/fragments/65387-homebrew_check_mode_option.yml deleted file mode 100644 index 98c43927de..0000000000 --- a/changelogs/fragments/65387-homebrew_check_mode_option.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - homebrew - fix Homebrew module's some functions ignored check_mode option (https://github.com/ansible/ansible/pull/65387). diff --git a/changelogs/fragments/65404-postgresql_publication_user_query_params_with_cursor.yml b/changelogs/fragments/65404-postgresql_publication_user_query_params_with_cursor.yml deleted file mode 100644 index a4ca1005b9..0000000000 --- a/changelogs/fragments/65404-postgresql_publication_user_query_params_with_cursor.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgresql_publication - use query params arg with cursor object (https://github.com/ansible/ansible/issues/65404). diff --git a/changelogs/fragments/65498-mysql_db_add_executed_commands_return_val.yml b/changelogs/fragments/65498-mysql_db_add_executed_commands_return_val.yml deleted file mode 100644 index 25d2cb2903..0000000000 --- a/changelogs/fragments/65498-mysql_db_add_executed_commands_return_val.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_db - add the ``executed_commands`` returned value (https://github.com/ansible/ansible/pull/65498). diff --git a/changelogs/fragments/65542-postgresql_db_add_executed_commands_return_val.yml b/changelogs/fragments/65542-postgresql_db_add_executed_commands_return_val.yml deleted file mode 100644 index 51b3a09fc4..0000000000 --- a/changelogs/fragments/65542-postgresql_db_add_executed_commands_return_val.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_db - add the ``executed_commands`` returned value (https://github.com/ansible/ansible/pull/65542). diff --git a/changelogs/fragments/65547-mysql_db_add_force_param.yml b/changelogs/fragments/65547-mysql_db_add_force_param.yml deleted file mode 100644 index b0a0588334..0000000000 --- a/changelogs/fragments/65547-mysql_db_add_force_param.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_db - add the ``force`` parameter (https://github.com/ansible/ansible/pull/65547). diff --git a/changelogs/fragments/65609-docker-context-manager.yml b/changelogs/fragments/65609-docker-context-manager.yml deleted file mode 100644 index 2ba458b442..0000000000 --- a/changelogs/fragments/65609-docker-context-manager.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - docker_image - improve file handling when loading images from disk. diff --git a/changelogs/fragments/65632-docker-argspec-fixup.yml b/changelogs/fragments/65632-docker-argspec-fixup.yml deleted file mode 100644 index a974261024..0000000000 --- a/changelogs/fragments/65632-docker-argspec-fixup.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: -- "docker_image - fix validation of build options." -- "docker_login - fix error handling when ``username`` or ``password`` is not specified when ``state`` is ``present``." diff --git a/changelogs/fragments/65679-postgresql_schema_use_query_params_with_cursor.yml b/changelogs/fragments/65679-postgresql_schema_use_query_params_with_cursor.yml deleted file mode 100644 index 2af7242211..0000000000 --- a/changelogs/fragments/65679-postgresql_schema_use_query_params_with_cursor.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgresql_schema - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65679). diff --git a/changelogs/fragments/65750-pacman.yml b/changelogs/fragments/65750-pacman.yml deleted file mode 100644 index 40995dde38..0000000000 --- a/changelogs/fragments/65750-pacman.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "pacman - fix module crash with ``IndexError: list index out of range`` (https://github.com/ansible/ansible/issues/63077)" diff --git a/changelogs/fragments/65755-mysql_info_doesnt_list_empty_dbs.yml b/changelogs/fragments/65755-mysql_info_doesnt_list_empty_dbs.yml deleted file mode 100644 index 2f1b9b67ba..0000000000 --- a/changelogs/fragments/65755-mysql_info_doesnt_list_empty_dbs.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_info - add ``return_empty_dbs`` parameter to list empty databases (https://github.com/ansible/ansible/issues/65727). diff --git a/changelogs/fragments/65787-postgresql_sequence_use_query_params_with_cursor.yml b/changelogs/fragments/65787-postgresql_sequence_use_query_params_with_cursor.yml deleted file mode 100644 index 27c2bc17a3..0000000000 --- a/changelogs/fragments/65787-postgresql_sequence_use_query_params_with_cursor.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgresql_sequence - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65787). diff --git a/changelogs/fragments/65789-mysql_user_add_plugin_authentication_parameters.yml b/changelogs/fragments/65789-mysql_user_add_plugin_authentication_parameters.yml deleted file mode 100644 index 0e03b359de..0000000000 --- a/changelogs/fragments/65789-mysql_user_add_plugin_authentication_parameters.yml +++ /dev/null @@ -1,4 +0,0 @@ -minor_changes: -- mysql_user - add ``plugin`` parameter (https://github.com/ansible/ansible/pull/44267). -- mysql_user - add ``plugin_hash_string`` parameter (https://github.com/ansible/ansible/pull/44267). -- mysql_user - add ``plugin_auth_string`` parameter (https://github.com/ansible/ansible/pull/44267). diff --git a/changelogs/fragments/65791-postgresql_modules_use_query_params_with_cursor.yml b/changelogs/fragments/65791-postgresql_modules_use_query_params_with_cursor.yml deleted file mode 100644 index 831ffd6cad..0000000000 --- a/changelogs/fragments/65791-postgresql_modules_use_query_params_with_cursor.yml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: -- postgresql_set - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65791). -- postgresql_slot - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65791). -- postgresql_subscription - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65791). diff --git a/changelogs/fragments/65839-docker_network-idempotence.yml b/changelogs/fragments/65839-docker_network-idempotence.yml deleted file mode 100644 index 5dd200520b..0000000000 --- a/changelogs/fragments/65839-docker_network-idempotence.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: -- "docker_network - fix idempotency for multiple IPAM configs of the same IP version (https://github.com/ansible/ansible/issues/65815)." -- "docker_network - validate IPAM config subnet CIDR notation on module setup and not during idempotence checking." diff --git a/changelogs/fragments/65854-docker_container-wait-for-removal.yml b/changelogs/fragments/65854-docker_container-wait-for-removal.yml deleted file mode 100644 index 5c992a5edd..0000000000 --- a/changelogs/fragments/65854-docker_container-wait-for-removal.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_container - wait for removal of container if docker API returns early (https://github.com/ansible/ansible/issues/65811)." diff --git a/changelogs/fragments/65862-postgresql_modules_use_query_params_with_cursor.yml b/changelogs/fragments/65862-postgresql_modules_use_query_params_with_cursor.yml deleted file mode 100644 index 1a1b69c7ca..0000000000 --- a/changelogs/fragments/65862-postgresql_modules_use_query_params_with_cursor.yml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: -- postgresql_table - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65862). -- postgresql_tablespace - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65862). -- postgresql_user - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65862). diff --git a/changelogs/fragments/65894-redfish-bios-attributes.yaml b/changelogs/fragments/65894-redfish-bios-attributes.yaml deleted file mode 100644 index e67fb5c4b7..0000000000 --- a/changelogs/fragments/65894-redfish-bios-attributes.yaml +++ /dev/null @@ -1,4 +0,0 @@ -minor_changes: -- redfish_config - New ``bios_attributes`` option to allow setting multiple BIOS attributes in one command. -deprecated_features: -- redfish_config - Deprecate ``bios_attribute_name`` and ``bios_attribute_value`` in favor of new `bios_attributes`` option. diff --git a/changelogs/fragments/65903-postgresql_privs_sort_lists_with_none_elements.yml b/changelogs/fragments/65903-postgresql_privs_sort_lists_with_none_elements.yml deleted file mode 100644 index 2a74e38980..0000000000 --- a/changelogs/fragments/65903-postgresql_privs_sort_lists_with_none_elements.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgresql_privs - fix sorting lists with None elements for python3 (https://github.com/ansible/ansible/issues/65761). diff --git a/changelogs/fragments/65993-restart-docker_container-on-restart-policy-updates.yaml b/changelogs/fragments/65993-restart-docker_container-on-restart-policy-updates.yaml deleted file mode 100644 index 101f57207c..0000000000 --- a/changelogs/fragments/65993-restart-docker_container-on-restart-policy-updates.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - docker_container.py - update a containers restart_policy without restarting the container (https://github.com/ansible/ansible/issues/65993) diff --git a/changelogs/fragments/66026-zabbix_host_info.yml b/changelogs/fragments/66026-zabbix_host_info.yml deleted file mode 100644 index ccd5014dcf..0000000000 --- a/changelogs/fragments/66026-zabbix_host_info.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - zabbix_host_info - ``host_name`` based search results now include host groups. diff --git a/changelogs/fragments/66048-mysql_add_master_data_parameter.yml b/changelogs/fragments/66048-mysql_add_master_data_parameter.yml deleted file mode 100644 index 5f5b9f1ffb..0000000000 --- a/changelogs/fragments/66048-mysql_add_master_data_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_db - add ``master_data`` parameter (https://github.com/ansible/ansible/pull/66048). diff --git a/changelogs/fragments/66060-redfish-new-resource-id-option.yaml b/changelogs/fragments/66060-redfish-new-resource-id-option.yaml deleted file mode 100644 index 031b1c4848..0000000000 --- a/changelogs/fragments/66060-redfish-new-resource-id-option.yaml +++ /dev/null @@ -1,4 +0,0 @@ -minor_changes: -- redfish_config, redfish_command - Add ``resource_id`` option to specify which System, Manager, or Chassis resource to modify. -deprecated_features: -- redfish_config, redfish_command - Behavior to modify the first System, Mananger, or Chassis resource when multiple are present is deprecated. Use the new ``resource_id`` option to specify target resource to modify. diff --git a/changelogs/fragments/66144-docker_container-removal-timeout.yml b/changelogs/fragments/66144-docker_container-removal-timeout.yml deleted file mode 100644 index 3a089f0890..0000000000 --- a/changelogs/fragments/66144-docker_container-removal-timeout.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- "docker_container - allow to configure timeout when the module waits for a container's removal." diff --git a/changelogs/fragments/66151-docker_swarm_service-healthcheck-start-period.yml b/changelogs/fragments/66151-docker_swarm_service-healthcheck-start-period.yml deleted file mode 100644 index 269efb86e4..0000000000 --- a/changelogs/fragments/66151-docker_swarm_service-healthcheck-start-period.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_swarm_service - fix task always reporting as changed when using ``healthcheck.start_period``." diff --git a/changelogs/fragments/66157-postgresql-create-unique-indexes.yml b/changelogs/fragments/66157-postgresql-create-unique-indexes.yml deleted file mode 100644 index 399dce156f..0000000000 --- a/changelogs/fragments/66157-postgresql-create-unique-indexes.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - database - add support to unique indexes in postgresql_idx diff --git a/changelogs/fragments/66247-zabbix_proxy-address-field.yaml b/changelogs/fragments/66247-zabbix_proxy-address-field.yaml deleted file mode 100644 index d0be347d92..0000000000 --- a/changelogs/fragments/66247-zabbix_proxy-address-field.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - zabbix_proxy - added option proxy_address for comma-delimited list of IP/CIDR addresses or DNS names to accept active proxy requests from diff --git a/changelogs/fragments/66252-mysql_replication_fail_on_error.yml b/changelogs/fragments/66252-mysql_replication_fail_on_error.yml deleted file mode 100644 index cd72f4cbf2..0000000000 --- a/changelogs/fragments/66252-mysql_replication_fail_on_error.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_replication - add ``fail_on_error`` parameter (https://github.com/ansible/ansible/pull/66252). diff --git a/changelogs/fragments/66268-cyberarkpassword-fix-invalid-attr.yaml b/changelogs/fragments/66268-cyberarkpassword-fix-invalid-attr.yaml deleted file mode 100644 index def52ef019..0000000000 --- a/changelogs/fragments/66268-cyberarkpassword-fix-invalid-attr.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - cyberarkpassword - fix invalid attribute access (https://github.com/ansible/ansible/issues/66268) diff --git a/changelogs/fragments/66322-moved_line_causing_terraform_output_suppression.yml b/changelogs/fragments/66322-moved_line_causing_terraform_output_suppression.yml deleted file mode 100644 index 4598270fbc..0000000000 --- a/changelogs/fragments/66322-moved_line_causing_terraform_output_suppression.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - terraform - reset out and err before plan creation (https://github.com/ansible/ansible/issues/64369) diff --git a/changelogs/fragments/66331-postgresql_query_fix_unable_to_handle_non_ascii_chars_when_python3.yml b/changelogs/fragments/66331-postgresql_query_fix_unable_to_handle_non_ascii_chars_when_python3.yml deleted file mode 100644 index 1dc1ca61e6..0000000000 --- a/changelogs/fragments/66331-postgresql_query_fix_unable_to_handle_non_ascii_chars_when_python3.yml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: -- postgresql_query - the module doesn't support non-ASCII characters in SQL files with Python3 (https://github.com/ansible/ansible/issues/65367). -minor_changes: -- postgresql_query - add the ``encoding`` parameter (https://github.com/ansible/ansible/issues/65367). diff --git a/changelogs/fragments/66357-support-changing-fetch_url-settings-for-rundeck-modules.yaml b/changelogs/fragments/66357-support-changing-fetch_url-settings-for-rundeck-modules.yaml deleted file mode 100644 index 566a6cd9a8..0000000000 --- a/changelogs/fragments/66357-support-changing-fetch_url-settings-for-rundeck-modules.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- rundeck modules - added new options ``client_cert``, ``client_key``, ``force``, ``force_basic_auth``, ``http_agent``, ``url_password``, ``url_username``, ``use_proxy``, ``validate_certs`` to allow changing fetch_url parameters. diff --git a/changelogs/fragments/66382-docker_container-port-range.yml b/changelogs/fragments/66382-docker_container-port-range.yml deleted file mode 100644 index 7e504aee5f..0000000000 --- a/changelogs/fragments/66382-docker_container-port-range.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: - - "docker_container - support for port ranges was adjusted to be more compatible to the ``docker`` command line utility: - a one-port container range combined with a multiple-port host range will no longer result in only the first host port be used, but the whole range being passed to Docker so that a free port in that range will be used." diff --git a/changelogs/fragments/66398-pamd_fix-attributeerror-when-removing-first-line.yml b/changelogs/fragments/66398-pamd_fix-attributeerror-when-removing-first-line.yml deleted file mode 100644 index a8d3012e16..0000000000 --- a/changelogs/fragments/66398-pamd_fix-attributeerror-when-removing-first-line.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "pamd - Bugfix for attribute error when removing the first or last line" diff --git a/changelogs/fragments/66463-zabbix_template-fix-error-linktemplate-and-importdump.yml b/changelogs/fragments/66463-zabbix_template-fix-error-linktemplate-and-importdump.yml deleted file mode 100644 index 187feee4c3..0000000000 --- a/changelogs/fragments/66463-zabbix_template-fix-error-linktemplate-and-importdump.yml +++ /dev/null @@ -1,6 +0,0 @@ ---- - -bugfixes: - - zabbix_template - fixed error when providing empty ``link_templates`` to the module (see https://github.com/ansible/ansible/issues/66417) - - zabbix_template - fixed invalid (non-importable) output provided by exporting XML (see https://github.com/ansible/ansible/issues/66466) - diff --git a/changelogs/fragments/66592_ipa_encoding_fix.yml b/changelogs/fragments/66592_ipa_encoding_fix.yml deleted file mode 100644 index 14cc2bd504..0000000000 --- a/changelogs/fragments/66592_ipa_encoding_fix.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- Remove redundant encoding in json.load call in ipa module_utils (https://github.com/ansible/ansible/issues/66592). diff --git a/changelogs/fragments/66599-docker-healthcheck.yml b/changelogs/fragments/66599-docker-healthcheck.yml deleted file mode 100644 index 30026c9090..0000000000 --- a/changelogs/fragments/66599-docker-healthcheck.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: -- "docker_container - passing ``test: [NONE]`` now actually disables the image's healthcheck, as documented." -- "docker_swarm_service - passing ``test: [NONE]`` now actually disables the image's healthcheck, as documented." diff --git a/changelogs/fragments/66600-docker_container-volumes.yml b/changelogs/fragments/66600-docker_container-volumes.yml deleted file mode 100644 index 6d4e44775b..0000000000 --- a/changelogs/fragments/66600-docker_container-volumes.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- "docker_container - only passes anonymous volumes to docker daemon as ``Volumes``. This increases compatibility with the ``docker`` CLI program. Note that if you specify ``volumes: strict`` in ``comparisons``, this could cause existing containers created with docker_container from Ansible 2.9 or earlier to restart." diff --git a/changelogs/fragments/66688-mysql_db_add_skip_lock_tables_option.yml b/changelogs/fragments/66688-mysql_db_add_skip_lock_tables_option.yml deleted file mode 100644 index 18c44e43a4..0000000000 --- a/changelogs/fragments/66688-mysql_db_add_skip_lock_tables_option.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_db - add ``skip_lock_tables`` option (https://github.com/ansible/ansible/pull/66688). diff --git a/changelogs/fragments/66711-postgresql_user_add_comment_parameter.yml b/changelogs/fragments/66711-postgresql_user_add_comment_parameter.yml deleted file mode 100644 index bcdba65215..0000000000 --- a/changelogs/fragments/66711-postgresql_user_add_comment_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_user - add the comment parameter (https://github.com/ansible/ansible/pull/66711). diff --git a/changelogs/fragments/66717-postgresql_db_add_dump_extra_args_param.yml b/changelogs/fragments/66717-postgresql_db_add_dump_extra_args_param.yml deleted file mode 100644 index 84a5296e7e..0000000000 --- a/changelogs/fragments/66717-postgresql_db_add_dump_extra_args_param.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_db - add ``dump_extra_args`` parameter (https://github.com/ansible/ansible/pull/66717). diff --git a/changelogs/fragments/66747-zabbix_template-newupdaterule-deletemissinglinkedtemplate.yml b/changelogs/fragments/66747-zabbix_template-newupdaterule-deletemissinglinkedtemplate.yml deleted file mode 100644 index f2fb054c92..0000000000 --- a/changelogs/fragments/66747-zabbix_template-newupdaterule-deletemissinglinkedtemplate.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: - - zabbix_template - adding new update rule templateLinkage.deleteMissing for newer zabbix versions (https://github.com/ansible/ansible/pull/66747). - diff --git a/changelogs/fragments/66777-zabbix_host_tags_macros_support.yml b/changelogs/fragments/66777-zabbix_host_tags_macros_support.yml deleted file mode 100644 index dd388bb044..0000000000 --- a/changelogs/fragments/66777-zabbix_host_tags_macros_support.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- zabbix_host - now supports configuring user macros and host tags on the managed host (see https://github.com/ansible/ansible/pull/66777) diff --git a/changelogs/fragments/66801-mysql_user_priv_can_be_dict.yml b/changelogs/fragments/66801-mysql_user_priv_can_be_dict.yml deleted file mode 100644 index c4f04e065e..0000000000 --- a/changelogs/fragments/66801-mysql_user_priv_can_be_dict.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_user - ``priv`` parameter can be string or dictionary (https://github.com/ansible/ansible/issues/57533). diff --git a/changelogs/fragments/66806-mysql_variables_not_support_variables_with_dot.yml b/changelogs/fragments/66806-mysql_variables_not_support_variables_with_dot.yml deleted file mode 100644 index 8618f3e07e..0000000000 --- a/changelogs/fragments/66806-mysql_variables_not_support_variables_with_dot.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_variable - fix the module doesn't support variables name with dot (https://github.com/ansible/ansible/issues/54239). diff --git a/changelogs/fragments/66807-redhat_subscription-no-default-quantity.yaml b/changelogs/fragments/66807-redhat_subscription-no-default-quantity.yaml deleted file mode 100644 index d3edc41a3b..0000000000 --- a/changelogs/fragments/66807-redhat_subscription-no-default-quantity.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - redhat_subscription - do not set the default quantity to ``1`` when no quantity is provided (https://github.com/ansible/ansible/issues/66478) diff --git a/changelogs/fragments/66837-zabbix-proxy-interface.yml b/changelogs/fragments/66837-zabbix-proxy-interface.yml deleted file mode 100644 index d24b0bcf34..0000000000 --- a/changelogs/fragments/66837-zabbix-proxy-interface.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "zabbix_proxy - ``interface`` sub-options ``type`` and ``main`` are now deprecated and will be removed in community.general 3.0.0. Also, the values passed to ``interface`` are now checked for correct types and unexpected keys." # was Ansible 2.14 diff --git a/changelogs/fragments/66841-zabbix_action-allowstrfor-esc_period.yml b/changelogs/fragments/66841-zabbix_action-allowstrfor-esc_period.yml deleted file mode 100644 index 36ad0166a5..0000000000 --- a/changelogs/fragments/66841-zabbix_action-allowstrfor-esc_period.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - zabbix_action - allow str values for ``esc_period`` options (https://github.com/ansible/ansible/pull/66841). diff --git a/changelogs/fragments/66914-purefa_user_string.yaml b/changelogs/fragments/66914-purefa_user_string.yaml deleted file mode 100644 index 16ff2dd378..0000000000 --- a/changelogs/fragments/66914-purefa_user_string.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - pure - fix incorrect user_string setting in module_utils file (https://github.com/ansible/ansible/pull/66914) diff --git a/changelogs/fragments/66929-pmrun-quote-entire-success-command-string.yml b/changelogs/fragments/66929-pmrun-quote-entire-success-command-string.yml deleted file mode 100644 index 769a5d1b51..0000000000 --- a/changelogs/fragments/66929-pmrun-quote-entire-success-command-string.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - pmrun plugin - The success_command string was no longer quoted. This caused unusual use-cases like ``become_flags=su - root -c`` to fail. diff --git a/changelogs/fragments/66957-scaleway-jsonify-only-for-json-requests.yml b/changelogs/fragments/66957-scaleway-jsonify-only-for-json-requests.yml deleted file mode 100644 index 99d0306e0b..0000000000 --- a/changelogs/fragments/66957-scaleway-jsonify-only-for-json-requests.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- 'scaleway: use jsonify unmarshaller only for application/json requests to avoid breaking the multiline configuration with requests in text/plain (https://github.com/ansible/ansible/issues/65036)' diff --git a/changelogs/fragments/66974-mysql_user_doesnt_support_privs_with_underscore.yml b/changelogs/fragments/66974-mysql_user_doesnt_support_privs_with_underscore.yml deleted file mode 100644 index 95af3a2062..0000000000 --- a/changelogs/fragments/66974-mysql_user_doesnt_support_privs_with_underscore.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_user - fix support privileges with underscore (https://github.com/ansible/ansible/issues/66974). diff --git a/changelogs/fragments/67046-postgresql_modules_make_params_required.yml b/changelogs/fragments/67046-postgresql_modules_make_params_required.yml deleted file mode 100644 index b94af237aa..0000000000 --- a/changelogs/fragments/67046-postgresql_modules_make_params_required.yml +++ /dev/null @@ -1,4 +0,0 @@ -bugfixes: -- postgresql_membership - make the ``groups`` and ``target_roles`` parameters required (https://github.com/ansible/ansible/pull/67046). -- postgresql_slot - make the ``name`` parameter required (https://github.com/ansible/ansible/pull/67046). -- postgresql_tablespace - make the ``tablespace`` parameter required (https://github.com/ansible/ansible/pull/67046). diff --git a/changelogs/fragments/67302-zabbix_template_info-add-omit_date-field.yml b/changelogs/fragments/67302-zabbix_template_info-add-omit_date-field.yml deleted file mode 100644 index 230e975521..0000000000 --- a/changelogs/fragments/67302-zabbix_template_info-add-omit_date-field.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: - - zabbix_template - add new option omit_date to remove date from exported/dumped template (https://github.com/ansible/ansible/pull/67302) - - zabbix_template_info - add new option omit_date to remove date from exported/dumped template (https://github.com/ansible/ansible/pull/67302) diff --git a/changelogs/fragments/67337-fix-proxysql-mysql-cursor.yaml b/changelogs/fragments/67337-fix-proxysql-mysql-cursor.yaml deleted file mode 100644 index 0bcb836e35..0000000000 --- a/changelogs/fragments/67337-fix-proxysql-mysql-cursor.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - proxysql - fixed mysql dictcursor diff --git a/changelogs/fragments/67353-docker_login-permissions.yml b/changelogs/fragments/67353-docker_login-permissions.yml deleted file mode 100644 index ddb38e0fd4..0000000000 --- a/changelogs/fragments/67353-docker_login-permissions.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- "docker_login - make sure that ``~/.docker/config.json`` is created with permissions ``0600``." diff --git a/changelogs/fragments/67418-postgresql_set_converts_value_to_uppercase.yml b/changelogs/fragments/67418-postgresql_set_converts_value_to_uppercase.yml deleted file mode 100644 index b3cd21f858..0000000000 --- a/changelogs/fragments/67418-postgresql_set_converts_value_to_uppercase.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- postgresql_set - fix converting value to uppercase (https://github.com/ansible/ansible/issues/67377). diff --git a/changelogs/fragments/67461-gitlab-project-variable-masked-protected.yml b/changelogs/fragments/67461-gitlab-project-variable-masked-protected.yml deleted file mode 100644 index 06106baebc..0000000000 --- a/changelogs/fragments/67461-gitlab-project-variable-masked-protected.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - gitlab_project_variable - implement masked and protected attributes diff --git a/changelogs/fragments/67464-postgresql_info_add_collecting_subscription_info.yml b/changelogs/fragments/67464-postgresql_info_add_collecting_subscription_info.yml deleted file mode 100644 index d6f14d4a1c..0000000000 --- a/changelogs/fragments/67464-postgresql_info_add_collecting_subscription_info.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_info - add collection info about replication subscriptions (https://github.com/ansible/ansible/pull/67464). diff --git a/changelogs/fragments/67614-postgresql_info_add_collecting_publication_info.yml b/changelogs/fragments/67614-postgresql_info_add_collecting_publication_info.yml deleted file mode 100644 index 01e80a1c99..0000000000 --- a/changelogs/fragments/67614-postgresql_info_add_collecting_publication_info.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- postgresql_info - add collecting info about logical replication publications in databases (https://github.com/ansible/ansible/pull/67614). diff --git a/changelogs/fragments/67655-scaleway_compute-get-image-instead-loop-on-list.yml b/changelogs/fragments/67655-scaleway_compute-get-image-instead-loop-on-list.yml deleted file mode 100644 index 47fcb065d0..0000000000 --- a/changelogs/fragments/67655-scaleway_compute-get-image-instead-loop-on-list.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- 'scaleway_compute(check_image_id): use get image instead loop on first page of images results' diff --git a/changelogs/fragments/67693-zabbix_mediatype.yml b/changelogs/fragments/67693-zabbix_mediatype.yml deleted file mode 100644 index 4547ef6f95..0000000000 --- a/changelogs/fragments/67693-zabbix_mediatype.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - zabbix_mediatype - Fixed to support zabbix 4.4 or more and python3 (https://github.com/ansible/ansible/pull/67693) diff --git a/changelogs/fragments/67747-mysql_db_add_dump_extra_args_param.yml b/changelogs/fragments/67747-mysql_db_add_dump_extra_args_param.yml deleted file mode 100644 index 95fc934a35..0000000000 --- a/changelogs/fragments/67747-mysql_db_add_dump_extra_args_param.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- mysql_db - add the ``dump_extra_args`` parameter (https://github.com/ansible/ansible/pull/67747). diff --git a/changelogs/fragments/67767-mysql_db_fix_bug_introduced_by_56721.yml b/changelogs/fragments/67767-mysql_db_fix_bug_introduced_by_56721.yml deleted file mode 100644 index e09a54c179..0000000000 --- a/changelogs/fragments/67767-mysql_db_fix_bug_introduced_by_56721.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_db - fix bug in the ``db_import`` function introduced by https://github.com/ansible/ansible/pull/56721 (https://github.com/ansible/ansible/issues/65351). diff --git a/changelogs/fragments/67832-run_powershell_modules_on_windows_containers.yml b/changelogs/fragments/67832-run_powershell_modules_on_windows_containers.yml deleted file mode 100644 index faddb90a09..0000000000 --- a/changelogs/fragments/67832-run_powershell_modules_on_windows_containers.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - docker connection plugin - run Powershell modules on Windows containers. diff --git a/changelogs/fragments/68251-redfish_config-fix-boolean-bios-attr-support.yaml b/changelogs/fragments/68251-redfish_config-fix-boolean-bios-attr-support.yaml deleted file mode 100644 index 20ba44073a..0000000000 --- a/changelogs/fragments/68251-redfish_config-fix-boolean-bios-attr-support.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: -- redfish_config - fix support for boolean bios attrs (https://github.com/ansible/ansible/pull/68251) diff --git a/changelogs/fragments/68374_rhn_channel.yml b/changelogs/fragments/68374_rhn_channel.yml deleted file mode 100644 index 5f2d3fc406..0000000000 --- a/changelogs/fragments/68374_rhn_channel.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- "rhn_channel - Added ``validate_certs`` option (https://github.com/ansible/ansible/issues/68374)." diff --git a/changelogs/fragments/80-update_docker_connection_plugin.yml b/changelogs/fragments/80-update_docker_connection_plugin.yml deleted file mode 100644 index dfc2b7116c..0000000000 --- a/changelogs/fragments/80-update_docker_connection_plugin.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - docker connection plugin - do not prefix remote path if running on Windows containers. diff --git a/changelogs/fragments/83-dense-callback-warning.yml b/changelogs/fragments/83-dense-callback-warning.yml deleted file mode 100644 index 1d7993f9a3..0000000000 --- a/changelogs/fragments/83-dense-callback-warning.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - dense callback - fix plugin access to its configuration variables and remove a warning message (https://github.com/ansible/ansible/issues/64628). diff --git a/changelogs/fragments/alicloud_params_add.yml b/changelogs/fragments/alicloud_params_add.yml deleted file mode 100644 index 0169bce016..0000000000 --- a/changelogs/fragments/alicloud_params_add.yml +++ /dev/null @@ -1,6 +0,0 @@ -minor_changes: - - "alicloud modules - now only support Python 3.6, not support Python 2.x" - - "ali_instance and ali_instance_info - the required package footmark needs a version higher than 1.19.0" - - "ali_instance - Add params ``unique_suffix``, ``tags``, ``purge_tags``, ``ram_role_name``, ``spot_price_limit``, ``spot_strategy``, ``period_unit``, ``dry_run``, ``include_data_disks``" - - "ali_instance_info - Add params ``name_prefix``, ``filters``" - - "alicloud modules - Add authentication params to all modules" \ No newline at end of file diff --git a/changelogs/fragments/apt_rpm_typefix.yml b/changelogs/fragments/apt_rpm_typefix.yml deleted file mode 100644 index 72f185e667..0000000000 --- a/changelogs/fragments/apt_rpm_typefix.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - apt_rpm - fix ``package`` type from ``str`` to ``list`` to fix invoking with list of packages (https://github.com/ansible-collections/community.general/issues/143). diff --git a/changelogs/fragments/atomic_image_absent.yml b/changelogs/fragments/atomic_image_absent.yml deleted file mode 100644 index c9b7f4d161..0000000000 --- a/changelogs/fragments/atomic_image_absent.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - Run command in absent state in atomic_image module. diff --git a/changelogs/fragments/become-pass-precedence.yaml b/changelogs/fragments/become-pass-precedence.yaml deleted file mode 100644 index 8e21fe24e3..0000000000 --- a/changelogs/fragments/become-pass-precedence.yaml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: -- become - Fix various plugins that still used play_context to get the become password instead of through the plugin - https://github.com/ansible/ansible/issues/62367 -- runas - Fix the ``runas`` ``become_pass`` variable fallback from ``ansible_runas_runas`` to ``ansible_runas_pass`` diff --git a/changelogs/fragments/clc_aa_policy-remove-unused-wait-parameter.yaml b/changelogs/fragments/clc_aa_policy-remove-unused-wait-parameter.yaml deleted file mode 100644 index cc3cdd4e91..0000000000 --- a/changelogs/fragments/clc_aa_policy-remove-unused-wait-parameter.yaml +++ /dev/null @@ -1,2 +0,0 @@ -deprecated_features: - - "clc_aa_policy - The ``wait`` option had no effect and will be removed in community.general 3.0.0." # was Ansible 2.14 diff --git a/changelogs/fragments/cron-only-get-bin-path-once.yaml b/changelogs/fragments/cron-only-get-bin-path-once.yaml deleted file mode 100644 index cc9f11d3c5..0000000000 --- a/changelogs/fragments/cron-only-get-bin-path-once.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - cronvar - only run ``get_bin_path()`` once diff --git a/changelogs/fragments/cronvar-correct-binary-name.yaml b/changelogs/fragments/cronvar-correct-binary-name.yaml deleted file mode 100644 index 4472bfa9db..0000000000 --- a/changelogs/fragments/cronvar-correct-binary-name.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - cronvar - use correct binary name (https://github.com/ansible/ansible/issues/63274) diff --git a/changelogs/fragments/filter-time.yml b/changelogs/fragments/filter-time.yml deleted file mode 100644 index 45a46a8196..0000000000 --- a/changelogs/fragments/filter-time.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- A new filter ``to_time_unit`` with specializations ``to_milliseconds``, ``to_seconds``, ``to_minutes``, ``to_hours``, ``to_days``, ``to_weeks``, ``to_months`` and ``to_years`` has been added. For example ``'2d 4h' | community.general.to_hours`` evaluates to 52. diff --git a/changelogs/fragments/firewalld-version-0_7_0.yml b/changelogs/fragments/firewalld-version-0_7_0.yml deleted file mode 100644 index c86651a45a..0000000000 --- a/changelogs/fragments/firewalld-version-0_7_0.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - firewalld - enable the firewalld module to function offline with firewalld version 0.7.0 and newer (https://github.com/ansible/ansible/issues/63254) diff --git a/changelogs/fragments/firewalld_zone_target.yml b/changelogs/fragments/firewalld_zone_target.yml deleted file mode 100644 index 39f90a49fd..0000000000 --- a/changelogs/fragments/firewalld_zone_target.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - firewalld - new feature, can now set ``target`` for a ``zone`` (https://github.com/ansible-collections/community.general/pull/526). diff --git a/changelogs/fragments/fix-oc-conn-plugin-envvar.yml b/changelogs/fragments/fix-oc-conn-plugin-envvar.yml deleted file mode 100644 index 31e03ac11d..0000000000 --- a/changelogs/fragments/fix-oc-conn-plugin-envvar.yml +++ /dev/null @@ -1,4 +0,0 @@ -breaking_changes: -- The environment variable for the auth context for the oc.py connection plugin - has been corrected (K8S_CONTEXT). It was using an initial lowercase k by mistake. - (https://github.com/ansible-collections/community.general/pull/377). diff --git a/changelogs/fragments/fix_zabbix_host_visible_name.yml b/changelogs/fragments/fix_zabbix_host_visible_name.yml deleted file mode 100644 index 444f8b7d1f..0000000000 --- a/changelogs/fragments/fix_zabbix_host_visible_name.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - zabbix_host - was not possible to update a host where visible_name was not set in zabbix diff --git a/changelogs/fragments/gitlab-project-variable-variable-type.yml b/changelogs/fragments/gitlab-project-variable-variable-type.yml deleted file mode 100644 index 5b96f478df..0000000000 --- a/changelogs/fragments/gitlab-project-variable-variable-type.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - gitlab_project_variable - implemented variable_type attribute. diff --git a/changelogs/fragments/gitlab_project_variable.yml b/changelogs/fragments/gitlab_project_variable.yml deleted file mode 100644 index f3db59e129..0000000000 --- a/changelogs/fragments/gitlab_project_variable.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- Redact GitLab Project variables which might include sensetive information such as password, api_keys and other project related details. diff --git a/changelogs/fragments/ldap-params-removal.yml b/changelogs/fragments/ldap-params-removal.yml deleted file mode 100644 index 8e28b6aa37..0000000000 --- a/changelogs/fragments/ldap-params-removal.yml +++ /dev/null @@ -1,8 +0,0 @@ -removed_features: - - "ldap_attr, ldap_entry - The ``params`` option has been removed in - Ansible-2.10 as it circumvents Ansible's option handling. Setting - ``bind_pw`` with the ``params`` option was disallowed in Ansible-2.7, 2.8, - and 2.9 as it was insecure. For information about this policy, see the -discussion at: - https://meetbot.fedoraproject.org/ansible-meeting/2017-09-28/ansible_dev_meeting.2017-09-28-15.00.log.html - This fixes CVE-2020-1746" diff --git a/changelogs/fragments/listen_ports_facts_doc.yml b/changelogs/fragments/listen_ports_facts_doc.yml deleted file mode 100644 index b56988c3a2..0000000000 --- a/changelogs/fragments/listen_ports_facts_doc.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- Updated documentation about netstat command requirement for listen_ports_facts module (https://github.com/ansible/ansible/issues/68077). diff --git a/changelogs/fragments/lxd_container_url.yaml b/changelogs/fragments/lxd_container_url.yaml deleted file mode 100644 index 77953c6606..0000000000 --- a/changelogs/fragments/lxd_container_url.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - Fixes the url handling in lxd_container module that url cannot be specified in lxd environment created by snap. diff --git a/changelogs/fragments/lxd_profile_url.yaml b/changelogs/fragments/lxd_profile_url.yaml deleted file mode 100644 index 1a598e052d..0000000000 --- a/changelogs/fragments/lxd_profile_url.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - Fixes the url handling in lxd_profile module that url cannot be specified in lxd environment created by snap. diff --git a/changelogs/fragments/mqtt-ssl-protocols.yml b/changelogs/fragments/mqtt-ssl-protocols.yml deleted file mode 100644 index 4e13e0ab94..0000000000 --- a/changelogs/fragments/mqtt-ssl-protocols.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - Fix SSL protocol references in the ``mqtt`` module to prevent failures on Python 2.6. diff --git a/changelogs/fragments/mysql_info_add_parameter.yml b/changelogs/fragments/mysql_info_add_parameter.yml deleted file mode 100644 index ebb5d49b5b..0000000000 --- a/changelogs/fragments/mysql_info_add_parameter.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- mysql_info - add parameter for __collect to get only what are wanted (https://github.com/ansible-collections/community.general/pull/136). diff --git a/changelogs/fragments/mysql_user_idempotency.yml b/changelogs/fragments/mysql_user_idempotency.yml deleted file mode 100644 index 5638b883f6..0000000000 --- a/changelogs/fragments/mysql_user_idempotency.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "mysql_user - Fix idempotence when long grant lists are used (https://github.com/ansible/ansible/issues/68044)" diff --git a/changelogs/fragments/openstack_inventory_move.yml b/changelogs/fragments/openstack_inventory_move.yml deleted file mode 100644 index 89aabc9082..0000000000 --- a/changelogs/fragments/openstack_inventory_move.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- Moved OpenStack dynamic inventory script to Openstack Collection. diff --git a/changelogs/fragments/ovirt-dont-ignore-instance_cpus-parameter.yaml b/changelogs/fragments/ovirt-dont-ignore-instance_cpus-parameter.yaml deleted file mode 100644 index 93b33bb7a8..0000000000 --- a/changelogs/fragments/ovirt-dont-ignore-instance_cpus-parameter.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - ovirt - don't ignore ``instance_cpus`` parameter diff --git a/changelogs/fragments/porting-guide.yml b/changelogs/fragments/porting-guide.yml deleted file mode 100644 index 7cb42f1c14..0000000000 --- a/changelogs/fragments/porting-guide.yml +++ /dev/null @@ -1,20 +0,0 @@ -deprecated_features: -- docker_container - the ``trust_image_content`` option will be removed. It has always been ignored by the module. -- docker_stack - the return values ``err`` and ``out`` have been deprecated. Use ``stdout`` and ``stderr`` from now on instead. -- redfish_config - the ``bios_attribute_name`` and ``bios_attribute_value`` options will be removed. To maintain the existing behavior use the ``bios_attributes`` option instead. -- redfish_config and redfish_command - the behavior to select the first System, Manager, or Chassis resource to modify when multiple are present will be removed. Use the new ``resource_id`` option to specify target resource to modify. -- clc_aa_policy - the ``wait`` parameter will be removed. It has always been ignored by the module. -- zabbix_proxy - deprecates ``interface`` sub-options ``type`` and ``main`` when proxy type is set to passive via ``status=passive``. Make sure these suboptions are removed from your playbook as they were never supported by Zabbix in the first place. - -breaking_changes: -- hashi_vault lookup - now returns the latest version when using the KV v2 secrets engine. Previously, it returned all versions of the secret which required additional steps to extract and filter the desired version. -- datadog - the parameter ``message`` was renamed to ``notification_message`` since ``message`` is used by Ansible Core engine internally. -- bigpanda - the parameter ``message`` was renamed to ``deployment_message`` since ``message`` is used by Ansible Core engine internally. -- "docker_container - no longer passes information on non-anonymous volumes or binds as ``Volumes`` to the Docker daemon. This increases compatibility with the ``docker`` CLI program. Note that if you specify ``volumes: strict`` in ``comparisons``, this could cause existing containers created with docker_container from Ansible 2.9 or earlier to restart." -- "docker_container - support for port ranges was adjusted to be more compatible to the ``docker`` command line utility: a one-port container range combined with a multiple-port host range will no longer result in only the first host port be used, but the whole range being passed to Docker so that a free port in that range will be used." - -major_changes: -- docker_container - the module has a new option, ``container_default_behavior``, whose default value will change from ``compatibility`` to ``no_defaults``. Set to an explicit value to avoid deprecation warnings. -- docker_container - the ``network_mode`` option will be set by default to the name of the first network in ``networks`` if at least one network is given and ``networks_cli_compatible`` is ``true`` (will be default from community.general 2.0.0 on). Set to an explicit value to avoid deprecation warnings if you specify networks and set ``networks_cli_compatible`` to ``true``. The current default (not specifying it) is equivalent to the value ``default``. -- zabbix_action - no longer requires ``esc_period`` and ``event_source`` arguments when ``state=absent``. -- gitlab_user - no longer requires ``name``, ``email`` and ``password`` arguments when ``state=absent``. diff --git a/changelogs/fragments/postgresol_privs-fix-status-sorting.yaml b/changelogs/fragments/postgresol_privs-fix-status-sorting.yaml deleted file mode 100644 index e62a249e6b..0000000000 --- a/changelogs/fragments/postgresol_privs-fix-status-sorting.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - postgresql_privs - sort results before comparing so that the values are compared and not the result of ``.sort()`` (https://github.com/ansible/ansible/pull/65125) diff --git a/changelogs/fragments/proxmox-6-version-detection.yaml b/changelogs/fragments/proxmox-6-version-detection.yaml deleted file mode 100644 index 490ecb69ee..0000000000 --- a/changelogs/fragments/proxmox-6-version-detection.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - "proxmox - fix version detection of proxmox 6 and up (Fixes https://github.com/ansible/ansible/issues/59164)" diff --git a/changelogs/fragments/remove-2.9-deprecations.yml b/changelogs/fragments/remove-2.9-deprecations.yml deleted file mode 100644 index 4037a25bf9..0000000000 --- a/changelogs/fragments/remove-2.9-deprecations.yml +++ /dev/null @@ -1,2 +0,0 @@ -removed_features: -- "core - remove support for ``check_invalid_arguments`` in ``UTMModule``." diff --git a/changelogs/fragments/solaris_zone_name_fix.yml b/changelogs/fragments/solaris_zone_name_fix.yml deleted file mode 100644 index eea9785f1a..0000000000 --- a/changelogs/fragments/solaris_zone_name_fix.yml +++ /dev/null @@ -1,5 +0,0 @@ -bugfixes: -- "**SECURITY** - CVE-2019-14904 - solaris_zone module accepts zone name and performs actions related to that. - However, there is no user input validation done while performing actions. A malicious user could provide a - crafted zone name which allows executing commands into the server manipulating the module behaviour. Adding - user input validation as per Solaris Zone documentation fixes this issue." diff --git a/changelogs/fragments/syslogger-disable-check-mode.yaml b/changelogs/fragments/syslogger-disable-check-mode.yaml deleted file mode 100644 index 11eacfca55..0000000000 --- a/changelogs/fragments/syslogger-disable-check-mode.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - syslogger callback plugin - remove check mode support since it did nothing anyway diff --git a/changelogs/fragments/xml-deprecated-functions.yml b/changelogs/fragments/xml-deprecated-functions.yml deleted file mode 100644 index b5d31575bf..0000000000 --- a/changelogs/fragments/xml-deprecated-functions.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - Fix the ``xml`` module to use ``list(elem)`` instead of ``elem.getchildren()`` since it is being removed in Python 3.9 diff --git a/changelogs/fragments/zabbix-hostmacro.yml b/changelogs/fragments/zabbix-hostmacro.yml deleted file mode 100644 index f778694d4f..0000000000 --- a/changelogs/fragments/zabbix-hostmacro.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: - - zabbix_hostmacro - ``macro_value`` is no longer required when ``state=absent`` - - zabbix_hostmacro - ``macro_name`` now accepts macros in zabbix native format as well (e.g. ``{$MACRO}``) diff --git a/changelogs/fragments/zabbix_user-mediatype-error.yml b/changelogs/fragments/zabbix_user-mediatype-error.yml deleted file mode 100644 index 50efcf976e..0000000000 --- a/changelogs/fragments/zabbix_user-mediatype-error.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - zabbix_user - Fixed an issue where module failed with zabbix 4.4 or above (see https://github.com/ansible/ansible/pull/67475) diff --git a/galaxy.yml b/galaxy.yml index c99f4a549c..cf938350a8 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -15,6 +15,6 @@ dependencies: google.cloud: '>=0.0.9' repository: https://github.com/ansible-collections/community.general documentation: https://github.com/ansible-collection-migration/community.general/tree/master/docs -homepage: https://github.com/ansible-collections/community.general +#homepage: https://github.com/ansible-collections/community.general issues: https://github.com/ansible-collections/community.general/issues #type: flatmap diff --git a/meta/runtime.yml b/meta/runtime.yml index 9263876ffd..75ada4af25 100644 --- a/meta/runtime.yml +++ b/meta/runtime.yml @@ -1,3 +1,4 @@ +requires_ansible: '>=2.9.10' action_groups: docker: - docker_swarm