Skip to content

Instantly share code, notes, and snippets.

@sivel
Last active April 1, 2020 17:34
Show Gist options
  • Save sivel/d193a68b2e2338f265b2c6cf5aec34b3 to your computer and use it in GitHub Desktop.
Save sivel/d193a68b2e2338f265b2c6cf5aec34b3 to your computer and use it in GitHub Desktop.
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# (c) 2020 Matt Martz <[email protected]>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
import base64
import fnmatch
import json
import os
import re
import sys
import yaml # pyyaml
from github import Github # pygithub
PLUGINS_RE = re.compile(r'.*/(plugins|modules|module_utils)/(.+)/(.+)$')
GITHUB_TOKEN = os.getenv('GITHUB_TOKEN')
assert GITHUB_TOKEN, "GITHUB_TOKEN env var must be set to an oauth token"
g = Github(GITHUB_TOKEN)
migration = g.get_repo('ansible-community/collection_migration')
ansible = g.get_repo('ansible/ansible')
nwo = {}
for f in migration.get_contents('scenarios/nwo'):
data = yaml.safe_load(base64.b64decode(f.content))
namespace, ext = os.path.splitext(f.name)
if ext != '.yml':
continue
for collection, content in data.items():
if collection[0] == '_':
continue
name = '%s.%s' % (namespace, collection)
for ptype, paths in content.items():
for relpath in paths:
if ptype in ('modules', 'module_utils'):
path = 'lib/ansible/%s/%s' % (ptype, relpath)
else:
path = 'lib/ansible/plugins/%s/%s' % (ptype, relpath)
nwo[path] = name
globs = [p for p in nwo if '*' in p]
moves = {}
for f in ansible.get_contents('changelogs/fragments'):
for commit in ansible.get_commits(path=f.path):
files = [p.filename for p in commit.files]
plugins = [p for p in files if PLUGINS_RE.search(p)]
if not plugins:
continue
match = None
if plugins[0] in nwo:
match = plugins[0]
else:
try:
for glob in globs:
for plugin in plugins:
if fnmatch.fnmatch(glob, plugin):
match = glob
raise StopIteration()
except StopIteration:
pass
if match:
collection = nwo[match]
print('%s' % f.path, file=sys.stderr)
print(
' %s - %s' % (collection, match),
file=sys.stderr
)
moves[f.path] = collection
break
print(file=sys.stderr)
print(json.dumps(moves, sort_keys=True, indent=4))
{
"changelogs/fragments/27800-ec2_vpc_net-ipv6-support.yml": {
"changelog": {
"minor_changes": [
"ec2_vpc_net - Enable IPv6 CIDR assignment"
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/36876-github-deploy-key-fix-pagination.yaml": {
"changelog": {
"bugfixes": [
"github_deploy_key - added support for pagination"
]
},
"collection": "community.general"
},
"changelogs/fragments/39295-grafana_dashboard.yml": {
"changelog": {
"bugfixes": [
"Replace parameter 'message' with appropriate parameter name in several modules, as 'message' is used internally in Ansible Core engine (https://github.com/ansible/ansible/issues/39295)."
],
"minor_changes": [
"Added invalid-argument-name spec in ansible-test."
]
},
"collection": "community.general"
},
"changelogs/fragments/47182-os_port_order_difference_should_not_trigger_changes.yml": {
"changelog": {
"bugfixes": [
"os_port - no longer triggers change when ``allowed_address_pairs`` items are in different order."
]
},
"collection": "openstack.cloud"
},
"changelogs/fragments/48997-ecs_ecr-livecycle-policy.yml": {
"changelog": {
"minor_changes": [
"ecr_ecs - add support for lifecycle policies",
"ecr_ecs - delete_policy has been renamed to purge_policy (with an alias) and will be removed in 2.14"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/51595-adds-win32_diskdrive-object-to-win_disk_facts.yaml": {
"changelog": {
"minor_changes": [
"win_disk_facts - Adds Win32_DiskDrive class object as `win32_disk_drive` key to return of the module"
]
},
"collection": "community.windows"
},
"changelogs/fragments/52408-luks-device.yaml": {
"changelog": {
"minor_changes": [
"luks_device - accept ``passphrase``, ``new_passphrase`` and ``remove_passphrase``."
]
},
"collection": "community.general"
},
"changelogs/fragments/54435_aws_s3_fix_removing_versioned_buckets.yaml": {
"changelog": {
"bugfixes": [
"aws_s3 - Delete objects and delete markers so versioned buckets can be removed."
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/55217-aws-modules-config.yml": {
"changelog": {
"minor_changes": [
"AWS modules now take an \"aws_config\" parameter to define botocore configuration settings (https://github.com/ansible/ansible/issues/55182).",
"AWS modules using boto can use the parameter to define the user agent, while boto3 modules allow any configuration settings listed in the botocore API config documentation."
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/55919-rabbitmq_publish-fix-for-recent-pika-versions.yml": {
"changelog": {
"bugfixes": [
"rabbitmq_publish - Fix to ensure the module works correctly for pika v1.0.0 and later. (https://github.com/ansible/ansible/pull/61960)"
]
},
"collection": "community.general"
},
"changelogs/fragments/55965-add-allow-projects-in-openstack-inventory.yml": {
"changelog": {
"minor_changes": [
"openstack inventory plugin - add all_projects option"
]
},
"collection": "openstack.cloud"
},
"changelogs/fragments/56033-win_iis_webapplication-add-authentication-options.yml": {
"changelog": {
"minor_changes": [
"win_iis_webapplication - add new options ``connect_as``, ``username``, ``password``."
]
},
"collection": "community.windows"
},
"changelogs/fragments/56468-deprecate-lnb-absent.yml": {
"changelog": {
"deprecated_features": [
"elb_network_lb: The current default value of the `state` option has been deprecated and will change from absent to present in Ansible 2.14"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/56966-win_format-allocation-unit-size.yml": {
"changelog": {
"bugfixes": [
"win_format - fixed issue where module would not change allocation unit size (https://github.com/ansible/ansible/issues/56961)"
]
},
"collection": "community.windows"
},
"changelogs/fragments/57185-fix_vmware_modules_py_pre2.79.yaml": {
"changelog": {
"bugfixes": [
"vmware - Ensure we can use the modules with Python < 2.7.9 or RHEL/CentOS < 7.4, this as soon as ``validate_certs`` is disabled."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/57535-vmware_vcenter_statistics_corner-cases.yml": {
"changelog": {
"bugfixes": [
"vmware_vcenter_statistics - Fix some corner cases like increasing some interval and decreasing another at the same time."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/57804-win_acl-no-longer-needs-SeSecurityPrivilege.yml": {
"changelog": {
"bugfixes": [
"win_acl - Fixed error when setting rights on directory for which inheritance from parent directory has been disabled."
]
},
"collection": "ansible.windows"
},
"changelogs/fragments/58225-win_partition-maximum-partition-size.yml": {
"changelog": {
"bugfixes": [
"win_partition - don't resize partitions if size difference is < 1 MiB"
]
},
"collection": "community.windows"
},
"changelogs/fragments/58466-FIX_win_find-Bug-Get-FileStat_fails_on_large_files.yml": {
"changelog": {
"bugfixes": [
"win_find - Get-FileStat used [int] instead of [int64] for file size calculations"
]
},
"collection": "ansible.windows"
},
"changelogs/fragments/58812-support_absolute_paths_additionally.yml": {
"changelog": {
"bugfixes": [
"terraform - adding support for absolute paths additionally to the relative path within project_path (https://github.com/ansible/ansible/issues/58578)"
]
},
"collection": "community.general"
},
"changelogs/fragments/58822-aws-lamda-tracing-config.yaml": {
"changelog": {
"minor_changes": [
"lambda - add a tracing_mode parameter to set the TracingConfig for AWS X-Ray. Also allow updating Lambda runtime."
]
},
"collection": "community.amazon"
},
"changelogs/fragments/58824-vmware_cluster_ha-advanced-settings.yml": {
"changelog": {
"minor_changes": [
"vmware_cluster_ha - Implemented HA advanced settings (https://github.com/ansible/ansible/issues/61421)"
]
},
"collection": "community.vmware"
},
"changelogs/fragments/58824-vmware_dvs_portgroup-implement-portgroup-updates.yml": {
"changelog": {
"bugfixes": [
"vmware_dvs_portgroup - Implemented configuration changes on an existing Distributed vSwitch portgroup."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/58973-luks_device_add-type-option.yml": {
"changelog": {
"minor_changes": [
"luks_device - added the ``type`` option that allows user explicit define the LUKS container format version"
]
},
"collection": "community.general"
},
"changelogs/fragments/58973_luks_device-add-label-and-uuid-support.yml": {
"changelog": {
"minor_changes": [
"luks_device - added support to use UUIDs, and labels with LUKS2 containers"
]
},
"collection": "community.general"
},
"changelogs/fragments/59379-vmware_tag_manager-use_category.yml": {
"changelog": {
"bugfixes": [
"Use Category id to uniquely identify a tag when multiple tags with same name is available (https://github.com/ansible/ansible/issues/59379)."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/59395_meraki_content_filtering.yaml": {
"changelog": {
"minor_changes": [
"meraki_content_filtering.py - Fixed to use net_id veraible instead static value of None."
]
},
"collection": "cisco.meraki"
},
"changelogs/fragments/59522-renamed-module-tls-client-auth-params-to-avoid-overlaping-with-fetch_url.yaml": {
"changelog": {
"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)"
]
},
"collection": "community.general"
},
"changelogs/fragments/59574-os_image_from_volume.yaml": {
"changelog": {
"minor_changes": [
"os_image - add ``volume`` option to support creating an image from a volume"
]
},
"collection": "openstack.cloud"
},
"changelogs/fragments/59597-ecs-allow_default_network_mode.yml": {
"changelog": {
"minor_changes": [
"ecs_task_definition - Add network_mode=default to support Windows ECS tasks."
]
},
"collection": "community.amazon"
},
"changelogs/fragments/59877-fix-keyerror-in-redfish-getlogs.yaml": {
"changelog": {
"bugfixes": [
"redfish_facts - fix KeyError exceptions in GetLogs (https://github.com/ansible/ansible/issues/59797)"
]
},
"collection": "community.general"
},
"changelogs/fragments/59927-fix-redfish-power-reset-type-mapping.yaml": {
"changelog": {
"bugfixes": [
"redfish_command - fix power ResetType mapping logic (https://github.com/ansible/ansible/issues/59804)"
]
},
"collection": "community.general"
},
"changelogs/fragments/60106-templar-contextmanager.yml": {
"changelog": {
"bugfixes": [
"template lookup - ensure changes to the templar in the lookup, do not affect the templar context outside of the lookup (https://github.com/ansible/ansible/issues/60106)"
]
},
"collection": "community.general"
},
"changelogs/fragments/60201-idrac-redfish-config-attributes-support.yml": {
"changelog": {
"minor_changes": [
"idrac_redfish_config - Support for multiple manager attributes configuration"
]
},
"collection": "community.general"
},
"changelogs/fragments/60388-openssl_privatekey-format.yml": {
"changelog": {
"minor_changes": [
"openssl_privatekey - add ``format`` and ``format_mismatch`` options."
]
},
"collection": "community.general"
},
"changelogs/fragments/60508-route53-improve-octal-characters-handling.yml": {
"changelog": {
"bugfixes": [
"route53 - improve handling of octal encoded characters"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/60510-k8s-apply-check-mode.yml": {
"changelog": {
"bugfixes": [
"k8s - ensure that apply works with check mode. Bumps minimum openshift version for apply to 0.9.2."
]
},
"collection": "community.kubernetes"
},
"changelogs/fragments/60569-plugins-netconf-ce.yml": {
"changelog": {
"bugfixes": [
"plugins-netconf-ce - to get attribute 'set-id' from rpc-reply."
]
},
"collection": "community.general"
},
"changelogs/fragments/60944-sns_topic-delivery_policy-changed.yml": {
"changelog": {
"bugfixes": [
"fixed issue with sns_topic's delivery_policy option resulting in changed always being true"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/60961-docker_compose-fix-deprecation-warning.yml": {
"changelog": {
"bugfixes": [
"docker_compose - fix issue where docker deprecation warning results in ansible erroneously reporting a failure"
]
},
"collection": "community.general"
},
"changelogs/fragments/61004-compare_policies-convert-to-string.yml": {
"changelog": {
"bugfixes": [
"compare_policies() Explicitly convert bools and ints to strings when comparing AWS IAM policies"
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/61119-os_server-add-tag-to-instance-nics.yml": {
"changelog": {
"minor_changes": [
"os_server - add ``tag`` to instance nics"
]
},
"collection": "openstack.cloud"
},
"changelogs/fragments/61227-win_iis_webapplication-apppool-change.yml": {
"changelog": {
"minor_changes": [
"win_iis_webapplication - now uses the current application pool of the website instead of the DefaultAppPool if none was specified."
]
},
"collection": "community.windows"
},
"changelogs/fragments/61263-aws_codecommit-description.yml": {
"changelog": {
"minor_changes": [
"aws_codecommit - Support updating the description"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/61271-cloudfront_distribution-encryptionid.yml": {
"changelog": {
"bugfixes": [
"cloudfront_distribution - Always add field_level_encryption_id to cache behaviour to match AWS requirements"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/61279-ec2_launch_template-output.yml": {
"changelog": {
"bugfixes": [
"ec2_launch_template - Update output to include latest_version and default_version, matching the documentation"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/61284-ec2_asg-idempotency.yml": {
"changelog": {
"bugfixes": [
"aws_ec2 - fix idempotency when managing tags",
"aws_ec2 - fix idempotency when metrics are enable"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/61338-tower-inventory-integer-inventory_id.yaml": {
"changelog": {
"bugfixes": [
"tower inventory plugin - fix TypeError when giving inventory_id as integer (https://github.com/ansible/ansible/issues/61333)"
]
},
"collection": "awx.awx"
},
"changelogs/fragments/61522-luks-device-add-option-to-define-keysize.yml": {
"changelog": {
"minor_changes": [
"luks_device - add ``keysize`` parameter to set key size at LUKS container creation"
]
},
"collection": "community.general"
},
"changelogs/fragments/61562-nagios-start.yaml": {
"changelog": {
"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."
]
},
"collection": "community.general"
},
"changelogs/fragments/61577-support-iops-in-purefa_volume.yml": {
"changelog": {
"minor_changes": [
"purefa_volume - Change I(qos) parameter to I(bw_iops), but retain I(qos) as an alias for backwards compatability (https://github.com/ansible/ansible/pull/61577)."
]
},
"collection": "purestorage.flasharray"
},
"changelogs/fragments/61655-fix-digital-ocean-droplet-create.yaml": {
"changelog": {
"bugfixes": [
"digital_ocean_droplet - Fix creation of DigitalOcean droplets using digital_ocean_droplet module (https://github.com/ansible/ansible/pull/61655)"
]
},
"collection": "community.general"
},
"changelogs/fragments/61658-openssh_keypair-public-key-permissions.yml": {
"changelog": {
"bugfixes": [
"openssh_keypair - public key's file attributes (permissions, owner, group, etc.) are now set to the same values as the private key."
]
},
"collection": "community.general"
},
"changelogs/fragments/61693-acme-buypass-acme-v1.yml": {
"changelog": {
"bugfixes": [
"ACME modules: support Buypass' ACME v1 endpoint",
"ACME modules: fix bug in ACME v1 account update code"
]
},
"collection": "community.general"
},
"changelogs/fragments/61735-wait-for-s3-bucket-to-exist-before-modifying.yaml": {
"changelog": {
"bugfixes": [
"aws_s3 - Try to wait for the bucket to exist before setting the access control list."
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/61738-ecs-certificate-invalid-chain.yaml": {
"changelog": {
"bugfixes": [
"ecs_certificate - Fix formatting of contents of ``full_chain_path``."
]
},
"collection": "community.general"
},
"changelogs/fragments/61740-docker_container-port-range-parsing.yml": {
"changelog": {
"bugfixes": [
"docker_container - improve error behavior when parsing port ranges fails."
]
},
"collection": "community.general"
},
"changelogs/fragments/61805-azure-facts-info.yml": {
"changelog": {
"bugfixes": [
"azure_rm_dnsrecordset_info - no longer returns empty ``azure_dnsrecordset`` facts when called as ``_info`` module.",
"azure_rm_resourcegroup_info - no longer returns ``azure_resourcegroups`` facts when called as ``_info`` module.",
"azure_rm_storageaccount_info - no longer returns empty ``azure_storageaccounts`` facts when called as ``_info`` module.",
"azure_rm_virtualmachineimage_info - no longer returns empty ``azure_vmimages`` facts when called as ``_info`` module.",
"azure_rm_virtualmachinescaleset_info - fix wrongly empty result, or ``ansible_facts`` result, when called as ``_info`` module.",
"azure_rm_virtualnetwork_info - no longer returns empty ``azure_virtualnetworks`` facts when called as ``_info`` module."
]
},
"collection": "community.general"
},
"changelogs/fragments/61921-gitlab_user.yml": {
"changelog": {
"bugfixes": [
"While deleting gitlab user, name, email and password is no longer required ini gitlab_user module (https://github.com/ansible/ansible/issues/61921)."
]
},
"collection": "community.general"
},
"changelogs/fragments/61925-fix_purefa_fact_info_api_check.yml": {
"changelog": {
"bugfixes": [
"purefa_info - Fix missing API version check when calling I(admins) or I(all) as the subset",
"_purefa_facts - Fix missing API version check when calling I(admins) or I(all) as the subset"
]
},
"collection": "community.general"
},
"changelogs/fragments/61933-ec2_transit_gateway-honor-auto_attach-setting.yaml": {
"changelog": {
"bugfixes": [
"ec2_transit_gateway - fixed issue where auto_attach set to yes was not being honored (https://github.com/ansible/ansible/issues/61907)"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/61961-pacman_remove_recurse_option.yaml": {
"changelog": {
"removed_features": [
"pacman - Removed deprecated ``recurse`` option, use ``extra_args=--recursive`` instead"
]
},
"collection": "community.general"
},
"changelogs/fragments/62014-iam_role_session_instanceprofile.yml": {
"changelog": {
"minor_changes": [
"iam_role - Add support for removing the related instance profile when we delete the role",
"iam_role - Add support for managing the maximum session duration"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/62068-add-pure-cbs-support.yml": {
"changelog": {
"bugfixes": [
"purefa_info - Add support for Cloud Block Store (https://github.com/ansible/ansible/pull/62068)",
"purefa_host - Add support for Cloud Block Store (https://github.com/ansible/ansible/pull/62068)"
]
},
"collection": "purestorage.flasharray"
},
"changelogs/fragments/62083-vmware-internal_results.yml": {
"changelog": {
"minor_changes": [
"vmware_datastore_maintenancemode now returns datastore_status instead of Ansible internal key results (https://github.com/ansible/ansible/issues/62083).",
"vmware_host_kernel_manager now returns host_kernel_status instead of Ansible internal key results (https://github.com/ansible/ansible/issues/62083).",
"vmware_host_ntp now returns host_ntp_status instead of Ansible internal key results (https://github.com/ansible/ansible/issues/62083).",
"vmware_host_service_manager now returns host_service_status instead of Ansible internal key results (https://github.com/ansible/ansible/issues/62083).",
"vmware_tag now returns tag_status instead of Ansible internal key results (https://github.com/ansible/ansible/issues/62083)."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/62188-VMware-Guest-Support-latest-version-while-upgrading-VM-hardware.yml": {
"changelog": {
"bugfixes": [
"vmware_guest - Add ability to upgrade the guest hardware version to latest fix issue"
]
},
"collection": "community.vmware"
},
"changelogs/fragments/62206-add-diff-and-check-support.yml": {
"changelog": {
"minor_changes": [
"os_server now supports diff and check_mode"
]
},
"collection": "openstack.cloud"
},
"changelogs/fragments/62290-fix-cloudformation_info-KeyError.yaml": {
"changelog": {
"bugfixes": [
"cloudformation_info - Fix a KeyError returning information about the stack(s)."
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/62329-nsupdate-lookup-internal-zones.yaml": {
"changelog": {
"bugfixes": [
"nsupdate - Fix zone name lookup of internal/private zones (https://github.com/ansible/ansible/issues/62052)"
]
},
"collection": "community.general"
},
"changelogs/fragments/62348-yarn-no_version_install_fix.yml": {
"changelog": {
"bugfixes": [
"yarn - handle no version when installing module by name (https://github.com/ansible/ansible/issues/55097)"
]
},
"collection": "community.general"
},
"changelogs/fragments/62403-ce_bgp_neighbor_af_fix_parameter_name.yml": {
"changelog": {
"minor_changes": [
"ce_bgp_neighbor_af - Rename the parameter ``redirect_ip_vaildation`` to ``redirect_ip_validation`` (https://github.com/ansible/ansible/pull/62403)."
]
},
"collection": "community.general"
},
"changelogs/fragments/62542-constructed-options-foreman-inventory-plugin.yaml": {
"changelog": {
"minor_changes": [
"foreman inventory plugin - Add support for constructed options."
]
},
"collection": "community.general"
},
"changelogs/fragments/62587-module_utils-network-cloudengine.yml": {
"changelog": {
"bugfixes": [
"Cloudengine module_utils - the ``set-id`` (RPC-REPLY XML attribute) may change over the time althougth ``set-id`` is the identity of the next RPC packet.",
"Cloudengine netconf plugin - add a dispatch RPC function,just return original RPC-REPLY, the function is used by ``Cloudengine module_utils``."
]
},
"collection": "community.general"
},
"changelogs/fragments/62616-vmware_cluster_ha-fix-documentation.yml": {
"changelog": {
"minor_changes": [
"vmware_cluster_ha - Remove a wrong parameter from an example in the documentation."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/62617-fix-redfish-enable-account-if-enabled-prop-missing.yaml": {
"changelog": {
"bugfixes": [
"redfish_command - fix EnableAccount if Enabled property is not present in Account resource (https://github.com/ansible/ansible/issues/59822)"
]
},
"collection": "community.general"
},
"changelogs/fragments/62621-docker_login-fix-60381.yaml": {
"changelog": {
"bugfixes": [
"docker_login - correct broken fix for https://github.com/ansible/ansible/pull/60381 which crashes for Python 3."
]
},
"collection": "community.general"
},
"changelogs/fragments/62648-mysql_replication_add_master_use_gtid_param.yml": {
"changelog": {
"minor_changes": [
"mysql_replication - add ``master_use_gtid`` parameter (https://github.com/ansible/ansible/pull/62648)."
]
},
"collection": "community.general"
},
"changelogs/fragments/62772-vmware_vmkernel_info-fix.yml": {
"changelog": {
"bugfixes": [
"Check for virtualNicManager in Esxi host system before accessing properties in vmware_vmkernel_info (https://github.com/ansible/ansible/issues/62772)."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/62790-openssl_certificate_fix_assert.yml": {
"changelog": {
"bugfixes": [
"openssl_certificate - fix ``assertonly`` provider certificate verification, causing 'private key mismatch' and 'subject mismatch' errors."
]
},
"collection": "community.general"
},
"changelogs/fragments/62810-Vmware-Guest-Allow-DashInWindowsServerDNSName.yml": {
"changelog": {
"bugfixes": [
"vmware_guest - Allow '-' (Dash) special char in windows DNS name."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/62872-ce_config_too_many_quit_close_connection.yml": {
"changelog": {
"bugfixes": [
"ce_config - fixed issue - Re-building commands(config src) by replacing '#' with 'quit','quit' commands may close connection (https://github.com/ansible/ansible/issues/62872)"
]
},
"collection": "community.general"
},
"changelogs/fragments/62916-add_properties_option_to_vmware_host_facts.yml": {
"changelog": {
"minor_changes": [
"vmware_host_facts - added ``properties`` and ``schema`` options."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/62928-docker_container-ip-address-idempotency.yml": {
"changelog": {
"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."
]
},
"collection": "community.general"
},
"changelogs/fragments/629400-add_properties_option_to_vmware_datastore_info.yml": {
"changelog": {
"minor_changes": [
"vmware_datastore_info - added ``properties`` and ``schema`` options."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/62971-docker_container-image-finding.yml": {
"changelog": {
"bugfixes": [
"docker_container - make sure that when image is missing, check mode indicates a change (image will be pulled)."
]
},
"collection": "community.general"
},
"changelogs/fragments/62991-openssl_dhparam-cryptography-backend.yml": {
"changelog": {
"minor_changes": [
"openssl_dhparam - now supports a ``cryptography``-based backend. Auto-detection can be overwritten with the ``select_crypto_backend`` option."
]
},
"collection": "community.general"
},
"changelogs/fragments/62999-postgresql_lang_add_owner_parameter.yml": {
"changelog": {
"minor_changes": [
"postgresql_lang - add ``owner`` parameter (https://github.com/ansible/ansible/pull/62999)."
]
},
"collection": "community.general"
},
"changelogs/fragments/63036-mysql_replication_add_return_value.yml": {
"changelog": {
"minor_changes": [
"mysql_replication - add ``queries`` return value (https://github.com/ansible/ansible/pull/63036)."
]
},
"collection": "community.general"
},
"changelogs/fragments/63130-mysql_replication_add_master_delay_parameter.yml": {
"changelog": {
"minor_changes": [
"mysql_replication - add ``master_delay`` parameter (https://github.com/ansible/ansible/issues/51326)."
]
},
"collection": "community.general"
},
"changelogs/fragments/63140-acme-fix-fetch-url-status-codes.yaml": {
"changelog": {
"bugfixes": [
"ACME modules: make sure some connection errors are handled properly"
]
},
"collection": "community.general"
},
"changelogs/fragments/63166-add-extra-args-executalbe-podman-connection.yaml": {
"changelog": {
"minor_changes": [
"podman connection - allow to add extra arguments to podman command and to configure the executable."
]
},
"collection": "community.general"
},
"changelogs/fragments/63174-nsupdate-tsig-all-the-queries.yaml": {
"changelog": {
"minor_changes": [
"nsupdate - Use provided TSIG key to not only sign update queries but also lookup queries"
]
},
"collection": "community.general"
},
"changelogs/fragments/63189-mysql_info-global-status.yml": {
"changelog": {
"minor_changes": [
"mysql_info - add ``global_status`` filter parameter option and return (https://github.com/ansible/ansible/pull/63189)."
]
},
"collection": "community.general"
},
"changelogs/fragments/63229-mysql_replication_add_connection_name_parameter.yml": {
"changelog": {
"minor_changes": [
"mysql_replication - add ``connection_name`` parameter (https://github.com/ansible/ansible/issues/46243)."
]
},
"collection": "community.general"
},
"changelogs/fragments/63271-mysql_replication_add_channel_parameter.yml": {
"changelog": {
"minor_changes": [
"mysql_replication - add ``channel`` parameter (https://github.com/ansible/ansible/issues/29311)."
]
},
"collection": "community.general"
},
"changelogs/fragments/63280-fix_acl_spaces_in_path.yml": {
"changelog": {
"bugfixes": [
"acl - fixed module failure if there are spaces in a path"
]
},
"collection": "community.general"
},
"changelogs/fragments/63321-mysql_replication_add_resetmaster_to_mode.yml": {
"changelog": {
"minor_changes": [
"mysql_replication - add support of ``resetmaster`` choice to ``mode`` parameter (https://github.com/ansible/ansible/issues/42870)."
]
},
"collection": "community.general"
},
"changelogs/fragments/63345-docker_image-deprecation-warnings.yml": {
"changelog": {
"bugfixes": [
"docker_image - make sure that deprecated options also emit proper deprecation warnings next to warnings which indicate how to replace them."
]
},
"collection": "community.general"
},
"changelogs/fragments/63362-remove-edgeos-filtering.yaml": {
"changelog": {
"bugfixes": [
"edgeos_config - fix issue where module would silently filter out encrypted passwords"
]
},
"collection": "community.general"
},
"changelogs/fragments/63371-mysql_info_add_exclude_fields_parameter.yml": {
"changelog": {
"minor_changes": [
"mysql_info - add ``exclude_fields`` parameter (https://github.com/ansible/ansible/issues/63319)."
]
},
"collection": "community.general"
},
"changelogs/fragments/63408-nsupdate-dont-fix-none-txt-value.yaml": {
"changelog": {
"bugfixes": [
"nsupdate - Do not try fixing non-existing TXT values (https://github.com/ansible/ansible/issues/63364)"
]
},
"collection": "community.general"
},
"changelogs/fragments/63418-docker_node_info-errors.yml": {
"changelog": {
"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)."
]
},
"collection": "community.general"
},
"changelogs/fragments/63419-docker_container-defaults.yml": {
"changelog": {
"deprecated_features": [
"docker_container - the default of ``container_default_behavior`` will change from ``compatibility`` to ``no_defaults`` in Ansible 2.14. Set the option to an explicit value to avoid a deprecation warning."
],
"minor_changes": [
"docker_container - add new ``container_default_behavior`` option (PR https://github.com/ansible/ansible/pull/63419)."
]
},
"collection": "community.general"
},
"changelogs/fragments/63420-docker_container-trust_image_content.yml": {
"changelog": {
"deprecated_features": [
"docker_container - the ``trust_image_content`` option is now deprecated and will be removed in Ansible 2.14. It has never been used by the module."
]
},
"collection": "community.general"
},
"changelogs/fragments/63432-openssl_csr-version.yml": {
"changelog": {
"bugfixes": [
"openssl_csr - a warning is issued if an unsupported value for ``version`` is used for the ``cryptography`` backend."
],
"deprecated_features": [
"openssl_csr - all values for the ``version`` option except ``1`` are deprecated."
]
},
"collection": "community.general"
},
"changelogs/fragments/63467-docker-stack-return-fix.yml": {
"changelog": {
"deprecated_features": [
"docker_stack - Return values ``out`` and ``err`` have been deprecated and will be removed in Ansible 2.14. Use ``stdout`` and ``stderr`` instead."
],
"minor_changes": [
"docker_stack - Added ``stdout``, ``stderr``, and ``rc`` to return values."
]
},
"collection": "community.general"
},
"changelogs/fragments/63513-ce_action_wait_prompt_trigger_time_out.yaml": {
"changelog": {
"bugfixes": [
"action/ce - fix a bug, some new version os will not discard uncommitted configure with a return directly.(https://github.com/ansible/ansible/pull/63513)."
]
},
"collection": "community.general"
},
"changelogs/fragments/63522-remove-args-from-sumologic-and-splunk-callbacks.yml": {
"changelog": {
"bugfixes": [
"**security issue** - Ansible: Splunk and Sumologic callback plugins leak sensitive data in logs (CVE-2019-14864)"
]
},
"collection": "community.general"
},
"changelogs/fragments/63546-mysql_replication_allow_to_pass_empty_values.yml": {
"changelog": {
"bugfixes": [
"mysql_replication - allow to pass empty values to parameters (https://github.com/ansible/ansible/issues/23976)."
]
},
"collection": "community.general"
},
"changelogs/fragments/63547-mysql_variables_add_mode_param.yml": {
"changelog": {
"minor_changes": [
"mysql_variables - add ``mode`` parameter (https://github.com/ansible/ansible/issues/60119)."
]
},
"collection": "community.general"
},
"changelogs/fragments/63555-postgresql_privs_typy_obj_types.yaml": {
"changelog": {
"minor_changes": [
"postgresql_privs - add support for TYPE as object types in postgresql_privs module (https://github.com/ansible/ansible/issues/62432)."
]
},
"collection": "community.general"
},
"changelogs/fragments/63629-postgresql_db_pgc_support.yaml": {
"changelog": {
"minor_changes": [
"postgresql_db - add support for .pgc file format for dump and restores."
]
},
"collection": "community.general"
},
"changelogs/fragments/63740-vmware_guest_disk_filename_destroy.yaml": {
"changelog": {
"minor_changes": [
"vmware_guest_disk - Add `destroy` option which allows to remove a disk without deleting the VMDK file.",
"vmware_guest_disk - Add `filename` option which allows to create a disk from an existing VMDK."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/63741-do_not_search_for_vmdk_if_filename_defined.yaml": {
"changelog": {
"minor_changes": [
"vmware_guest - Don't search for VMDK if filename is defined."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/63752-cloudformation-return-changeset-id.yaml": {
"changelog": {
"minor_changes": [
"cloudformation - Return change_set_id in the cloudformation output if a change set was created."
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/63887-docker_swarm_service-sort-lists-when-checking-changes.yml": {
"changelog": {
"minor_changes": [
"docker_swarm_service - Sort lists when checking for changes."
]
},
"collection": "community.general"
},
"changelogs/fragments/63903-ufw.yaml": {
"changelog": {
"minor_changes": [
"ufw - accept ``interface_in`` and ``interface_out`` as parameters."
]
},
"collection": "community.general"
},
"changelogs/fragments/63924-boto3.yml": {
"changelog": {
"deprecated_features": [
"iam_policy - The ``policy_document`` will be removed in Ansible 2.14. To maintain the existing behavior use the ``policy_json`` option and read the file with the ``lookup`` plugin.",
"iam_policy - The default value of ``skip_duplicates`` will change in Ansible 2.14 from ``true`` to ``false``."
],
"minor_changes": [
"iam_policy - The iam_policy module has been migrated from boto to boto3."
]
},
"collection": "community.amazon"
},
"changelogs/fragments/63954-synchronize-remove-unused-block.yml": {
"changelog": {
"bugfixes": [
"synchronize - remove unused block (https://github.com/ansible/ansible/issues/63954)"
]
},
"collection": "community.general"
},
"changelogs/fragments/63961-deprecate-fail_on_delete.yml": {
"changelog": {
"deprecated_features": [
"iam_managed_policy - The ``fail_on_delete`` option had no effect and will be removed in Ansible 2.14"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/63969-zabbix_action_argsfix.yml": {
"changelog": {
"bugfixes": [
"zabbix_action - arguments ``event_source`` and ``esc_period`` no longer required when ``state=absent``"
]
},
"collection": "community.general"
},
"changelogs/fragments/63984-openssl-ed25519-ed448.yml": {
"changelog": {
"bugfixes": [
"openssl_certificate and openssl_csr - fix Ed25519 and Ed448 private key support for ``cryptography`` backend. This probably needs at least cryptography 2.8, since older versions have problems with signing certificates or CSRs with such keys. (https://github.com/ansible/ansible/issues/59039, PR https://github.com/ansible/ansible/pull/63984)"
]
},
"collection": "community.general"
},
"changelogs/fragments/63989-deprecate-unused.yml": {
"changelog": {
"deprecated_features": [
"s3_sync - The ``retries`` option had no effect and will be removed in Ansible 2.14",
"s3_lifecycle - The ``requester_pays`` option had no effect and will be removed in Ansible 2.14"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/64007-postgresql_db_allow_user_name_with_dots.yml": {
"changelog": {
"bugfixes": [
"postgresql_db - allow to pass users names which contain dots (https://github.com/ansible/ansible/issues/63204)."
]
},
"collection": "community.general"
},
"changelogs/fragments/64032-zabbix_template_fix_return_XML_as_a_string_even_python3.yml": {
"changelog": {
"bugfixes": [
"Fix to return XML as a string even for python3 (https://github.com/ansible/ansible/pull/64032)."
]
},
"collection": "community.general"
},
"changelogs/fragments/64059-mysql_user_fix_password_comparison.yaml": {
"changelog": {
"bugfixes": [
"mysql_user - make sure current_pass_hash is a string before using it in comparison (https://github.com/ansible/ansible/issues/60567)."
]
},
"collection": "community.general"
},
"changelogs/fragments/64230-deprecate-unused.yml": {
"changelog": {
"deprecated_features": [
"ec2_eip - The ``wait_timeout`` option had no effect and will be removed in Ansible 2.14",
"ec2_key - The ``wait`` option had no effect and will be removed in Ansible 2.14",
"ec2_key - The ``wait_timeout`` option had no effect and will be removed in Ansible 2.14",
"ec2_lc - The ``associate_public_ip_address`` option had no effect and will be removed in Ansible 2.14"
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/64258-purge_policies.yml": {
"changelog": {
"deprecated_features": [
"iam_role: The default value of the purge_policies has been deprecated and will change from true to false in Ansible 2.14"
],
"minor_changes": [
"iam_role, iam_user and iam_group: the managed_policy option has been renamed to managed_policies (with an alias added)",
"iam_role, iam_user and iam_group: the purge_policy option has been renamed to purge_policies (with an alias added)"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/64288-fix-hashi-vault-kv-v2.yaml": {
"changelog": {
"bugfixes": [
"hashi_vault - Fix KV v2 lookup to always return latest version"
]
},
"collection": "community.general"
},
"changelogs/fragments/64368-deprecate-unused.yml": {
"changelog": {
"deprecated_features": [
"cloudformation - The ``template_format`` option had no effect since Ansible 2.3 and will be removed in Ansible 2.14",
"data_pipeline - The ``version`` option had no effect and will be removed in Ansible 2.14"
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/64371-postgresql_privs-always-reports-as-changed-when-using-default_privs.yml": {
"changelog": {
"bugfixes": [
"postgresql_privs.py - fix reports as changed behavior of module when using ``type=default_privs`` (https://github.com/ansible/ansible/issues/64371)."
]
},
"collection": "community.general"
},
"changelogs/fragments/64382-docker_login-fix-invalid-json.yml": {
"changelog": {
"bugfixes": [
"docker_login - Use ``with`` statement when accessing files, to prevent that invalid JSON output is produced."
]
},
"collection": "community.general"
},
"changelogs/fragments/64399_vmware_guest.yml": {
"changelog": {
"bugfixes": [
"Handle slashes in VMware network name (https://github.com/ansible/ansible/issues/64399)."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/64436-openssh_keypair-add-password-protected-key-check.yml": {
"changelog": {
"bugfixes": [
"openssh_keypair - add logic to avoid breaking password protected keys."
],
"minor_changes": [
"openssh_keypair - instead of regenerating some broken or password protected keys, fail the module. Keys can still be regenerated by calling the module with ``force=yes``."
]
},
"collection": "community.general"
},
"changelogs/fragments/64458-vmware_host_dns.yaml": {
"changelog": {
"deprecated_features": [
"vmware_dns_config - Deprecate in favour of new module vmware_host_dns."
],
"minor_changes": [
"vmware_host_dns - New module replacing vmware_dns_config with increased functionality."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/64501-fix-python2.x-backward-compatibility.yaml": {
"changelog": {
"bugfixes": [
"acme_certificate - fix crash when module is used with Python 2.x."
]
},
"collection": "community.general"
},
"changelogs/fragments/64559-hcloud-inventory-missing-compose-variables.yaml": {
"changelog": {
"bugfixes": [
"hcloud - Added missing host variables in Compose section"
]
},
"collection": "community.general"
},
"changelogs/fragments/64582-postgresql_publication_fix_typo_in_module_warn.yml": {
"changelog": {
"bugfixes": [
"postgresql_publication - fix typo in module.warn method name (https://github.com/ansible/ansible/issues/64582)."
]
},
"collection": "community.general"
},
"changelogs/fragments/64583-postgresql_subscription_fix_typo_in_module_warn.yml": {
"changelog": {
"bugfixes": [
"postgresql_subscription - fix typo in module.warn method name (https://github.com/ansible/ansible/pull/64583)."
]
},
"collection": "community.general"
},
"changelogs/fragments/64586-copy-upstream-version-of-ismount.yaml": {
"changelog": {
"bugfixes": [
"ismount - clone upstream version of ismount() (https://github.com/ansible/ansible/issues/63977)"
]
},
"collection": "community.general"
},
"changelogs/fragments/64598-add-next-token-support.yml": {
"changelog": {
"bugfixes": [
"cloudwatchlogs_log_group_info - remove limitation of max 50 results"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/64635-docker_container-network_mode.yml": {
"changelog": {
"deprecated_features": [
"docker_container - the default value for ``network_mode`` will change in Ansible 2.14, provided at least one network is specified and ``networks_cli_compatible`` is ``true``. See porting guide, module documentation or deprecation warning for more details."
]
},
"collection": "community.general"
},
"changelogs/fragments/64637-docker_swarm_service-tmpfs-source.yml": {
"changelog": {
"bugfixes": [
"docker_swarm_service - ``source`` must no longer be specified for ``tmpfs`` mounts."
]
},
"collection": "community.general"
},
"changelogs/fragments/64648-acme_certificate-acmev1.yml": {
"changelog": {
"bugfixes": [
"acme_certificate - fix misbehavior when ACME v1 is used with ``modify_account`` set to ``false``."
]
},
"collection": "community.general"
},
"changelogs/fragments/64661-postgres_py_add_query_params_arg.yml": {
"changelog": {
"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)."
]
},
"collection": "community.general"
},
"changelogs/fragments/64683-docker_container-cpus.yml": {
"changelog": {
"minor_changes": [
"docker_container - add ``cpus`` option (https://github.com/ansible/ansible/issues/34320)."
]
},
"collection": "community.general"
},
"changelogs/fragments/64797-fix-error-deleting-redfish-acct.yaml": {
"changelog": {
"bugfixes": [
"redfish_command - fix error when deleting a disabled Redfish account (https://github.com/ansible/ansible/issues/64684)"
]
},
"collection": "community.general"
},
"changelogs/fragments/64867-route53-diff.yml": {
"changelog": {
"minor_changes": [
"route53 - the module now has diff support."
]
},
"collection": "community.amazon"
},
"changelogs/fragments/64989-gitlab-handle-lib-new-version.yml": {
"changelog": {
"bugfixes": [
"Fix GitLab modules authentication by handling `python-gitlab` library version >= 1.13.0 (https://github.com/ansible/ansible/issues/64770)"
]
},
"collection": "community.general"
},
"changelogs/fragments/64994-postgresql_ext_use_query_params.yml": {
"changelog": {
"minor_changes": [
"postgresql_ext - use query parameters with cursor object (https://github.com/ansible/ansible/pull/64994)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65017-openssh_keypair-idempotence.yml": {
"changelog": {
"bugfixes": [
"openssh_keypair - fixes idempotence issue with public key (https://github.com/ansible/ansible/issues/64969)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65018-docker-none-errors.yml": {
"changelog": {
"bugfixes": [
"docker_container - fix network idempotence comparison error.",
"docker_network - fix idempotence comparison error."
]
},
"collection": "community.general"
},
"changelogs/fragments/65044-fix-terraform-no-workspace.yaml": {
"changelog": {
"bugfixes": [
"terraform module - fixes usage for providers not supporting workspaces"
]
},
"collection": "community.general"
},
"changelogs/fragments/65065-plugins-netconf-ce-fix.yaml": {
"changelog": {
"bugfixes": [
"plugins-netconf-ce - Fix failed to get version information."
]
},
"collection": "community.general"
},
"changelogs/fragments/65093-postgresql_lang_use_query_params_with_cursor.yml": {
"changelog": {
"bugfixes": [
"postgresql_lang - use query params with cursor.execute (https://github.com/ansible/ansible/pull/65093)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65114-fixed-replaced-ansible_facts-by-foreman_facts.yaml": {
"changelog": {
"bugfixes": [
"foreman inventory plugin - Populate host variable information using the \"foreman_facts\" key rather than the internal \"ansible_facts\" key. (https://github.com/ansible/ansible/issues/65111)"
]
},
"collection": "community.general"
},
"changelogs/fragments/65138-Windows_Multidomain_support.yml": {
"changelog": {
"minor_changes": [
"win_group_membership - Add multi-domain forest support - https://github.com/ansible/ansible/issues/59829"
]
},
"collection": "community.windows"
},
"changelogs/fragments/65154-vmware_datastore_cluster-configure-dns.yml": {
"changelog": {
"minor_changes": [
"vmware_datastore_cluster - Added basic SDRS configuration (https://github.com/ansible/ansible/issues/65154)."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/65164-postgres_use_query_params_with_cursor.yml": {
"changelog": {
"bugfixes": [
"postgres - use query params with cursor.execute in module_utils.postgres.PgMembership class (https://github.com/ansible/ansible/pull/65164)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65223-postgresql_db-exception-added.yml": {
"changelog": {
"bugfixes": [
"postgresql_db - Removed exception for 'LibraryError' (https://github.com/ansible/ansible/issues/65223)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65238-fix_pacman_stdout_parsing.yml": {
"changelog": {
"bugfixes": [
"pacman - Fix pacman output parsing on localized environment. (https://github.com/ansible/ansible/issues/65237)"
]
},
"collection": "community.general"
},
"changelogs/fragments/65265-allow-udp-tcpudp-protocol.yaml": {
"changelog": {
"minor_changes": [
"elb_network_lb - added support to UDP and TCP_UDP protocols",
"elb_target_group - allow UDP and TCP_UDP protocols; permit only HTTP/HTTPS health checks using response codes and paths"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/65304-fix_zabbix_host_inventory_mode_key_error.yml": {
"changelog": {
"bugfixes": [
"zabbix_host - fixed inventory_mode key error, which occurs with Zabbix 4.4.1 or more (https://github.com/ansible/ansible/issues/65304)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65310-postgresql_owner_use_query_params.yml": {
"changelog": {
"bugfixes": [
"postgresql_owner - use query_params with cursor object (https://github.com/ansible/ansible/pull/65310)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65335-add-plan-to-azure-vmscaleset-module.yaml": {
"changelog": {
"minor_changes": [
"azure_rm_virtualmachinescaleset - added ability to use plan information for images that require billing plan details"
]
},
"collection": "gavinfish.azuretest"
},
"changelogs/fragments/65372-misc-context-manager.yml": {
"changelog": {
"bugfixes": [
"spacewalk inventory - improve file handling by using a context manager.",
"intersight_rest_api, intersight_info - 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."
]
},
"collection": "cisco.intersight"
},
"changelogs/fragments/65387-homebrew_check_mode_option.yml": {
"changelog": {
"bugfixes": [
"homebrew - fix Homebrew module's some functions ignored check_mode option (https://github.com/ansible/ansible/pull/65387)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65400-openssl-output.yml": {
"changelog": {
"minor_changes": [
"openssl_certificate - allow to return the existing/generated certificate directly as ``certificate`` by setting ``return_content`` to ``yes``.",
"openssl_csr - allow to return the existing/generated CSR directly as ``csr`` by setting ``return_content`` to ``yes``.",
"openssl_dhparam - allow to return the existing/generated DH params directly as ``dhparams`` by setting ``return_content`` to ``yes``.",
"openssl_pkcs12 - allow to return the existing/generated PKCS#12 directly as ``pkcs12`` by setting ``return_content`` to ``yes``.",
"openssl_privatekey - allow to return the existing/generated private key directly as ``privatekey`` by setting ``return_content`` to ``yes``.",
"openssl_publickey - allow to return the existing/generated public key directly as ``publickey`` by setting ``return_content`` to ``yes``."
]
},
"collection": "community.general"
},
"changelogs/fragments/65404-postgresql_publication_user_query_params_with_cursor.yml": {
"changelog": {
"bugfixes": [
"postgresql_publication - use query params arg with cursor object (https://github.com/ansible/ansible/issues/65404)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65435-openssl_csr-privatekey_path-required.yml": {
"changelog": {
"bugfixes": [
"openssl_csr - the module will now enforce that ``privatekey_path`` is specified when ``state=present``."
]
},
"collection": "community.general"
},
"changelogs/fragments/65498-mysql_db_add_executed_commands_return_val.yml": {
"changelog": {
"minor_changes": [
"mysql_db - add the ``executed_commands`` returned value (https://github.com/ansible/ansible/pull/65498)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65542-postgresql_db_add_executed_commands_return_val.yml": {
"changelog": {
"minor_changes": [
"postgresql_db - add the ``executed_commands`` returned value (https://github.com/ansible/ansible/pull/65542)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65547-mysql_db_add_force_param.yml": {
"changelog": {
"minor_changes": [
"mysql_db - add the ``force`` parameter (https://github.com/ansible/ansible/pull/65547)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65555-amazon-sanity-required.yml": {
"changelog": {
"minor_changes": [
"ec2_placement_group - make `name` a required field."
]
},
"collection": "community.amazon"
},
"changelogs/fragments/65557-iam-make-name-required.yml": {
"changelog": {
"minor_changes": [
"iam - make `name` a required field."
]
},
"collection": "community.amazon"
},
"changelogs/fragments/65558-iam_cert-require-name.yml": {
"changelog": {
"minor_changes": [
"iam_cert - make `name` a required field."
]
},
"collection": "community.amazon"
},
"changelogs/fragments/65559-iam_policy-require-iam_name.yml": {
"changelog": {
"minor_changes": [
"iam_policy - make `iam_name` a required field."
]
},
"collection": "community.amazon"
},
"changelogs/fragments/65608.yml": {
"changelog": {
"bugfixes": [
"azure_storageblob - use os.access to check for read rights."
]
},
"collection": "gavinfish.azuretest"
},
"changelogs/fragments/65609-docker-context-manager.yml": {
"changelog": {
"bugfixes": [
"docker_image - improve file handling when loading images from disk."
]
},
"collection": "community.general"
},
"changelogs/fragments/65632-docker-argspec-fixup.yml": {
"changelog": {
"bugfixes": [
"docker_image - fix validation of build options.",
"docker_login - fix error handling when ``username`` or ``password`` is not specified when ``state`` is ``present``."
]
},
"collection": "community.general"
},
"changelogs/fragments/65633-crypto-argspec-fixup.yml": {
"changelog": {
"bugfixes": [
"openssl_certificate - ``provider`` option was documented as required, but it was not checked whether it was provided. It is now only required when ``state`` is ``present``."
]
},
"collection": "community.general"
},
"changelogs/fragments/65715-vmware-content-deploy-template-fix-cluster.yml": {
"changelog": {
"bugfixes": [
"`vmware_content_deploy_template`'s `cluster` argument no longer fails with an error message about resource pools."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/65733-fix-vmware-guest-properties-doc.yaml": {
"changelog": {
"bugfixes": [
"vmware_guest - Updated reference link to vapp_properties property"
]
},
"collection": "community.vmware"
},
"changelogs/fragments/65750-pacman.yml": {
"changelog": {
"bugfixes": [
"pacman - fix module crash with ``IndexError: list index out of range`` (https://github.com/ansible/ansible/issues/63077)"
]
},
"collection": "community.general"
},
"changelogs/fragments/65752-fix-azure_rm_storageblob-typo.yml": {
"changelog": {
"minor_changes": [
"fixed the misspelt 'last_modified' field in azure_rm_storageblob output"
]
},
"collection": "gavinfish.azuretest"
},
"changelogs/fragments/65755-mysql_info_doesnt_list_empty_dbs.yml": {
"changelog": {
"minor_changes": [
"mysql_info - add ``return_empty_dbs`` parameter to list empty databases (https://github.com/ansible/ansible/issues/65727)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65765-vmware_tag_manager.yml": {
"changelog": {
"bugfixes": [
"Added support to vmware_tag_manager module for specifying tag and category as dict if any of the name contains colon (https://github.com/ansible/ansible/issues/65765)."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/65787-postgresql_sequence_use_query_params_with_cursor.yml": {
"changelog": {
"bugfixes": [
"postgresql_sequence - use query parameters with cursor object (https://github.com/ansible/ansible/pull/65787)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65789-mysql_user_add_plugin_authentication_parameters.yml": {
"changelog": {
"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)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65791-postgresql_modules_use_query_params_with_cursor.yml": {
"changelog": {
"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)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65839-docker_network-idempotence.yml": {
"changelog": {
"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."
]
},
"collection": "community.general"
},
"changelogs/fragments/65854-docker_container-wait-for-removal.yml": {
"changelog": {
"bugfixes": [
"docker_container - wait for removal of container if docker API returns early (https://github.com/ansible/ansible/issues/65811)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65862-postgresql_modules_use_query_params_with_cursor.yml": {
"changelog": {
"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)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65894-redfish-bios-attributes.yaml": {
"changelog": {
"deprecated_features": [
"redfish_config - Deprecate ``bios_attribute_name`` and ``bios_attribute_value`` in favor of new `bios_attributes`` option."
],
"minor_changes": [
"redfish_config - New ``bios_attributes`` option to allow setting multiple BIOS attributes in one command."
]
},
"collection": "community.general"
},
"changelogs/fragments/65903-postgresql_privs_sort_lists_with_none_elements.yml": {
"changelog": {
"bugfixes": [
"postgresql_privs - fix sorting lists with None elements for python3 (https://github.com/ansible/ansible/issues/65761)."
]
},
"collection": "community.general"
},
"changelogs/fragments/65922-filter-VMs-of-Same-name-on-the-basis-of-folder.yml": {
"changelog": {
"bugfixes": [
"Vmware Fix for Create overwrites a VM of same name even when the folder is different(https://github.com/ansible/ansible/issues/43161)"
]
},
"collection": "community.vmware"
},
"changelogs/fragments/65960-ec2_vol-filtering-bugfix.yml": {
"changelog": {
"bugfixes": [
"ec2_vol - fix filtering bug"
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/65968-vmware_guest_network.yml": {
"changelog": {
"bugfixes": [
"In vmware_guest_network module use appropriate network while creating or reconfiguring (https://github.com/ansible/ansible/issues/65968)."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/65993-restart-docker_container-on-restart-policy-updates.yaml": {
"changelog": {
"minor_changes": [
"docker_container.py - update a containers restart_policy without restarting the container (https://github.com/ansible/ansible/issues/65993)"
]
},
"collection": "community.general"
},
"changelogs/fragments/65997-vmware_guest-exclude-dvswitch-name-from-os-customization.yml": {
"changelog": {
"bugfixes": [
"vmware_guest - Exclude dvswitch_name from triggering guest os customization."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/66026-zabbix_host_info.yml": {
"changelog": {
"minor_changes": [
"zabbix_host_info - ``host_name`` based search results now include host groups."
]
},
"collection": "community.general"
},
"changelogs/fragments/66037-aws_kms.yml": {
"changelog": {
"minor_changes": [
"aws_kms: code refactor, some error messages updated"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/66048-mysql_add_master_data_parameter.yml": {
"changelog": {
"minor_changes": [
"mysql_db - add ``master_data`` parameter (https://github.com/ansible/ansible/pull/66048)."
]
},
"collection": "community.general"
},
"changelogs/fragments/66060-redfish-new-resource-id-option.yaml": {
"changelog": {
"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."
],
"minor_changes": [
"redfish_config, redfish_command - Add ``resource_id`` option to specify which System, Manager, or Chassis resource to modify."
]
},
"collection": "community.general"
},
"changelogs/fragments/66144-docker_container-removal-timeout.yml": {
"changelog": {
"minor_changes": [
"docker_container - allow to configure timeout when the module waits for a container's removal."
]
},
"collection": "community.general"
},
"changelogs/fragments/66151-docker_swarm_service-healthcheck-start-period.yml": {
"changelog": {
"bugfixes": [
"docker_swarm_service - fix task always reporting as changed when using ``healthcheck.start_period``."
]
},
"collection": "community.general"
},
"changelogs/fragments/66157-postgresql-create-unique-indexes.yml": {
"changelog": {
"minor_changes": [
"database - add support to unique indexes in postgresql_idx"
]
},
"collection": "community.general"
},
"changelogs/fragments/66217-vmware_cluster_drs-advanced-settings.yml": {
"changelog": {
"minor_changes": [
"vmware_cluster_drs - Implemented DRS advanced settings (https://github.com/ansible/ansible/issues/66217)"
]
},
"collection": "community.vmware"
},
"changelogs/fragments/66247-zabbix_proxy-address-field.yaml": {
"changelog": {
"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"
]
},
"collection": "community.general"
},
"changelogs/fragments/66252-mysql_replication_fail_on_error.yml": {
"changelog": {
"minor_changes": [
"mysql_replication - add ``fail_on_error`` parameter (https://github.com/ansible/ansible/pull/66252)."
]
},
"collection": "community.general"
},
"changelogs/fragments/66263-podman-connection-no-pause-rootless.yml": {
"changelog": {
"bugfixes": [
"podman connection plugin - fix to handle the new default copy pause rootless containers from upstream (https://github.com/ansible/ansible/issues/66263)"
]
},
"collection": "community.general"
},
"changelogs/fragments/66267-httpapi-timeout.yaml": {
"changelog": {
"bugfixes": [
"Fix httpapi timeout value to read from persistent_command_timeout as intended."
],
"minor_changes": [
"Remove timeout option from httpapi, netconf, & network_cli connections, as they were unused."
]
},
"collection": "ansible.netcommon"
},
"changelogs/fragments/66268-cyberarkpassword-fix-invalid-attr.yaml": {
"changelog": {
"bugfixes": [
"cyberarkpassword - fix invalid attribute access (https://github.com/ansible/ansible/issues/66268)"
]
},
"collection": "community.general"
},
"changelogs/fragments/66322-moved_line_causing_terraform_output_suppression.yml": {
"changelog": {
"bugfixes": [
"terraform - reset out and err before plan creation (https://github.com/ansible/ansible/issues/64369)"
]
},
"collection": "community.general"
},
"changelogs/fragments/66331-postgresql_query_fix_unable_to_handle_non_ascii_chars_when_python3.yml": {
"changelog": {
"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)."
]
},
"collection": "community.general"
},
"changelogs/fragments/66357-support-changing-fetch_url-settings-for-rundeck-modules.yaml": {
"changelog": {
"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."
]
},
"collection": "community.general"
},
"changelogs/fragments/66372-podman-image-pull-credentials.yml": {
"changelog": {
"bugfixes": [
"podman_image - honor username and password options when pulling image from a remote registry"
]
},
"collection": "community.general"
},
"changelogs/fragments/66382-docker_container-port-range.yml": {
"changelog": {
"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."
]
},
"collection": "community.general"
},
"changelogs/fragments/66384-openssl-content.yml": {
"changelog": {
"minor_changes": [
"openssl_certificate_info - allow to provide certificate content via ``content`` option (https://github.com/ansible/ansible/issues/64776).",
"openssl_csr_info - allow to provide CSR content via ``content`` option.",
"openssl_privatekey_info - allow to provide private key content via ``content`` option.",
"openssl_certificate - allow to provide content of some input files via the ``csr_content``, ``privatekey_content``, ``ownca_privatekey_content`` and ``ownca_content`` options.",
"openssl_csr - allow to provide private key content via ``private_key_content`` option.",
"openssl_publickey - allow to provide private key content via ``private_key_content`` option."
]
},
"collection": "community.general"
},
"changelogs/fragments/66398-pamd_fix-attributeerror-when-removing-first-line.yml": {
"changelog": {
"bugfixes": [
"pamd - Bugfix for attribute error when removing the first or last line"
]
},
"collection": "community.general"
},
"changelogs/fragments/66451-win_dns_client-dhcp-support.yml": {
"changelog": {
"bugfixes": [
"Fix detection of DHCP setting so that resetting to DHCP doesn't cause ``CHANGED`` status on every run. See https://github.com/ansible/ansible/issues/66450"
],
"minor_changes": [
"Checks for and resolves a condition where effective nameservers are obfucated, usually by malware. See https://www.welivesecurity.com/2016/06/02/crouching-tiger-hidden-dns/"
]
},
"collection": "ansible.windows"
},
"changelogs/fragments/66463-zabbix_template-fix-error-linktemplate-and-importdump.yml": {
"changelog": {
"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)"
]
},
"collection": "community.general"
},
"changelogs/fragments/66599-docker-healthcheck.yml": {
"changelog": {
"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."
]
},
"collection": "community.general"
},
"changelogs/fragments/66600-docker_container-volumes.yml": {
"changelog": {
"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."
]
},
"collection": "community.general"
},
"changelogs/fragments/66673-elb_target-awsretry.yaml": {
"changelog": {
"minor_changes": [
"elb_target - add awsretry to prevent rate exceeded errors (https://github.com/ansible/ansible/issues/51108)"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/66688-mysql_db_add_skip_lock_tables_option.yml": {
"changelog": {
"minor_changes": [
"mysql_db - add ``skip_lock_tables`` option (https://github.com/ansible/ansible/pull/66688)."
]
},
"collection": "community.general"
},
"changelogs/fragments/66692-vmware_host_vmhba_info_fix_63045.yml": {
"changelog": {
"bugfixes": [
"vmware_host_vmhba_info - fixed node_wwn and port_wwn for FC HBA to hexadecimal format(https://github.com/ansible/ansible/issues/63045)."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/66711-postgresql_user_add_comment_parameter.yml": {
"changelog": {
"minor_changes": [
"postgresql_user - add the comment parameter (https://github.com/ansible/ansible/pull/66711)."
]
},
"collection": "community.general"
},
"changelogs/fragments/66717-postgresql_db_add_dump_extra_args_param.yml": {
"changelog": {
"minor_changes": [
"postgresql_db - add ``dump_extra_args`` parameter (https://github.com/ansible/ansible/pull/66717)."
]
},
"collection": "community.general"
},
"changelogs/fragments/66747-zabbix_template-newupdaterule-deletemissinglinkedtemplate.yml": {
"changelog": {
"minor_changes": [
"zabbix_template - adding new update rule templateLinkage.deleteMissing for newer zabbix versions (https://github.com/ansible/ansible/pull/66747)."
]
},
"collection": "community.general"
},
"changelogs/fragments/66777-zabbix_host_tags_macros_support.yml": {
"changelog": {
"minor_changes": [
"zabbix_host - now supports configuring user macros and host tags on the managed host (see https://github.com/ansible/ansible/pull/66777)"
]
},
"collection": "community.general"
},
"changelogs/fragments/66779-redshift-backoff.yml": {
"changelog": {
"minor_changes": [
"redshift: Add AWSRetry calls for errors outside our control"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/66792-vultr-improve-plan.yml": {
"changelog": {
"minor_changes": [
"vultr_server_info, vultr_server - Improved handling of discontinued plans (https://github.com/ansible/ansible/issues/66707)."
]
},
"collection": "community.general"
},
"changelogs/fragments/66801-mysql_user_priv_can_be_dict.yml": {
"changelog": {
"minor_changes": [
"mysql_user - ``priv`` parameter can be string or dictionary (https://github.com/ansible/ansible/issues/57533)."
]
},
"collection": "community.general"
},
"changelogs/fragments/66806-mysql_variables_not_support_variables_with_dot.yml": {
"changelog": {
"bugfixes": [
"mysql_variable - fix the module doesn't support variables name with dot (https://github.com/ansible/ansible/issues/54239)."
]
},
"collection": "community.general"
},
"changelogs/fragments/66807-redhat_subscription-no-default-quantity.yaml": {
"changelog": {
"bugfixes": [
"redhat_subscription - do not set the default quantity to ``1`` when no quantity is provided (https://github.com/ansible/ansible/issues/66478)"
]
},
"collection": "community.general"
},
"changelogs/fragments/66837-zabbix-proxy-interface.yml": {
"changelog": {
"minor_changes": [
"zabbix_proxy - ``interface`` sub-options ``type`` and ``main`` are now deprecated and will be removed in Ansible 2.14. Also, the values passed to ``interface`` are now checked for correct types and unexpected keys."
]
},
"collection": "community.general"
},
"changelogs/fragments/66840-ec2_tag-deprecate-list.yaml": {
"changelog": {
"deprecated_features": [
"ec2_tag: deprecate the `list` option in favor of ec2_tag_info"
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/66841-zabbix_action-allowstrfor-esc_period.yml": {
"changelog": {
"minor_changes": [
"zabbix_action - allow str values for ``esc_period`` options (https://github.com/ansible/ansible/pull/66841)."
]
},
"collection": "community.general"
},
"changelogs/fragments/66863-ec2_asg-max_instance_lifetime-and-honor-wait-on-replace.yaml": {
"changelog": {
"bugfixes": [
"ec2_asg: Ensure \"wait\" is honored during replace operations"
],
"minor_changes": [
"ec2_asg: Migrated to AnsibleAWSModule",
"ec2_asg: Add support for Max Instance Lifetime"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/66914-purefa_user_string.yaml": {
"changelog": {
"bugfixes": [
"pure - fix incorrect user_string setting in module_utils file (https://github.com/ansible/ansible/pull/66914)"
]
},
"collection": "community.general"
},
"changelogs/fragments/66929-pmrun-quote-entire-success-command-string.yml": {
"changelog": {
"bugfixes": [
"pmrun plugin - The success_command string was no longer quoted. This caused unusual use-cases like ``become_flags=su - root -c`` to fail."
]
},
"collection": "community.general"
},
"changelogs/fragments/66957-scaleway-jsonify-only-for-json-requests.yml": {
"changelog": {
"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)"
]
},
"collection": "community.general"
},
"changelogs/fragments/66966-ec2-group-and-group_id.yml": {
"changelog": {
"minor_changes": [
"ec2: deprecate allowing both group and group_id - currently we ignore group_id if both are passed."
]
},
"collection": "netapp.aws"
},
"changelogs/fragments/66974-mysql_user_doesnt_support_privs_with_underscore.yml": {
"changelog": {
"bugfixes": [
"mysql_user - fix support privileges with underscore (https://github.com/ansible/ansible/issues/66974)."
]
},
"collection": "community.general"
},
"changelogs/fragments/66979-ec2_vol_info-ansibleawsmodule.yaml": {
"changelog": {
"minor_changes": [
"ec2_vol_info: Code cleanup and use of the AWSRetry decorator to improve stability"
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/66988-ansibleawsmodule-region.yaml": {
"changelog": {
"minor_changes": [
"AnsibleAWSModule - Add a helper (region) so that modules which migrate to using module.client() can still access the region information"
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/67013-purefb_fs_deprecate_nfs_parameter.yaml": {
"changelog": {
"removed_features": [
"purefb_fs - ``nfs`` parameter deprecated. Use ``nfsv3`` instead (https://github.com/ansible/ansible/pull/67026)"
]
},
"collection": "purestorage.flashblade"
},
"changelogs/fragments/67036-openssl_publickey-backend.yml": {
"changelog": {
"bugfixes": [
"openssl_publickey - fix a module crash caused when pyOpenSSL is not installed (https://github.com/ansible/ansible/issues/67035)."
]
},
"collection": "community.general"
},
"changelogs/fragments/67038-openssl-openssh-key-regenerate.yml": {
"changelog": {
"minor_changes": [
"openssh_keypair - the ``regenerate`` option allows to configure the module's behavior when it should or needs to regenerate private keys.",
"openssl_privatekey - the ``regenerate`` option allows to configure the module's behavior when it should or needs to regenerate private keys."
]
},
"collection": "community.general"
},
"changelogs/fragments/67045-ec2_asg_mixed_instance_policy.yml": {
"changelog": {
"minor_changes": [
"ec2_asg - Add the ability to use mixed_instance_policy in launch template driven autoscaling groups"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/67046-postgresql_modules_make_params_required.yml": {
"changelog": {
"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)."
]
},
"collection": "community.general"
},
"changelogs/fragments/67089-sns_topic-notfound-backoff.yaml": {
"changelog": {
"minor_changes": [
"sns_topic - Add backoff when we get Topic ``NotFound`` exceptions while listing the subscriptions."
]
},
"collection": "community.amazon"
},
"changelogs/fragments/67109-openssl_certificate-acme-directory.yaml": {
"changelog": {
"minor_changes": [
"openssl_certificate - Add option for changing which ACME directory to use with acme-tiny. Set the default ACME directory to Let's Encrypt instead of using acme-tiny's default. (acme-tiny also uses Let's Encrypt at the time being, so no action should be neccessary.)",
"openssl_certificate - Change the required version of acme-tiny to >= 4.0.0"
]
},
"collection": "community.general"
},
"changelogs/fragments/67221-vmware-guest-disk-storage-drs-fix.yml": {
"changelog": {
"bugfixes": [
"return correct datastore cluster placement recommendations during when adding disk using the vmware_guest_disk module"
]
},
"collection": "community.vmware"
},
"changelogs/fragments/67247-fix-ec2_transit_gateway-retries.yaml": {
"changelog": {
"bugfixes": [
"ec2_transit_gateway - Use AWSRetry before ClientError is handled when describing transit gateways"
]
},
"collection": "community.amazon"
},
"changelogs/fragments/67281-AWSRetry-disable-NotFound.yaml": {
"changelog": {
"minor_changes": [
"The ``AWSRetry`` decorator no longer catches ``NotFound`` exceptions unless they're explicitly added via ``catch_extra_error_codes``."
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/67282-remove_options_from_some_vmware_modules_that_aren't_used_in_the_code.yml": {
"changelog": {
"removed_features": [
"vmware_guest_find - Removed deprecated ``datacenter`` option",
"vmware_vmkernel - Removed deprecated ``ip_address`` option; use sub-option ip_address in the network option instead",
"vmware_vmkernel - Removed deprecated ``subnet_mask`` option; use sub-option subnet_mask in the network option instead"
]
},
"collection": "community.vmware"
},
"changelogs/fragments/67302-zabbix_template_info-add-omit_date-field.yml": {
"changelog": {
"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)"
]
},
"collection": "community.general"
},
"changelogs/fragments/67303-vmware_host_firewall_manager-fix_ip_specific_firewall_rules_for_python2.yml": {
"changelog": {
"bugfixes": [
"vmware_host_firewall_manager - Fixed creating IP specific firewall rules with Python 2 (https://github.com/ansible/ansible/issues/67303)"
]
},
"collection": "community.vmware"
},
"changelogs/fragments/67337-fix-proxysql-mysql-cursor.yaml": {
"changelog": {
"bugfixes": [
"proxysql - fixed mysql dictcursor"
]
},
"collection": "community.general"
},
"changelogs/fragments/67353-docker_login-permissions.yml": {
"changelog": {
"bugfixes": [
"docker_login - make sure that ``~/.docker/config.json`` is created with permissions ``0600``."
]
},
"collection": "community.general"
},
"changelogs/fragments/67418-postgresql_set_converts_value_to_uppercase.yml": {
"changelog": {
"bugfixes": [
"postgresql_set - fix converting value to uppercase (https://github.com/ansible/ansible/issues/67377)."
]
},
"collection": "community.general"
},
"changelogs/fragments/67437-vultr-fix-retry-max-delay-param.yml": {
"changelog": {
"bugfixes": [
"vultr - Fixed the issue retry max delay param was ignored."
]
},
"collection": "community.general"
},
"changelogs/fragments/67454-ovirt_disk-correct-description-of-storage_domain.yml": {
"changelog": {
"minor_changes": [
"ovirt_disk: correct description of storage_domain, there is no default value of the attribute"
]
},
"collection": "community.general"
},
"changelogs/fragments/67464-postgresql_info_add_collecting_subscription_info.yml": {
"changelog": {
"minor_changes": [
"postgresql_info - add collection info about replication subscriptions (https://github.com/ansible/ansible/pull/67464)."
]
},
"collection": "community.general"
},
"changelogs/fragments/67515-openssl-fingerprint-fips.yml": {
"changelog": {
"bugfixes": [
"openssl_* modules - prevent crash on fingerprint determination in FIPS mode (https://github.com/ansible/ansible/issues/67213)."
]
},
"collection": "community.general"
},
"changelogs/fragments/67615-vmware_host_service_info_fix.yml": {
"changelog": {
"bugfixes": [
"Handle NoneType error when accessing service system info in vmware_host_service_info module (https://github.com/ansible/ansible/issues/67615)."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/67634-Update-to-add-missing-import.yml": {
"changelog": {
"bugfixes": [
"Some cloudengine modules were missing ``import __future__`` and ``metaclass``. (https://github.com/ansible/ansible/pull/67634)."
]
},
"collection": "community.general"
},
"changelogs/fragments/67635-Update-to-add-missing-import.yml": {
"changelog": {
"bugfixes": [
"Some cloudengine modules were missing ``import __future__`` and ``metaclass``. (https://github.com/ansible/ansible/pull/67635)."
]
},
"collection": "community.general"
},
"changelogs/fragments/67655-scaleway_compute-get-image-instead-loop-on-list.yml": {
"changelog": {
"bugfixes": [
"scaleway_compute(check_image_id): use get image instead loop on first page of images results"
]
},
"collection": "community.general"
},
"changelogs/fragments/additional_spec_fix.yml": {
"changelog": {
"minor_changes": [
"Fixes argument spec for several modules for using correct datatypes."
]
},
"collection": "community.general"
},
"changelogs/fragments/atomic_image_absent.yml": {
"changelog": {
"bugfixes": [
"Run command in absent state in atomic_image module."
]
},
"collection": "community.general"
},
"changelogs/fragments/azure-fact-fix.yaml": {
"changelog": {
"bugfixes": [
"azure_rm_securitygroup_info - Fix up instances when ``ansible_facts`` is returned for the older ``_facts`` alias.",
"azure_rm_networkinterface_info - Fix up instances when ``ansible_facts`` is returned for the older ``_facts`` alias."
]
},
"collection": "community.general"
},
"changelogs/fragments/cgroup_fix_write.yml": {
"changelog": {
"bugfixes": [
"Handle write_files option in cgroup_perf_recap callback plugin (https://github.com/ansible/ansible/issues/64936)."
]
},
"collection": "community.general"
},
"changelogs/fragments/clc_aa_policy-remove-unused-wait-parameter.yaml": {
"changelog": {
"deprecated_features": [
"clc_aa_policy - The ``wait`` option had no effect and will be removed in Ansible 2.14"
]
},
"collection": "community.general"
},
"changelogs/fragments/cronvar-correct-binary-name.yaml": {
"changelog": {
"bugfixes": [
"cronvar - use correct binary name (https://github.com/ansible/ansible/issues/63274)"
]
},
"collection": "community.general"
},
"changelogs/fragments/firewalld-version-0_7_0.yml": {
"changelog": {
"bugfixes": [
"firewalld - enable the firewalld module to function offline with firewalld version 0.7.0 and newer (https://github.com/ansible/ansible/issues/63254)"
]
},
"collection": "community.general"
},
"changelogs/fragments/fix_zabbix_host_visible_name.yml": {
"changelog": {
"bugfixes": [
"zabbix_host - was not possible to update a host where visible_name was not set in zabbix"
]
},
"collection": "community.general"
},
"changelogs/fragments/fortios_fix.yml": {
"changelog": {
"bugfixes": [
"Fix underscore_to_hyphen API in fortios_* modules."
]
},
"collection": "fortinet.fortios"
},
"changelogs/fragments/gitlab_project_variable.yml": {
"changelog": {
"bugfixes": [
"Redact GitLab Project variables which might include sensetive information such as password, api_keys and other project related details."
]
},
"collection": "community.general"
},
"changelogs/fragments/lookup_rabbitmq-is_closing-bug.yml": {
"changelog": {
"bugfixes": [
"rabbitmq lookup plugin - Fix for rabbitmq lookups failing when using pika v1.0.0 and newer."
]
},
"collection": "community.general"
},
"changelogs/fragments/lxd_container_url.yaml": {
"changelog": {
"bugfixes": [
"Fixes the url handling in lxd_container module that url cannot be specified in lxd environment created by snap."
]
},
"collection": "community.general"
},
"changelogs/fragments/lxd_profile_url.yaml": {
"changelog": {
"bugfixes": [
"Fixes the url handling in lxd_profile module that url cannot be specified in lxd environment created by snap."
]
},
"collection": "community.general"
},
"changelogs/fragments/meraki-dont-compare-type.yml": {
"changelog": {
"minor_changes": [
"meraki - Idempotency check no longer compares types of objects"
]
},
"collection": "cisco.meraki"
},
"changelogs/fragments/meraki_organization-ignore-url.yml": {
"changelog": {
"minor_changes": [
"meraki_organization - Ignore the URL key when checking for idempotency"
]
},
"collection": "cisco.meraki"
},
"changelogs/fragments/misc_typo_fix.yml": {
"changelog": {
"bugfixes": [
"Misc typo fixes in various documentation pages."
]
},
"collection": "community.general"
},
"changelogs/fragments/mqtt-ssl-protocols.yml": {
"changelog": {
"bugfixes": [
"Fix SSL protocol references in the ``mqtt`` module to prevent failures on Python 2.6."
]
},
"collection": "community.general"
},
"changelogs/fragments/netbox-add-cache.yaml": {
"changelog": {
"minor_changes": [
"netbox - use inventory cache if configured"
]
},
"collection": "community.general"
},
"changelogs/fragments/netconf_plugin_device_handler.yml": {
"changelog": {
"bugfixes": [
"Make netconf plugin configurable to set ncclient device handler name in netconf plugin (https://github.com/ansible/ansible/pull/65718)"
]
},
"collection": "ansible.netcommon"
},
"changelogs/fragments/network_action_plugin_fixes.yml": {
"changelog": {
"bugfixes": [
"Fixes in network action plugins to work in network connection plugin and modules in collection"
]
},
"collection": "community.general"
},
"changelogs/fragments/network_cli_enable_fix.yml": {
"changelog": {
"bugfixes": [
"Fix for network_cli become method to be compatible with collections"
]
},
"collection": "ansible.netcommon"
},
"changelogs/fragments/os_server_volume.yml": {
"changelog": {
"minor_changes": [
"Attach an attached/detached volume from OpenStack VM's should return similar information in os_server_volume module."
]
},
"collection": "openstack.cloud"
},
"changelogs/fragments/ovirt-dont-ignore-instance_cpus-parameter.yaml": {
"changelog": {
"bugfixes": [
"ovirt - don't ignore ``instance_cpus`` parameter"
]
},
"collection": "community.general"
},
"changelogs/fragments/postgresol_privs-fix-status-sorting.yaml": {
"changelog": {
"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)"
]
},
"collection": "community.general"
},
"changelogs/fragments/proxmox-6-version-detection.yaml": {
"changelog": {
"bugfixes": [
"proxmox - fix version detection of proxmox 6 and up (Fixes https://github.com/ansible/ansible/issues/59164)"
]
},
"collection": "community.general"
},
"changelogs/fragments/psexec-kerb-and-interactive.yaml": {
"changelog": {
"bugfixes": [
"psexec - Fix issue where the Kerberos package was not detected as being available.",
"psexec - Fix issue where the ``interactive`` option was not being passed down to the library."
]
},
"collection": "community.windows"
},
"changelogs/fragments/rabbitmq_publish-certificate-checks.yml": {
"changelog": {
"minor_changes": [
"rabbitmq_publish - Support for connecting with SSL certificates."
]
},
"collection": "community.general"
},
"changelogs/fragments/remove-2.9-deprecations.yml": {
"changelog": {
"bugfixes": [
"ansible-test - improve ``deprecate()`` call checker."
],
"removed_features": [
"core - remove support for ``check_invalid_arguments`` in ``AnsibleModule``, ``AzureModule`` and ``UTMModule``."
]
},
"collection": "azure.azcollection"
},
"changelogs/fragments/server2008-dep.yaml": {
"changelog": {
"minor_changes": [
"Windows - add deprecation notice in the Windows setup module when running on Server 2008, 2008 R2, and Windows 7"
]
},
"collection": "ansible.windows"
},
"changelogs/fragments/setup.ps1-parity-with-linux-regarding-missing-local-facts-path.yml": {
"changelog": {
"minor_changes": [
"setup.ps1 - parity with linux regarding missing local facts path (https://github.com/ansible/ansible/issues/57974)"
]
},
"collection": "ansible.windows"
},
"changelogs/fragments/solaris_zone_name_fix.yml": {
"changelog": {
"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."
]
},
"collection": "community.general"
},
"changelogs/fragments/spec_fix.yml": {
"changelog": {
"minor_changes": [
"Fixed typos in various modules regarding argument_spec data types."
]
},
"collection": "ansible.amazon"
},
"changelogs/fragments/syslogger-disable-check-mode.yaml": {
"changelog": {
"bugfixes": [
"syslogger callback plugin - remove check mode support since it did nothing anyway"
]
},
"collection": "community.general"
},
"changelogs/fragments/typo_fix_vmware_guest_powerstate.yml": {
"changelog": {
"bugfixes": [
"Fixed typo in vmware_guest_powerstate module (https://github.com/ansible/ansible/issues/65161)."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/vmware-only-add-configured-interfaces.yml": {
"changelog": {
"minor_changes": [
"vmware.py - Only add configured network interfaces to facts."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/vmware_cluster_info_hosts.yml": {
"changelog": {
"minor_changes": [
"Return additional information about hosts inside the cluster using vmware_cluster_info."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/vmware_export_ovf.yaml": {
"changelog": {
"minor_changes": [
"vmware_export_ovf - timeout value is actually in seconds, not minutes",
"vmware_export_ovf - increase default timeout to 30s"
]
},
"collection": "community.vmware"
},
"changelogs/fragments/vmware_guest.yaml": {
"changelog": {
"minor_changes": [
"Added a timeout parameter `wait_for_ip_address_timeout` for `wait_for_ip_address` for longer-running tasks in vmware_guest."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/vmware_guest_custom_attributes.yml": {
"changelog": {
"minor_changes": [
"vmware_guest_custom_attributes does not require VM name (https://github.com/ansible/ansible/issues/63222)."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/vmware_guest_disk_info_disk_mode.yml": {
"changelog": {
"minor_changes": [
"Added missing backing_disk_mode information about disk which was removed by mistake in vmware_guest_disk_info."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/vmware_guest_restore_custom_values.yml": {
"changelog": {
"bugfixes": [
"Revert customization of guest custom value behavior (https://github.com/ansible/ansible/issues/64291)."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/vmware_guest_tools_wait_time.yaml": {
"changelog": {
"minor_changes": [
"vmware_guest_tools_wait now exposes a ``timeout`` parameter that allow the user to adjust the timeout (second)."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/vmware_host_firewall_manager_fix_61332.yaml": {
"changelog": {
"bugfixes": [
"vmware_host_firewall_manager - Ensure we can set rule with no ``allowed_hosts`` key (https://github.com/ansible/ansible/issues/61332)"
],
"minor_changes": [
"vmware_host_firewall_manager - ``allowed_hosts`` excpects a dict as parameter, list is deprecated"
]
},
"collection": "community.vmware"
},
"changelogs/fragments/vmware_host_lockdown_typo_fix.yml": {
"changelog": {
"minor_changes": [
"Correct datatype for state in vmware_host_lockdown module."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/vmware_httpapi_fix.yml": {
"changelog": {
"minor_changes": [
"Minor typo fixes in vmware_httpapi related modules and module_utils."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/vmware_vm_inventory_port.yml": {
"changelog": {
"bugfixes": [
"vmware_vm_inventory inventory plugin, use the port value while connecting to vCenter (https://github.com/ansible/ansible/issues/64096)."
]
},
"collection": "community.vmware"
},
"changelogs/fragments/win_chocolatey-check-install-path.yaml": {
"changelog": {
"bugfixes": [
"win_chocolatey - Improve error checking when finding the path of a newly installed Chocolatey app"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_chocolatey-override_args.yaml": {
"changelog": {
"minor_changes": [
"win_chocolatey - Add ``override_args`` option to allow overriding builtin install arguments for a Chocolatey package"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_credential-wildcard.yaml": {
"changelog": {
"bugfixes": [
"win_credential - Fix issue that errors when trying to add a ``name`` with wildcards."
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_disk_facts-Set-output-array-order-by-disk-number.yml": {
"changelog": {
"minor_changes": [
"win_disk_facts - Set output array order to be by disk number property - https://github.com/ansible/ansible/issues/63998"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_dns_client-ipenabled.yaml": {
"changelog": {
"bugfixes": [
"win_dns_client - Only configure network adapters that are IP Enabled - https://github.com/ansible/ansible/issues/58958"
]
},
"collection": "ansible.windows"
},
"changelogs/fragments/win_dns_client_ipv6.yaml": {
"changelog": {
"minor_changes": [
"win_dns_client - Added support for setting IPv6 DNS servers - https://github.com/ansible/ansible/issues/55962"
]
},
"collection": "ansible.windows"
},
"changelogs/fragments/win_domain_computer-credential.yaml": {
"changelog": {
"bugfixes": [
"win_domain_computer - Honour the explicit domain server and credentials when moving or removing a computer object - https://github.com/ansible/ansible/pull/63093"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_domain_computer-idempotence.yaml": {
"changelog": {
"bugfixes": [
"win_domain_computer - Fix idempotence checks when ``sAMAccountName`` is different from ``name``"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_domain_controller-log.yaml": {
"changelog": {
"minor_changes": [
"win_domain_controller - Added the ``domain_log_path`` to control the directory for the new AD log files location - https://github.com/ansible/ansible/issues/59348"
]
},
"collection": "ansible.windows"
},
"changelogs/fragments/win_domain_user-group-missing.yaml": {
"changelog": {
"bugfixes": [
"win_domain_user - Better handle cases when getting a new user's groups fail - https://github.com/ansible/ansible/issues/54331"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_domain_user-identity.yaml": {
"changelog": {
"minor_changes": [
"win_domain_user - Added the ``identity`` module option to explicitly set the identity of the user when searching for it - https://github.com/ansible/ansible/issues/45298"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_find-fix-ignore-of-deduped-files.yml": {
"changelog": {
"bugfixes": [
"win_find - Fix deduped files mistaken for directories (https://github.com/ansible/ansible/issues/58511)"
]
},
"collection": "ansible.windows"
},
"changelogs/fragments/win_find-performance.yaml": {
"changelog": {
"minor_changes": [
"win_find - Improve performance when scanning heavily nested directories and align behaviour to the ``find`` module."
]
},
"collection": "ansible.windows"
},
"changelogs/fragments/win_firewall-Change-req-check-from-wmf-version-to-cmdlets-presence.yml": {
"changelog": {
"minor_changes": [
"win_firewall- Change req check from wmf version to cmdlets presence - https://github.com/ansible/ansible/issues/63003"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_firewall_rule-add-support-for-icmptypecode.yml": {
"changelog": {
"minor_changes": [
"win_firewall_rule - add parameter to support ICMP Types and Codes (https://github.com/ansible/ansible/issues/46809)"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_format-Idem-not-working-if-file-exist-but-same-fs.yml": {
"changelog": {
"bugfixes": [
"win_format - Idem not working if file exist but same fs (https://github.com/ansible/ansible/issues/58302)"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_iis_webapppool-check-mode.yaml": {
"changelog": {
"bugfixes": [
"win_iis_webapppool - Do not try and set attributes in check mode when the pool did not exist"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_iis_website-restarted.yaml": {
"changelog": {
"bugfixes": [
"win_iis_website - Actually restart the site when ``state=restarted`` - https://github.com/ansible/ansible/issues/63828"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_nssm-Implement-additional-parameters.yml": {
"changelog": {
"minor_changes": [
"win_nssm - Implement additional parameters - (https://github.com/ansible/ansible/issues/62620)"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_package-basic.yaml": {
"changelog": {
"minor_changes": [
"win_package - Move across to ``Ansible.Basic`` for better invocation logging"
]
},
"collection": "ansible.windows"
},
"changelogs/fragments/win_partition-var.yaml": {
"changelog": {
"bugfixes": [
"win_partition - Fix invalid variable name causing a failure on checks - https://github.com/ansible/ansible/issues/62401"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_pester-path-behaviour.yaml": {
"changelog": {
"minor_changes": [
"win_pester - Only execute ``*.tests.ps1`` in ``path`` to match the default behaviour in Pester - https://github.com/ansible/ansible/issues/55736"
]
},
"collection": "community.windows"
},
"changelogs/fragments/win_setup-install-type.yaml": {
"changelog": {
"minor_changes": [
"windows setup - Added ``ansible_os_installation_type`` to denote the type of Windows installation the remote host is."
]
},
"collection": "ansible.windows"
},
"changelogs/fragments/win_share-Implement-append-paramtere-for-access-rules.yml": {
"changelog": {
"minor_changes": [
"win_share - Implement append parameter for access rules (https://github.com/ansible/ansible/issues/59237)"
]
},
"collection": "ansible.windows"
},
"changelogs/fragments/win_unzip-paths.yaml": {
"changelog": {
"bugfixes": [
"win_unzip - Fix support for paths with square brackets not being detected properly"
]
},
"collection": "community.windows"
},
"changelogs/fragments/xml-deprecated-functions.yml": {
"changelog": {
"bugfixes": [
"Fix the ``xml`` module to use ``list(elem)`` instead of ``elem.getchildren()`` since it is being removed in Python 3.9"
]
},
"collection": "community.general"
},
"changelogs/fragments/zabbix-hostmacro.yml": {
"changelog": {
"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}``)"
]
},
"collection": "community.general"
}
}
changelogs/fragments/27800-ec2_vpc_net-ipv6-support.yml
ansible.amazon - lib/ansible/modules/cloud/amazon/ec2_vpc_net.py
changelogs/fragments/36876-github-deploy-key-fix-pagination.yaml
community.general - lib/ansible/modules/source_control/github/github_deploy_key.py
changelogs/fragments/39295-grafana_dashboard.yml
community.general - lib/ansible/modules/monitoring/bigpanda.py
changelogs/fragments/47182-os_port_order_difference_should_not_trigger_changes.yml
openstack.cloud - lib/ansible/modules/cloud/openstack/os_port.py
changelogs/fragments/48997-ecs_ecr-livecycle-policy.yml
community.amazon - lib/ansible/modules/cloud/amazon/ecs_ecr.py
changelogs/fragments/51595-adds-win32_diskdrive-object-to-win_disk_facts.yaml
community.windows - lib/ansible/modules/windows/win_disk_facts.ps1
changelogs/fragments/52408-luks-device.yaml
community.general - lib/ansible/modules/crypto/luks_device.py
changelogs/fragments/54435_aws_s3_fix_removing_versioned_buckets.yaml
ansible.amazon - lib/ansible/modules/cloud/amazon/aws_s3.py
changelogs/fragments/55217-aws-modules-config.yml
ansible.amazon - lib/ansible/module_utils/ec2.py
changelogs/fragments/55919-rabbitmq_publish-fix-for-recent-pika-versions.yml
community.general - lib/ansible/module_utils/rabbitmq.py
changelogs/fragments/55965-add-allow-projects-in-openstack-inventory.yml
openstack.cloud - lib/ansible/plugins/inventory/openstack.py
changelogs/fragments/56033-win_iis_webapplication-add-authentication-options.yml
community.windows - lib/ansible/modules/windows/win_iis_webapplication.ps1
changelogs/fragments/56468-deprecate-lnb-absent.yml
community.amazon - lib/ansible/modules/cloud/amazon/elb_network_lb.py
changelogs/fragments/56966-win_format-allocation-unit-size.yml
community.windows - lib/ansible/modules/windows/win_format.ps1
changelogs/fragments/57185-fix_vmware_modules_py_pre2.79.yaml
community.vmware - lib/ansible/module_utils/vmware.py
changelogs/fragments/57535-vmware_vcenter_statistics_corner-cases.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_vcenter_statistics.py
changelogs/fragments/57804-win_acl-no-longer-needs-SeSecurityPrivilege.yml
ansible.windows - lib/ansible/modules/windows/win_acl.ps1
changelogs/fragments/58225-win_partition-maximum-partition-size.yml
community.windows - lib/ansible/modules/windows/win_partition.ps1
changelogs/fragments/58466-FIX_win_find-Bug-Get-FileStat_fails_on_large_files.yml
ansible.windows - lib/ansible/modules/windows/win_find.ps1
changelogs/fragments/58812-support_absolute_paths_additionally.yml
community.general - lib/ansible/modules/cloud/misc/terraform.py
changelogs/fragments/58822-aws-lamda-tracing-config.yaml
community.amazon - lib/ansible/modules/cloud/amazon/lambda.py
changelogs/fragments/58824-vmware_cluster_ha-advanced-settings.yml
community.vmware - lib/ansible/module_utils/vmware.py
changelogs/fragments/58824-vmware_dvs_portgroup-implement-portgroup-updates.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_dvs_portgroup.py
changelogs/fragments/58973-luks_device_add-type-option.yml
community.general - lib/ansible/modules/crypto/luks_device.py
changelogs/fragments/58973_luks_device-add-label-and-uuid-support.yml
community.general - lib/ansible/modules/crypto/luks_device.py
changelogs/fragments/59379-vmware_tag_manager-use_category.yml
community.vmware - lib/ansible/module_utils/vmware_rest_client.py
changelogs/fragments/59395_meraki_content_filtering.yaml
cisco.meraki - lib/ansible/modules/network/meraki/meraki_content_filtering.py
changelogs/fragments/59522-renamed-module-tls-client-auth-params-to-avoid-overlaping-with-fetch_url.yaml
community.general - lib/ansible/modules/packaging/os/pulp_repo.py
changelogs/fragments/59574-os_image_from_volume.yaml
openstack.cloud - lib/ansible/modules/cloud/openstack/os_image.py
changelogs/fragments/59597-ecs-allow_default_network_mode.yml
community.amazon - lib/ansible/modules/cloud/amazon/ecs_taskdefinition.py
changelogs/fragments/59877-fix-keyerror-in-redfish-getlogs.yaml
community.general - lib/ansible/module_utils/redfish_utils.py
changelogs/fragments/59927-fix-redfish-power-reset-type-mapping.yaml
community.general - lib/ansible/module_utils/redfish_utils.py
changelogs/fragments/60106-templar-contextmanager.yml
community.general - lib/ansible/plugins/action/ce_template.py
changelogs/fragments/60201-idrac-redfish-config-attributes-support.yml
community.general - lib/ansible/modules/remote_management/redfish/idrac_redfish_config.py
changelogs/fragments/60388-openssl_privatekey-format.yml
community.general - lib/ansible/module_utils/crypto.py
changelogs/fragments/60508-route53-improve-octal-characters-handling.yml
community.amazon - lib/ansible/modules/cloud/amazon/route53.py
changelogs/fragments/60510-k8s-apply-check-mode.yml
community.kubernetes - lib/ansible/module_utils/k8s/raw.py
changelogs/fragments/60569-plugins-netconf-ce.yml
community.general - lib/ansible/plugins/netconf/ce.py
changelogs/fragments/60944-sns_topic-delivery_policy-changed.yml
community.amazon - lib/ansible/modules/cloud/amazon/sns_topic.py
changelogs/fragments/60961-docker_compose-fix-deprecation-warning.yml
community.general - lib/ansible/modules/cloud/docker/docker_compose.py
changelogs/fragments/61004-compare_policies-convert-to-string.yml
ansible.amazon - lib/ansible/module_utils/ec2.py
changelogs/fragments/61119-os_server-add-tag-to-instance-nics.yml
openstack.cloud - lib/ansible/modules/cloud/openstack/os_server.py
changelogs/fragments/61227-win_iis_webapplication-apppool-change.yml
community.windows - lib/ansible/modules/windows/win_iis_webapplication.ps1
changelogs/fragments/61263-aws_codecommit-description.yml
community.amazon - lib/ansible/modules/cloud/amazon/aws_codecommit.py
changelogs/fragments/61271-cloudfront_distribution-encryptionid.yml
community.amazon - lib/ansible/modules/cloud/amazon/cloudfront_distribution.py
changelogs/fragments/61279-ec2_launch_template-output.yml
community.amazon - lib/ansible/modules/cloud/amazon/ec2_launch_template.py
changelogs/fragments/61284-ec2_asg-idempotency.yml
community.amazon - lib/ansible/modules/cloud/amazon/ec2_asg.py
changelogs/fragments/61338-tower-inventory-integer-inventory_id.yaml
awx.awx - lib/ansible/plugins/inventory/tower.py
changelogs/fragments/61522-luks-device-add-option-to-define-keysize.yml
community.general - lib/ansible/modules/crypto/luks_device.py
changelogs/fragments/61562-nagios-start.yaml
community.general - lib/ansible/modules/monitoring/nagios.py
changelogs/fragments/61577-support-iops-in-purefa_volume.yml
purestorage.flasharray - lib/ansible/modules/storage/purestorage/purefa_volume.py
changelogs/fragments/61655-fix-digital-ocean-droplet-create.yaml
community.general - lib/ansible/modules/cloud/digital_ocean/digital_ocean_droplet.py
changelogs/fragments/61658-openssh_keypair-public-key-permissions.yml
community.general - lib/ansible/modules/crypto/openssh_keypair.py
changelogs/fragments/61693-acme-buypass-acme-v1.yml
community.general - lib/ansible/module_utils/acme.py
changelogs/fragments/61735-wait-for-s3-bucket-to-exist-before-modifying.yaml
ansible.amazon - lib/ansible/modules/cloud/amazon/aws_s3.py
changelogs/fragments/61738-ecs-certificate-invalid-chain.yaml
community.general - lib/ansible/modules/crypto/entrust/ecs_certificate.py
changelogs/fragments/61740-docker_container-port-range-parsing.yml
community.general - lib/ansible/modules/cloud/docker/docker_container.py
changelogs/fragments/61805-azure-facts-info.yml
community.general - lib/ansible/modules/cloud/azure/azure_rm_containerinstance_info.py
changelogs/fragments/61921-gitlab_user.yml
community.general - lib/ansible/modules/source_control/gitlab/gitlab_user.py
changelogs/fragments/61925-fix_purefa_fact_info_api_check.yml
community.general - lib/ansible/modules/storage/purestorage/_purefa_facts.py
changelogs/fragments/61933-ec2_transit_gateway-honor-auto_attach-setting.yaml
community.amazon - lib/ansible/modules/cloud/amazon/ec2_transit_gateway.py
changelogs/fragments/61961-pacman_remove_recurse_option.yaml
community.general - lib/ansible/modules/packaging/os/pacman.py
changelogs/fragments/62014-iam_role_session_instanceprofile.yml
community.amazon - lib/ansible/modules/cloud/amazon/iam_role.py
changelogs/fragments/62068-add-pure-cbs-support.yml
purestorage.flasharray - lib/ansible/modules/storage/purestorage/purefa_host.py
changelogs/fragments/62083-vmware-internal_results.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_datastore_maintenancemode.py
changelogs/fragments/62188-VMware-Guest-Support-latest-version-while-upgrading-VM-hardware.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest.py
changelogs/fragments/62206-add-diff-and-check-support.yml
openstack.cloud - lib/ansible/modules/cloud/openstack/os_server.py
changelogs/fragments/62290-fix-cloudformation_info-KeyError.yaml
ansible.amazon - lib/ansible/modules/cloud/amazon/cloudformation_info.py
changelogs/fragments/62329-nsupdate-lookup-internal-zones.yaml
community.general - lib/ansible/modules/net_tools/nsupdate.py
changelogs/fragments/62348-yarn-no_version_install_fix.yml
community.general - lib/ansible/modules/packaging/language/yarn.py
changelogs/fragments/62403-ce_bgp_neighbor_af_fix_parameter_name.yml
community.general - lib/ansible/modules/network/cloudengine/ce_bgp_neighbor_af.py
changelogs/fragments/62542-constructed-options-foreman-inventory-plugin.yaml
community.general - lib/ansible/plugins/inventory/foreman.py
changelogs/fragments/62587-module_utils-network-cloudengine.yml
community.general - lib/ansible/module_utils/network/cloudengine/ce.py
changelogs/fragments/62616-vmware_cluster_ha-fix-documentation.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_cluster_ha.py
changelogs/fragments/62617-fix-redfish-enable-account-if-enabled-prop-missing.yaml
community.general - lib/ansible/module_utils/redfish_utils.py
changelogs/fragments/62621-docker_login-fix-60381.yaml
community.general - lib/ansible/modules/cloud/docker/docker_login.py
changelogs/fragments/62648-mysql_replication_add_master_use_gtid_param.yml
community.general - lib/ansible/modules/database/mysql/mysql_replication.py
changelogs/fragments/62772-vmware_vmkernel_info-fix.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_vmkernel_info.py
changelogs/fragments/62790-openssl_certificate_fix_assert.yml
community.general - lib/ansible/modules/crypto/openssl_certificate.py
changelogs/fragments/62810-Vmware-Guest-Allow-DashInWindowsServerDNSName.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest.py
changelogs/fragments/62872-ce_config_too_many_quit_close_connection.yml
community.general - lib/ansible/modules/network/cloudengine/ce_config.py
changelogs/fragments/62916-add_properties_option_to_vmware_host_facts.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_host_facts.py
changelogs/fragments/62928-docker_container-ip-address-idempotency.yml
community.general - lib/ansible/modules/cloud/docker/docker_container.py
changelogs/fragments/629400-add_properties_option_to_vmware_datastore_info.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_datastore_info.py
changelogs/fragments/62971-docker_container-image-finding.yml
community.general - lib/ansible/modules/cloud/docker/docker_container.py
changelogs/fragments/62991-openssl_dhparam-cryptography-backend.yml
community.general - lib/ansible/module_utils/crypto.py
changelogs/fragments/62999-postgresql_lang_add_owner_parameter.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_lang.py
changelogs/fragments/63036-mysql_replication_add_return_value.yml
community.general - lib/ansible/modules/database/mysql/mysql_replication.py
changelogs/fragments/63130-mysql_replication_add_master_delay_parameter.yml
community.general - lib/ansible/modules/database/mysql/mysql_replication.py
changelogs/fragments/63140-acme-fix-fetch-url-status-codes.yaml
community.general - lib/ansible/module_utils/acme.py
changelogs/fragments/63166-add-extra-args-executalbe-podman-connection.yaml
community.general - lib/ansible/plugins/connection/podman.py
changelogs/fragments/63174-nsupdate-tsig-all-the-queries.yaml
community.general - lib/ansible/modules/net_tools/nsupdate.py
changelogs/fragments/63189-mysql_info-global-status.yml
community.general - lib/ansible/modules/database/mysql/mysql_info.py
changelogs/fragments/63229-mysql_replication_add_connection_name_parameter.yml
community.general - lib/ansible/modules/database/mysql/mysql_replication.py
changelogs/fragments/63271-mysql_replication_add_channel_parameter.yml
community.general - lib/ansible/modules/database/mysql/mysql_replication.py
changelogs/fragments/63280-fix_acl_spaces_in_path.yml
community.general - lib/ansible/modules/files/acl.py
changelogs/fragments/63321-mysql_replication_add_resetmaster_to_mode.yml
community.general - lib/ansible/modules/database/mysql/mysql_replication.py
changelogs/fragments/63345-docker_image-deprecation-warnings.yml
community.general - lib/ansible/modules/cloud/docker/docker_image.py
changelogs/fragments/63362-remove-edgeos-filtering.yaml
community.general - lib/ansible/modules/network/edgeos/edgeos_config.py
changelogs/fragments/63371-mysql_info_add_exclude_fields_parameter.yml
community.general - lib/ansible/modules/database/mysql/mysql_info.py
changelogs/fragments/63408-nsupdate-dont-fix-none-txt-value.yaml
community.general - lib/ansible/modules/net_tools/nsupdate.py
changelogs/fragments/63418-docker_node_info-errors.yml
community.general - lib/ansible/module_utils/docker/swarm.py
changelogs/fragments/63419-docker_container-defaults.yml
community.general - lib/ansible/modules/cloud/docker/docker_container.py
changelogs/fragments/63420-docker_container-trust_image_content.yml
community.general - lib/ansible/modules/cloud/docker/docker_container.py
changelogs/fragments/63432-openssl_csr-version.yml
community.general - lib/ansible/modules/crypto/openssl_csr.py
changelogs/fragments/63467-docker-stack-return-fix.yml
community.general - lib/ansible/modules/cloud/docker/docker_stack.py
changelogs/fragments/63513-ce_action_wait_prompt_trigger_time_out.yaml
community.general - lib/ansible/plugins/action/ce.py
changelogs/fragments/63522-remove-args-from-sumologic-and-splunk-callbacks.yml
community.general - lib/ansible/plugins/callback/splunk.py
changelogs/fragments/63546-mysql_replication_allow_to_pass_empty_values.yml
community.general - lib/ansible/modules/database/mysql/mysql_replication.py
changelogs/fragments/63547-mysql_variables_add_mode_param.yml
community.general - lib/ansible/modules/database/mysql/mysql_variables.py
changelogs/fragments/63555-postgresql_privs_typy_obj_types.yaml
community.general - lib/ansible/modules/database/postgresql/postgresql_privs.py
changelogs/fragments/63629-postgresql_db_pgc_support.yaml
community.general - lib/ansible/modules/database/postgresql/postgresql_db.py
changelogs/fragments/63740-vmware_guest_disk_filename_destroy.yaml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest_disk.py
changelogs/fragments/63741-do_not_search_for_vmdk_if_filename_defined.yaml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest.py
changelogs/fragments/63752-cloudformation-return-changeset-id.yaml
ansible.amazon - lib/ansible/modules/cloud/amazon/cloudformation.py
changelogs/fragments/63887-docker_swarm_service-sort-lists-when-checking-changes.yml
community.general - lib/ansible/modules/cloud/docker/docker_swarm_service.py
changelogs/fragments/63903-ufw.yaml
community.general - lib/ansible/modules/system/ufw.py
changelogs/fragments/63924-boto3.yml
community.amazon - lib/ansible/modules/cloud/amazon/iam_policy.py
changelogs/fragments/63954-synchronize-remove-unused-block.yml
community.general - lib/ansible/plugins/action/synchronize.py
changelogs/fragments/63961-deprecate-fail_on_delete.yml
community.amazon - lib/ansible/modules/cloud/amazon/iam.py
changelogs/fragments/63969-zabbix_action_argsfix.yml
community.general - lib/ansible/modules/monitoring/zabbix/zabbix_action.py
changelogs/fragments/63984-openssl-ed25519-ed448.yml
community.general - lib/ansible/module_utils/crypto.py
changelogs/fragments/63989-deprecate-unused.yml
community.amazon - lib/ansible/modules/cloud/amazon/aws_s3_cors.py
changelogs/fragments/64007-postgresql_db_allow_user_name_with_dots.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_db.py
changelogs/fragments/64032-zabbix_template_fix_return_XML_as_a_string_even_python3.yml
community.general - lib/ansible/modules/monitoring/zabbix/zabbix_template.py
changelogs/fragments/64059-mysql_user_fix_password_comparison.yaml
community.general - lib/ansible/modules/database/mysql/mysql_user.py
changelogs/fragments/64230-deprecate-unused.yml
ansible.amazon - lib/ansible/modules/cloud/amazon/ec2.py
changelogs/fragments/64258-purge_policies.yml
community.amazon - lib/ansible/modules/cloud/amazon/iam_group.py
changelogs/fragments/64288-fix-hashi-vault-kv-v2.yaml
community.general - lib/ansible/plugins/lookup/hashi_vault.py
changelogs/fragments/64368-deprecate-unused.yml
ansible.amazon - lib/ansible/modules/cloud/amazon/cloudformation.py
changelogs/fragments/64371-postgresql_privs-always-reports-as-changed-when-using-default_privs.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_privs.py
changelogs/fragments/64382-docker_login-fix-invalid-json.yml
community.general - lib/ansible/modules/cloud/docker/docker_login.py
changelogs/fragments/64399_vmware_guest.yml
community.vmware - lib/ansible/module_utils/vmware.py
changelogs/fragments/64436-openssh_keypair-add-password-protected-key-check.yml
community.general - lib/ansible/modules/crypto/openssh_keypair.py
changelogs/fragments/64458-vmware_host_dns.yaml
community.vmware - lib/ansible/modules/cloud/vmware/_vmware_dns_config.py
changelogs/fragments/64501-fix-python2.x-backward-compatibility.yaml
community.general - lib/ansible/modules/crypto/acme/acme_certificate.py
changelogs/fragments/64559-hcloud-inventory-missing-compose-variables.yaml
community.general - lib/ansible/plugins/inventory/hcloud.py
changelogs/fragments/64582-postgresql_publication_fix_typo_in_module_warn.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_publication.py
changelogs/fragments/64583-postgresql_subscription_fix_typo_in_module_warn.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_subscription.py
changelogs/fragments/64586-copy-upstream-version-of-ismount.yaml
community.general - lib/ansible/module_utils/ismount.py
changelogs/fragments/64598-add-next-token-support.yml
community.amazon - lib/ansible/modules/cloud/amazon/cloudwatchlogs_log_group_info.py
changelogs/fragments/64635-docker_container-network_mode.yml
community.general - lib/ansible/modules/cloud/docker/docker_container.py
changelogs/fragments/64637-docker_swarm_service-tmpfs-source.yml
community.general - lib/ansible/modules/cloud/docker/docker_swarm_service.py
changelogs/fragments/64648-acme_certificate-acmev1.yml
community.general - lib/ansible/modules/crypto/acme/acme_certificate.py
changelogs/fragments/64661-postgres_py_add_query_params_arg.yml
community.general - lib/ansible/module_utils/postgres.py
changelogs/fragments/64683-docker_container-cpus.yml
community.general - lib/ansible/modules/cloud/docker/docker_container.py
changelogs/fragments/64797-fix-error-deleting-redfish-acct.yaml
community.general - lib/ansible/module_utils/redfish_utils.py
changelogs/fragments/64867-route53-diff.yml
community.amazon - lib/ansible/modules/cloud/amazon/route53.py
changelogs/fragments/64989-gitlab-handle-lib-new-version.yml
community.general - lib/ansible/module_utils/gitlab.py
changelogs/fragments/64994-postgresql_ext_use_query_params.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_ext.py
changelogs/fragments/65017-openssh_keypair-idempotence.yml
community.general - lib/ansible/modules/crypto/openssh_keypair.py
changelogs/fragments/65018-docker-none-errors.yml
community.general - lib/ansible/modules/cloud/docker/docker_container.py
changelogs/fragments/65044-fix-terraform-no-workspace.yaml
community.general - lib/ansible/modules/cloud/misc/terraform.py
changelogs/fragments/65065-plugins-netconf-ce-fix.yaml
community.general - lib/ansible/plugins/netconf/ce.py
changelogs/fragments/65093-postgresql_lang_use_query_params_with_cursor.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_lang.py
changelogs/fragments/65114-fixed-replaced-ansible_facts-by-foreman_facts.yaml
community.general - lib/ansible/plugins/inventory/foreman.py
changelogs/fragments/65138-Windows_Multidomain_support.yml
community.windows - lib/ansible/modules/windows/win_domain_group_membership.ps1
changelogs/fragments/65154-vmware_datastore_cluster-configure-dns.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_datastore_cluster.py
changelogs/fragments/65164-postgres_use_query_params_with_cursor.yml
community.general - lib/ansible/module_utils/postgres.py
changelogs/fragments/65223-postgresql_db-exception-added.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_db.py
changelogs/fragments/65238-fix_pacman_stdout_parsing.yml
community.general - lib/ansible/modules/packaging/os/pacman.py
changelogs/fragments/65265-allow-udp-tcpudp-protocol.yaml
community.amazon - lib/ansible/modules/cloud/amazon/elb_network_lb.py
changelogs/fragments/65304-fix_zabbix_host_inventory_mode_key_error.yml
community.general - lib/ansible/modules/monitoring/zabbix/zabbix_host.py
changelogs/fragments/65310-postgresql_owner_use_query_params.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_owner.py
changelogs/fragments/65335-add-plan-to-azure-vmscaleset-module.yaml
gavinfish.azuretest - lib/ansible/modules/cloud/azure/azure_rm_virtualmachinescaleset.py
changelogs/fragments/65372-misc-context-manager.yml
cisco.intersight - lib/ansible/module_utils/remote_management/intersight.py
changelogs/fragments/65387-homebrew_check_mode_option.yml
community.general - lib/ansible/modules/packaging/os/homebrew.py
changelogs/fragments/65400-openssl-output.yml
community.general - lib/ansible/module_utils/crypto.py
changelogs/fragments/65404-postgresql_publication_user_query_params_with_cursor.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_publication.py
changelogs/fragments/65435-openssl_csr-privatekey_path-required.yml
community.general - lib/ansible/modules/crypto/openssl_csr.py
changelogs/fragments/65498-mysql_db_add_executed_commands_return_val.yml
community.general - lib/ansible/modules/database/mysql/mysql_db.py
changelogs/fragments/65542-postgresql_db_add_executed_commands_return_val.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_db.py
changelogs/fragments/65547-mysql_db_add_force_param.yml
community.general - lib/ansible/modules/database/mysql/mysql_db.py
changelogs/fragments/65555-amazon-sanity-required.yml
community.amazon - lib/ansible/modules/cloud/amazon/ec2_placement_group.py
changelogs/fragments/65557-iam-make-name-required.yml
community.amazon - lib/ansible/modules/cloud/amazon/iam.py
changelogs/fragments/65558-iam_cert-require-name.yml
community.amazon - lib/ansible/modules/cloud/amazon/iam_cert.py
changelogs/fragments/65559-iam_policy-require-iam_name.yml
community.amazon - lib/ansible/modules/cloud/amazon/iam_policy.py
changelogs/fragments/65608.yml
gavinfish.azuretest - lib/ansible/modules/cloud/azure/azure_rm_storageblob.py
changelogs/fragments/65609-docker-context-manager.yml
community.general - lib/ansible/modules/cloud/docker/docker_image.py
changelogs/fragments/65632-docker-argspec-fixup.yml
community.general - lib/ansible/modules/cloud/docker/docker_image.py
changelogs/fragments/65633-crypto-argspec-fixup.yml
community.general - lib/ansible/modules/crypto/entrust/ecs_domain.py
changelogs/fragments/65715-vmware-content-deploy-template-fix-cluster.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_content_deploy_template.py
changelogs/fragments/65733-fix-vmware-guest-properties-doc.yaml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest.py
changelogs/fragments/65750-pacman.yml
community.general - lib/ansible/modules/packaging/os/pacman.py
changelogs/fragments/65752-fix-azure_rm_storageblob-typo.yml
gavinfish.azuretest - lib/ansible/modules/cloud/azure/azure_rm_storageblob.py
changelogs/fragments/65755-mysql_info_doesnt_list_empty_dbs.yml
community.general - lib/ansible/modules/database/mysql/mysql_info.py
changelogs/fragments/65765-vmware_tag_manager.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_tag_manager.py
changelogs/fragments/65787-postgresql_sequence_use_query_params_with_cursor.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_sequence.py
changelogs/fragments/65789-mysql_user_add_plugin_authentication_parameters.yml
community.general - lib/ansible/modules/database/mysql/mysql_user.py
changelogs/fragments/65791-postgresql_modules_use_query_params_with_cursor.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_set.py
changelogs/fragments/65839-docker_network-idempotence.yml
community.general - lib/ansible/modules/cloud/docker/docker_network.py
changelogs/fragments/65854-docker_container-wait-for-removal.yml
community.general - lib/ansible/module_utils/docker/common.py
changelogs/fragments/65862-postgresql_modules_use_query_params_with_cursor.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_table.py
changelogs/fragments/65894-redfish-bios-attributes.yaml
community.general - lib/ansible/modules/remote_management/redfish/redfish_config.py
changelogs/fragments/65903-postgresql_privs_sort_lists_with_none_elements.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_privs.py
changelogs/fragments/65922-filter-VMs-of-Same-name-on-the-basis-of-folder.yml
community.vmware - lib/ansible/module_utils/vmware.py
changelogs/fragments/65960-ec2_vol-filtering-bugfix.yml
ansible.amazon - lib/ansible/modules/cloud/amazon/ec2_vol.py
changelogs/fragments/65968-vmware_guest_network.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest_network.py
changelogs/fragments/65993-restart-docker_container-on-restart-policy-updates.yaml
community.general - lib/ansible/modules/cloud/docker/docker_container.py
changelogs/fragments/65997-vmware_guest-exclude-dvswitch-name-from-os-customization.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest.py
changelogs/fragments/66026-zabbix_host_info.yml
community.general - lib/ansible/modules/monitoring/zabbix/zabbix_host_info.py
changelogs/fragments/66037-aws_kms.yml
community.amazon - lib/ansible/modules/cloud/amazon/aws_kms.py
changelogs/fragments/66048-mysql_add_master_data_parameter.yml
community.general - lib/ansible/modules/database/mysql/mysql_db.py
changelogs/fragments/66060-redfish-new-resource-id-option.yaml
community.general - lib/ansible/module_utils/redfish_utils.py
changelogs/fragments/66144-docker_container-removal-timeout.yml
community.general - lib/ansible/modules/cloud/docker/docker_container.py
changelogs/fragments/66151-docker_swarm_service-healthcheck-start-period.yml
community.general - lib/ansible/modules/cloud/docker/docker_swarm_service.py
changelogs/fragments/66157-postgresql-create-unique-indexes.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_idx.py
changelogs/fragments/66217-vmware_cluster_drs-advanced-settings.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_cluster_drs.py
changelogs/fragments/66247-zabbix_proxy-address-field.yaml
community.general - lib/ansible/modules/monitoring/zabbix/zabbix_proxy.py
changelogs/fragments/66252-mysql_replication_fail_on_error.yml
community.general - lib/ansible/modules/database/mysql/mysql_replication.py
changelogs/fragments/66263-podman-connection-no-pause-rootless.yml
community.general - lib/ansible/plugins/connection/podman.py
changelogs/fragments/66267-httpapi-timeout.yaml
ansible.netcommon - lib/ansible/plugins/connection/httpapi.py
changelogs/fragments/66268-cyberarkpassword-fix-invalid-attr.yaml
community.general - lib/ansible/plugins/lookup/cyberarkpassword.py
changelogs/fragments/66322-moved_line_causing_terraform_output_suppression.yml
community.general - lib/ansible/modules/cloud/misc/terraform.py
changelogs/fragments/66331-postgresql_query_fix_unable_to_handle_non_ascii_chars_when_python3.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_query.py
changelogs/fragments/66357-support-changing-fetch_url-settings-for-rundeck-modules.yaml
community.general - lib/ansible/modules/web_infrastructure/rundeck_acl_policy.py
changelogs/fragments/66372-podman-image-pull-credentials.yml
community.general - lib/ansible/modules/cloud/podman/podman_image.py
changelogs/fragments/66382-docker_container-port-range.yml
community.general - lib/ansible/modules/cloud/docker/docker_container.py
changelogs/fragments/66384-openssl-content.yml
community.general - lib/ansible/module_utils/crypto.py
changelogs/fragments/66398-pamd_fix-attributeerror-when-removing-first-line.yml
community.general - lib/ansible/modules/system/pamd.py
changelogs/fragments/66451-win_dns_client-dhcp-support.yml
ansible.windows - lib/ansible/modules/windows/win_dns_client.ps1
changelogs/fragments/66463-zabbix_template-fix-error-linktemplate-and-importdump.yml
community.general - lib/ansible/modules/monitoring/zabbix/zabbix_template.py
changelogs/fragments/66599-docker-healthcheck.yml
community.general - lib/ansible/modules/cloud/docker/docker_container.py
changelogs/fragments/66600-docker_container-volumes.yml
community.general - lib/ansible/modules/cloud/docker/docker_container.py
changelogs/fragments/66673-elb_target-awsretry.yaml
community.amazon - lib/ansible/modules/cloud/amazon/elb_target.py
changelogs/fragments/66688-mysql_db_add_skip_lock_tables_option.yml
community.general - lib/ansible/modules/database/mysql/mysql_db.py
changelogs/fragments/66692-vmware_host_vmhba_info_fix_63045.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_host_vmhba_info.py
changelogs/fragments/66711-postgresql_user_add_comment_parameter.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_user.py
changelogs/fragments/66717-postgresql_db_add_dump_extra_args_param.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_db.py
changelogs/fragments/66747-zabbix_template-newupdaterule-deletemissinglinkedtemplate.yml
community.general - lib/ansible/modules/monitoring/zabbix/zabbix_template.py
changelogs/fragments/66777-zabbix_host_tags_macros_support.yml
community.general - lib/ansible/modules/monitoring/zabbix/zabbix_host.py
changelogs/fragments/66779-redshift-backoff.yml
community.amazon - lib/ansible/modules/cloud/amazon/redshift.py
changelogs/fragments/66792-vultr-improve-plan.yml
community.general - lib/ansible/module_utils/vultr.py
changelogs/fragments/66801-mysql_user_priv_can_be_dict.yml
community.general - lib/ansible/modules/database/mysql/mysql_user.py
changelogs/fragments/66806-mysql_variables_not_support_variables_with_dot.yml
community.general - lib/ansible/module_utils/database.py
changelogs/fragments/66807-redhat_subscription-no-default-quantity.yaml
community.general - lib/ansible/modules/packaging/os/redhat_subscription.py
changelogs/fragments/66837-zabbix-proxy-interface.yml
community.general - lib/ansible/modules/monitoring/zabbix/zabbix_proxy.py
changelogs/fragments/66840-ec2_tag-deprecate-list.yaml
ansible.amazon - lib/ansible/modules/cloud/amazon/ec2_tag.py
changelogs/fragments/66841-zabbix_action-allowstrfor-esc_period.yml
community.general - lib/ansible/modules/monitoring/zabbix/zabbix_action.py
changelogs/fragments/66863-ec2_asg-max_instance_lifetime-and-honor-wait-on-replace.yaml
community.amazon - lib/ansible/modules/cloud/amazon/ec2_asg.py
changelogs/fragments/66914-purefa_user_string.yaml
community.general - lib/ansible/module_utils/pure.py
changelogs/fragments/66929-pmrun-quote-entire-success-command-string.yml
community.general - lib/ansible/plugins/become/pmrun.py
changelogs/fragments/66957-scaleway-jsonify-only-for-json-requests.yml
community.general - lib/ansible/module_utils/scaleway.py
changelogs/fragments/66966-ec2-group-and-group_id.yml
netapp.aws - lib/ansible/modules/cloud/amazon/aws_netapp_cvs_snapshots.py
changelogs/fragments/66974-mysql_user_doesnt_support_privs_with_underscore.yml
community.general - lib/ansible/modules/database/mysql/mysql_user.py
changelogs/fragments/66979-ec2_vol_info-ansibleawsmodule.yaml
ansible.amazon - lib/ansible/modules/cloud/amazon/ec2_vol_info.py
changelogs/fragments/66988-ansibleawsmodule-region.yaml
ansible.amazon - lib/ansible/module_utils/aws/core.py
changelogs/fragments/67013-purefb_fs_deprecate_nfs_parameter.yaml
purestorage.flashblade - lib/ansible/modules/storage/purestorage/purefb_fs.py
changelogs/fragments/67036-openssl_publickey-backend.yml
community.general - lib/ansible/module_utils/crypto.py
changelogs/fragments/67038-openssl-openssh-key-regenerate.yml
community.general - lib/ansible/modules/crypto/openssh_keypair.py
changelogs/fragments/67045-ec2_asg_mixed_instance_policy.yml
community.amazon - lib/ansible/modules/cloud/amazon/ec2_asg.py
changelogs/fragments/67046-postgresql_modules_make_params_required.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_copy.py
changelogs/fragments/67089-sns_topic-notfound-backoff.yaml
community.amazon - lib/ansible/modules/cloud/amazon/sns_topic.py
changelogs/fragments/67109-openssl_certificate-acme-directory.yaml
community.general - lib/ansible/modules/crypto/openssl_certificate.py
changelogs/fragments/67221-vmware-guest-disk-storage-drs-fix.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest_disk.py
changelogs/fragments/67247-fix-ec2_transit_gateway-retries.yaml
community.amazon - lib/ansible/modules/cloud/amazon/ec2_transit_gateway.py
changelogs/fragments/67281-AWSRetry-disable-NotFound.yaml
ansible.amazon - lib/ansible/module_utils/ec2.py
changelogs/fragments/67282-remove_options_from_some_vmware_modules_that_aren't_used_in_the_code.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest_find.py
changelogs/fragments/67302-zabbix_template_info-add-omit_date-field.yml
community.general - lib/ansible/modules/monitoring/zabbix/zabbix_template.py
changelogs/fragments/67303-vmware_host_firewall_manager-fix_ip_specific_firewall_rules_for_python2.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_host_firewall_manager.py
changelogs/fragments/67337-fix-proxysql-mysql-cursor.yaml
community.general - lib/ansible/modules/database/proxysql/proxysql_backend_servers.py
changelogs/fragments/67353-docker_login-permissions.yml
community.general - lib/ansible/modules/cloud/docker/docker_login.py
changelogs/fragments/67418-postgresql_set_converts_value_to_uppercase.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_set.py
changelogs/fragments/67437-vultr-fix-retry-max-delay-param.yml
community.general - lib/ansible/module_utils/vultr.py
changelogs/fragments/67454-ovirt_disk-correct-description-of-storage_domain.yml
community.general - lib/ansible/modules/cloud/ovirt/ovirt_disk.py
changelogs/fragments/67464-postgresql_info_add_collecting_subscription_info.yml
community.general - lib/ansible/modules/database/postgresql/postgresql_info.py
changelogs/fragments/67515-openssl-fingerprint-fips.yml
community.general - lib/ansible/module_utils/crypto.py
changelogs/fragments/67615-vmware_host_service_info_fix.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_host_service_info.py
changelogs/fragments/67634-Update-to-add-missing-import.yml
community.general - lib/ansible/modules/network/cloudengine/ce_aaa_server.py
changelogs/fragments/67635-Update-to-add-missing-import.yml
community.general - lib/ansible/modules/network/cloudengine/ce_netconf.py
changelogs/fragments/67655-scaleway_compute-get-image-instead-loop-on-list.yml
community.general - lib/ansible/modules/cloud/scaleway/scaleway_compute.py
changelogs/fragments/additional_spec_fix.yml
community.general - lib/ansible/modules/cloud/google/gce_instance_template.py
changelogs/fragments/atomic_image_absent.yml
community.general - lib/ansible/modules/cloud/atomic/atomic_image.py
changelogs/fragments/azure-fact-fix.yaml
community.general - lib/ansible/modules/cloud/azure/azure_rm_networkinterface_info.py
changelogs/fragments/cgroup_fix_write.yml
community.general - lib/ansible/plugins/callback/cgroup_perf_recap.py
changelogs/fragments/clc_aa_policy-remove-unused-wait-parameter.yaml
community.general - lib/ansible/modules/cloud/centurylink/clc_aa_policy.py
changelogs/fragments/cronvar-correct-binary-name.yaml
community.general - lib/ansible/modules/system/cronvar.py
changelogs/fragments/firewalld-version-0_7_0.yml
community.general - lib/ansible/module_utils/firewalld.py
changelogs/fragments/fix_zabbix_host_visible_name.yml
community.general - lib/ansible/modules/monitoring/zabbix/zabbix_host.py
changelogs/fragments/fortios_fix.yml
fortinet.fortios - lib/ansible/modules/network/fortios/fortios_alertemail_setting.py
changelogs/fragments/gitlab_project_variable.yml
community.general - lib/ansible/modules/source_control/gitlab/gitlab_project_variable.py
changelogs/fragments/lookup_rabbitmq-is_closing-bug.yml
community.general - lib/ansible/plugins/lookup/rabbitmq.py
changelogs/fragments/lxd_container_url.yaml
community.general - lib/ansible/modules/cloud/lxd/lxd_container.py
changelogs/fragments/lxd_profile_url.yaml
community.general - lib/ansible/modules/cloud/lxd/lxd_container.py
changelogs/fragments/meraki-dont-compare-type.yml
cisco.meraki - lib/ansible/module_utils/network/meraki/meraki.py
changelogs/fragments/meraki_organization-ignore-url.yml
cisco.meraki - lib/ansible/modules/network/meraki/meraki_organization.py
changelogs/fragments/misc_typo_fix.yml
community.general - lib/ansible/modules/cloud/docker/docker_login.py
changelogs/fragments/mqtt-ssl-protocols.yml
community.general - lib/ansible/modules/cloud/vultr/vultr_account_info.py
changelogs/fragments/netbox-add-cache.yaml
community.general - lib/ansible/plugins/inventory/netbox.py
changelogs/fragments/netconf_plugin_device_handler.yml
ansible.netcommon - lib/ansible/plugins/connection/netconf.py
changelogs/fragments/network_action_plugin_fixes.yml
community.general - lib/ansible/plugins/action/aireos.py
changelogs/fragments/network_cli_enable_fix.yml
ansible.netcommon - lib/ansible/plugins/connection/network_cli.py
changelogs/fragments/os_server_volume.yml
openstack.cloud - lib/ansible/modules/cloud/openstack/os_server_volume.py
changelogs/fragments/ovirt-dont-ignore-instance_cpus-parameter.yaml
community.general - lib/ansible/modules/cloud/misc/ovirt.py
changelogs/fragments/postgresol_privs-fix-status-sorting.yaml
community.general - lib/ansible/modules/database/postgresql/postgresql_privs.py
changelogs/fragments/proxmox-6-version-detection.yaml
community.general - lib/ansible/modules/cloud/misc/proxmox.py
changelogs/fragments/psexec-kerb-and-interactive.yaml
community.windows - lib/ansible/modules/commands/psexec.py
changelogs/fragments/rabbitmq_publish-certificate-checks.yml
community.general - lib/ansible/module_utils/rabbitmq.py
changelogs/fragments/remove-2.9-deprecations.yml
azure.azcollection - lib/ansible/module_utils/azure_rm_common.py
changelogs/fragments/server2008-dep.yaml
ansible.windows - lib/ansible/modules/windows/setup.ps1
changelogs/fragments/setup.ps1-parity-with-linux-regarding-missing-local-facts-path.yml
ansible.windows - lib/ansible/modules/windows/setup.ps1
changelogs/fragments/solaris_zone_name_fix.yml
community.general - lib/ansible/modules/system/solaris_zone.py
changelogs/fragments/spec_fix.yml
ansible.amazon - lib/ansible/modules/cloud/amazon/cloudformation.py
changelogs/fragments/syslogger-disable-check-mode.yaml
community.general - lib/ansible/modules/notification/syslogger.py
changelogs/fragments/typo_fix_vmware_guest_powerstate.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest_powerstate.py
changelogs/fragments/vmware-only-add-configured-interfaces.yml
community.vmware - lib/ansible/module_utils/vmware.py
changelogs/fragments/vmware_cluster_info_hosts.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_cluster_info.py
changelogs/fragments/vmware_export_ovf.yaml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_export_ovf.py
changelogs/fragments/vmware_guest.yaml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest.py
changelogs/fragments/vmware_guest_custom_attributes.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest_custom_attributes.py
changelogs/fragments/vmware_guest_disk_info_disk_mode.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest_disk_info.py
changelogs/fragments/vmware_guest_restore_custom_values.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest.py
changelogs/fragments/vmware_guest_tools_wait_time.yaml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_guest_tools_wait.py
changelogs/fragments/vmware_host_firewall_manager_fix_61332.yaml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_host_firewall_manager.py
changelogs/fragments/vmware_host_lockdown_typo_fix.yml
community.vmware - lib/ansible/modules/cloud/vmware/vmware_host_lockdown.py
changelogs/fragments/vmware_httpapi_fix.yml
community.vmware - lib/ansible/module_utils/vmware_httpapi/VmwareRestModule.py
changelogs/fragments/vmware_vm_inventory_port.yml
community.vmware - lib/ansible/plugins/inventory/vmware_vm_inventory.py
changelogs/fragments/win_chocolatey-check-install-path.yaml
community.windows - lib/ansible/modules/windows/win_chocolatey.ps1
changelogs/fragments/win_chocolatey-override_args.yaml
community.windows - lib/ansible/modules/windows/win_chocolatey.ps1
changelogs/fragments/win_credential-wildcard.yaml
community.windows - lib/ansible/modules/windows/win_credential.ps1
changelogs/fragments/win_disk_facts-Set-output-array-order-by-disk-number.yml
community.windows - lib/ansible/modules/windows/win_disk_facts.ps1
changelogs/fragments/win_dns_client-ipenabled.yaml
ansible.windows - lib/ansible/modules/windows/win_dns_client.ps1
changelogs/fragments/win_dns_client_ipv6.yaml
ansible.windows - lib/ansible/modules/windows/win_dns_client.ps1
changelogs/fragments/win_domain_computer-credential.yaml
community.windows - lib/ansible/modules/windows/win_domain_computer.ps1
changelogs/fragments/win_domain_computer-idempotence.yaml
community.windows - lib/ansible/modules/windows/win_domain_computer.ps1
changelogs/fragments/win_domain_controller-log.yaml
ansible.windows - lib/ansible/modules/windows/win_domain_controller.ps1
changelogs/fragments/win_domain_user-group-missing.yaml
community.windows - lib/ansible/modules/windows/win_domain_user.ps1
changelogs/fragments/win_domain_user-identity.yaml
community.windows - lib/ansible/modules/windows/win_domain_user.ps1
changelogs/fragments/win_find-fix-ignore-of-deduped-files.yml
ansible.windows - lib/ansible/modules/windows/win_find.ps1
changelogs/fragments/win_find-performance.yaml
ansible.windows - lib/ansible/modules/windows/win_find.ps1
changelogs/fragments/win_firewall-Change-req-check-from-wmf-version-to-cmdlets-presence.yml
community.windows - lib/ansible/modules/windows/win_firewall.ps1
changelogs/fragments/win_firewall_rule-add-support-for-icmptypecode.yml
community.windows - lib/ansible/modules/windows/win_firewall_rule.ps1
changelogs/fragments/win_format-Idem-not-working-if-file-exist-but-same-fs.yml
community.windows - lib/ansible/modules/windows/win_format.ps1
changelogs/fragments/win_iis_webapppool-check-mode.yaml
community.windows - lib/ansible/modules/windows/win_iis_webapppool.ps1
changelogs/fragments/win_iis_website-restarted.yaml
community.windows - lib/ansible/modules/windows/win_iis_website.ps1
changelogs/fragments/win_nssm-Implement-additional-parameters.yml
community.windows - lib/ansible/modules/windows/win_nssm.ps1
changelogs/fragments/win_package-basic.yaml
ansible.windows - lib/ansible/modules/windows/win_package.ps1
changelogs/fragments/win_partition-var.yaml
community.windows - lib/ansible/modules/windows/win_partition.ps1
changelogs/fragments/win_pester-path-behaviour.yaml
community.windows - lib/ansible/modules/windows/win_pester.ps1
changelogs/fragments/win_setup-install-type.yaml
ansible.windows - lib/ansible/modules/windows/setup.ps1
changelogs/fragments/win_share-Implement-append-paramtere-for-access-rules.yml
ansible.windows - lib/ansible/modules/windows/win_share.ps1
changelogs/fragments/win_unzip-paths.yaml
community.windows - lib/ansible/modules/windows/win_unzip.ps1
changelogs/fragments/xml-deprecated-functions.yml
community.general - lib/ansible/modules/files/xml.py
changelogs/fragments/zabbix-hostmacro.yml
community.general - lib/ansible/modules/monitoring/zabbix/zabbix_hostmacro.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment